:root{
  /* Palette */
  --bg: #eef2f3;          /* pale blue-ish white */
  --card: #f7f9fa;

  --burgundy: #5b1f2b;
  --burgundy-hover: #8b3a4a;

  --text: #111111;        /* true black-ish */
  --muted: #5f5f5f;

  --border: #d8dde0;

  --max: 1100px;
  --radius: 0px;          /* sharp corners everywhere */
}

/* Reset */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: "Lora", Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .9; text-decoration: underline; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px;
}

/* ===== Header (burgundy block) ===== */
.nav{
  position: sticky;
  top: 0;
  background: var(--burgundy);
  border-bottom: 1px solid rgba(255,255,255,.18);
  z-index: 10;
}

.nav-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 18px;
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand{
  font-size: 26px;          /* bigger header title */
  font-weight: 600;
  letter-spacing: .02em;
  color: #ffffff;
  text-decoration: none;
}

.links{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}

.links a{
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: .95;
}

.links a.active{
  text-decoration: underline;
  opacity: 1;
}

/* ===== Hero / intro ===== */
.hero{
  padding: 26px 0 10px;
}

/* We’ll use .intro instead of repeating the site title */
.intro{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.intro-text{
  max-width: 66ch;
  color: var(--text);       /* black text per request */
  font-size: 18px;
}

.stamps{
  display: flex;
  gap: 12px;
  align-items: center;      /* middle aligned to text */
}

.stamps img{
  height: 120px;             /* adjust if you want bigger/smaller */
  width: auto;
  display: block;
}

/* ===== Sections ===== */
.section{ padding: 22px 0; }

.section h2{
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--burgundy);
  font-weight: 600;
}

/* ===== Grid / Tiles ===== */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.tile{
  grid-column: span 6;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 270px;
}

.tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transition: transform .35s ease;
}

.tile:hover img{
  transform: scale(1.04);
}

/* Category label button (top-left, burgundy rectangle, white text) */
.label{
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--burgundy);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 10px;
  border-radius: 0px;     /* sharp rectangle */
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ===== Footer ===== */
.footer{
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

/* ===== About page layout ===== */
.about-wrap{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
}

.about-photo{
  width: 100%;
  border-radius: 0px;
  border: 1px solid var(--border);
  display: block;
}

.about-bio{
  color: var(--text);
  font-size: 16px;
}

@media (max-width: 860px){
  .about-wrap{ grid-template-columns: 1fr; }
}

/* ===== Contact form ===== */
.form{
  max-width: 700px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 720px){
  .form-row{ grid-template-columns: 1fr; }
}

.label-text{
  display:block;
  margin: 0 0 6px;
  color: var(--burgundy);
  font-weight: 600;
}

.input, .textarea{
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 15px;
  background: #ffffff;
  color: var(--text);
}

.textarea{
  min-height: 160px;
  resize: vertical;
}

.btn{
  display: inline-block;
  margin-top: 14px;
  background: var(--burgundy);
  color: #ffffff;
  border: none;
  border-radius: 0px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
}

.btn:hover{
  background: var(--burgundy-hover);
}

/* ===== Lightbox ===== */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open{ display:flex; }

.lightbox img{
  max-width: min(1100px, 95vw);
  max-height: 90vh;
  border-radius: 0px;
}

.lightbox .hint{
  position: fixed;
  top: 14px;
  right: 16px;
  font-size: 13px;
  color: #ddd;
}

/* Responsive tiles */
@media (max-width: 780px){
  .tile{ grid-column: span 12; }
}
