:root {
  --bg: #f7f3ee;
  --surface: #ffffff;
  --surface-alt: #efe7db;
  --text: #2d241c;
  --muted: #5f5246;
  --line: rgba(45, 36, 28, 0.12);
  --accent: #8a5a2b;
  --accent-dark: #6f451d;
  --shadow: 0 18px 40px rgba(31, 24, 18, 0.12);
  --radius: 20px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 2rem), 860px); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-alt { background: var(--surface-alt); }
h1, h2, h3 { line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(247, 243, 238, 0.9);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}
.brand {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}
.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.98rem;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero > img { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(21,15,10,0.8), rgba(21,15,10,0.45) 45%, rgba(21,15,10,0.15));
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 5rem 0;
}
.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.82);
}
.hero-text { max-width: 700px; font-size: 1.15rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--accent); color: #fff; }
.button-secondary { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.3); }

.two-col,
.contact-grid,
.legal-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: center;
}
.image-card img,
.map-card img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.section-lead { max-width: 720px; color: var(--muted); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.card,
.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery figure:hover img { transform: scale(1.04); }
.legal { border-top: 1px solid var(--line); }
.legal-note {
  padding: 1rem 1.2rem;
  background: rgba(138, 90, 43, 0.08);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}
.site-footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .two-col,
  .contact-grid,
  .legal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0.8rem;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.55rem 0.4rem; }
  .section { padding: 4rem 0; }
  .hero { min-height: 78vh; }
  .gallery,
  .card-grid { grid-template-columns: 1fr; }
}
