/* =========================================================
   Casa SEHLMEYER — Global Stylesheet
   Farben: Grün (Moos), Gold, Braun, Terrakotta, Creme
   ========================================================= */

:root {
  --moss: #3F5D3D;
  --moss-deep: #2A3F29;
  --gold: #C9A961;
  --gold-soft: #E5D2A5;
  --terracotta: #C66A3D;
  --brown: #6B4A2B;
  --cream: #F5EFE6;
  --cream-deep: #ECE3D2;
  --ink: #1F1A14;
  --mute: #7A6F5E;
  --line: rgba(31, 26, 20, 0.10);
  --shadow-sm: 0 2px 8px rgba(31, 26, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(31, 26, 20, 0.10);
  --shadow-gold: 0 18px 48px rgba(201, 169, 97, 0.22);

  --font-serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --max: 1280px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 12vw, 160px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; background: var(--cream); }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--ink); }

/* ----------------------------- Type ------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}
h1 { font-size: clamp(34px, 7vw, 96px); }
h2 { font-size: clamp(28px, 5vw, 64px); }
h3 { font-size: clamp(22px, 3vw, 36px); }
h4 { font-size: clamp(18px, 2vw, 24px); font-weight: 500; }

p { color: var(--ink); }
.lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--mute); line-height: 1.55; max-width: 60ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.serif-italic { font-family: var(--font-serif); font-style: italic; }

/* --------------------------- Layout ------------------------------ */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 8vw, 96px); }
.section--cream-deep { background: var(--cream-deep); }
.section--moss { background: var(--moss-deep); color: var(--cream); }
.section--moss h1, .section--moss h2, .section--moss h3 { color: var(--cream); }
.section--moss .eyebrow { color: var(--gold); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------------------------- Header ----------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(245, 239, 230, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand b { font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; font-size: 14px; color: var(--moss); }
.brand span { font-style: italic; color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--moss); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-mobile-cta { display: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--cream);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.nav-cta:hover { background: var(--moss); border-color: var(--moss); color: var(--cream); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-right: 8px;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.lang-switch button {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--mute);
  transition: background .2s var(--ease), color .2s var(--ease);
  text-transform: uppercase;
}
.lang-switch button.is-active {
  background: var(--ink);
  color: var(--cream);
}
.lang-switch button:not(.is-active):hover { color: var(--ink); }
@media (max-width: 880px) {
  .lang-switch { margin-right: 4px; padding: 3px; }
  .lang-switch button { padding: 5px 8px; font-size: 10px; }
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  position: relative;
  z-index: 110;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.nav-toggle:hover { background: var(--cream-deep); }
.nav-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: background .15s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }

body.nav-open .nav-toggle span             { background: transparent; }
body.nav-open .nav-toggle span::before     { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after      { top: 0; transform: rotate(-45deg); }

@media (max-width: 880px) {
  /* Drop backdrop-filter on mobile — it makes header a containing block
     and traps the fixed mobile nav inside the header bounds. */
  .site-header {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header.is-scrolled,
  body.nav-open .site-header { background: var(--cream); }

  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform .45s var(--ease), visibility 0s linear .45s;
    padding: 80px 24px;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-links a { font-size: 28px; font-family: var(--font-serif); padding: 8px 0; }
  .nav-mobile-cta {
    margin-top: 16px;
    padding: 16px 34px !important;
    background: var(--gold);
    color: var(--ink) !important;
    border-radius: 999px;
    font-family: var(--font-sans) !important;
    font-size: 15px !important;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .nav-mobile-cta::after {
    content: "→" !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    transform: none !important;
    transition: transform .3s var(--ease);
    display: inline-block;
  }
  .nav-mobile-cta:hover::after { transform: translateX(4px) !important; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-links {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform .45s var(--ease), visibility 0s linear 0s;
  }
  .nav-cta { display: none; }
}

/* --------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn .arr { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--moss); box-shadow: var(--shadow-md); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-on-dark {
  background: var(--cream);
  color: var(--ink);
}
.btn-on-dark:hover { background: var(--gold); }

/* --------------------------- Hero -------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,26,20,0.15) 0%, rgba(31,26,20,0.45) 60%, rgba(31,26,20,0.78) 100%);
  z-index: -1;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-content {
  display: grid;
  gap: 28px;
  max-width: 920px;
}
.hero h1 {
  color: var(--cream);
  font-weight: 300;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--gold);
}
.hero-meta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245, 239, 230, 0.75);
}
.hero-meta span::before { content: "·"; margin-right: 18px; color: var(--gold); }
.hero-meta span:first-child::before { content: none; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245, 239, 230, 0.7);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

/* --------------------------- Marquee ----------------------------- */
.marquee {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  border-block: 1px solid rgba(201, 169, 97, 0.25);
}
.marquee-track {
  display: flex; gap: 64px; align-items: center;
  white-space: nowrap;
  animation: scrollx 38s linear infinite;
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  color: var(--cream);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-track span::after {
  content: "✦";
  color: var(--gold);
  font-size: 18px;
}
@keyframes scrollx {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------------------------- Stats ------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 48px 28px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  line-height: 1;
  color: var(--moss);
  display: flex; align-items: baseline; gap: 4px;
}
.stat-num small { font-size: .35em; color: var(--mute); font-weight: 400; }
.stat-label {
  margin-top: 12px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 880px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 28px 16px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* --------------------------- Cards ------------------------------- */
.card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px 4px 0; }
.card-title { font-family: var(--font-serif); font-size: 24px; }
.card-text { color: var(--mute); margin-top: 6px; font-size: 15px; }

/* ----------------------- Bento Gallery --------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream-deep);
  cursor: pointer;
  isolation: isolate;
}
.bento-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter .5s var(--ease);
}
.bento-item:hover img { transform: scale(1.06); }
.bento-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31,26,20,0.7) 100%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.bento-item:hover::after { opacity: 1; }
.bento-caption {
  position: absolute; left: 20px; bottom: 18px; right: 20px;
  color: var(--cream);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  z-index: 1;
}
.bento-item:hover .bento-caption { opacity: 1; transform: translateY(0); }

.b-1 { grid-column: span 4; grid-row: span 3; }
.b-2 { grid-column: span 2; grid-row: span 2; }
.b-3 { grid-column: span 2; grid-row: span 2; }
.b-4 { grid-column: span 3; grid-row: span 2; }
.b-5 { grid-column: span 3; grid-row: span 2; }
.b-6 { grid-column: span 6; grid-row: span 3; }

@media (max-width: 880px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .b-1 { grid-column: span 2; grid-row: span 2; }
  .b-2, .b-3, .b-4, .b-5 { grid-column: span 1; grid-row: span 1; }
  .b-6 { grid-column: span 2; grid-row: span 2; }
}

/* --------------------------- Split ------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 97, 0.4);
  pointer-events: none;
}
.split-img.with-frame::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.split-text { display: grid; gap: 24px; }
.split-text p { color: var(--mute); }

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: initial; }
  .split-img.with-frame::before { display: none; }
}

/* ------------------------ Pull Quote ----------------------------- */
.pull-quote {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.25;
  color: var(--moss);
  max-width: 24ch;
  margin: 0 auto;
  position: relative;
}
.pull-quote::before {
  content: "“";
  position: absolute;
  top: -.4em; left: 50%; transform: translateX(-50%);
  font-size: 4em;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
}

/* ------------------------ Pricing Card --------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  display: grid;
  gap: 20px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price-card.featured {
  background: linear-gradient(180deg, #FFFCF4, var(--cream));
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.price-card .badge {
  position: absolute;
  top: -12px; left: 24px;
  padding: 4px 14px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
}
.price-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 6px;
}
.price-num small { font-size: .25em; color: var(--mute); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-sans); }
.price-list { display: grid; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.price-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
}
.price-list li::before {
  content: ""; flex: none;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23C9A961' stroke-width='1.5'><path d='M3 8.5L6.5 12L13 4.5'/></svg>") center/contain no-repeat;
  margin-top: 4px;
}

/* ------------------------- Feature list -------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.feature {
  background: var(--cream);
  padding: 36px 28px;
  display: grid; gap: 12px;
}
.feature-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--moss);
}
.feature h4 { font-family: var(--font-sans); font-size: 16px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.feature p { color: var(--mute); font-size: 15px; }
@media (max-width: 880px) { .features { grid-template-columns: 1fr; } }

/* ----------------------- CTA Banner ------------------------------ */
.cta-banner {
  background: var(--moss-deep);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 7vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: -80px;
  background: radial-gradient(circle at 30% 20%, rgba(201,169,97,0.20), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(198,106,61,0.16), transparent 55%);
  z-index: -1;
}
.cta-banner h2 { color: var(--cream); }
.cta-banner .lead { color: rgba(245, 239, 230, 0.78); margin: 16px auto 28px; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ----------------------- Floating CTA ---------------------------- */
.floating-cta {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: pulseGold 2.6s ease-in-out infinite;
}
.floating-cta:hover { transform: translateY(-2px) scale(1.02); animation: none; }
.floating-cta::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--moss); display: inline-block;
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 12px 32px rgba(201, 169, 97, 0.35); }
  50%      { box-shadow: 0 12px 36px rgba(201, 169, 97, 0.7), 0 0 0 6px rgba(201,169,97,0.12); }
}

/* ---------------------------- Form ------------------------------- */
.form {
  display: grid;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-size: 16px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--moss);
  background: #fff;
}
.field textarea { min-height: 140px; resize: vertical; }
.honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------- Footer ------------------------------ */
.site-footer {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.site-footer, .site-footer p, .site-footer a, .site-footer span, .site-footer div {
  color: rgba(245, 239, 230, 0.78);
}
.footer-grid a, .footer-grid p { font-size: 15px; line-height: 1.8; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand .brand { color: var(--cream); font-size: 28px; margin-bottom: 14px; }
.footer-brand .brand b { color: var(--gold); }
.footer-brand p { max-width: 32ch; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom, .footer-bottom p, .footer-bottom span { color: rgba(245, 239, 230, 0.55); }

/* ---------------------- Page header ------------------------------ */
.page-head {
  padding: 140px 0 64px;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}
@media (min-width: 700px) { .page-head { padding: 180px 0 80px; } }
.page-head::after {
  content: ""; position: absolute;
  right: -120px; top: 60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,169,97,0.18), transparent 70%);
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(36px, 8vw, 96px); }
.page-head .lead { margin-top: 20px; }

/* ----------------------- Map placeholder ------------------------- */
.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 21 / 9;
  background: var(--cream-deep);
}
.map-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 32px;
  background:
    radial-gradient(circle at 30% 30%, rgba(63, 93, 61, 0.08), transparent 60%),
    repeating-linear-gradient(45deg, var(--cream-deep) 0 12px, var(--cream) 12px 24px);
}
.map-placeholder p { color: var(--mute); max-width: 46ch; margin: 8px 0 18px; }
.map-placeholder .pin {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--moss); color: var(--cream);
  margin-bottom: 12px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ----------------------- Cookie banner --------------------------- */
.cookie-banner {
  position: fixed;
  left: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  max-width: 560px;
  z-index: 95;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
  display: none;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  line-height: 1.55;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner p { color: rgba(245, 239, 230, 0.9); margin: 0; }
.cookie-banner button {
  flex: none;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background .2s var(--ease);
}
.cookie-banner button:hover { background: var(--gold-soft); }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-banner button { width: 100%; padding: 12px; }
}

/* ---------------------- Reveal on scroll ------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ------------------------- Lightbox ------------------------------ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(31,26,20,0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--cream); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}

/* --------------------- Long-form (legal) ------------------------- */
.legal { max-width: 760px; }
.legal h2 { font-size: clamp(26px, 3vw, 36px); margin-top: 48px; }
.legal h3 { font-size: 20px; margin-top: 28px; font-family: var(--font-sans); font-weight: 600; }
.legal p, .legal li { color: var(--mute); margin-top: 10px; font-size: 16px; }
.legal ul { padding-left: 20px; margin-top: 8px; }
.legal ul li { list-style: disc; }
.legal a { color: var(--moss); text-decoration: underline; }

/* ------------------------ Utilities ------------------------------ */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-2 { margin-top: 16px; } .mt-4 { margin-top: 32px; } .mt-8 { margin-top: 64px; }
.mb-4 { margin-bottom: 32px; }
.gap-2 { gap: 16px; } .gap-4 { gap: 32px; }
.flex { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.divider { height: 1px; background: var(--line); margin: 24px 0; }
