/* ==========================================================================
   BÜHLER KAFFEERÖSTEREI — Corporate Website
   Design System · Made in Black Forest
   ========================================================================== */

/* ---------- Fonts (self-hosted, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/jost-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jost-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/jost-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/jost-latin-600-normal.woff2') format('woff2');
}

/* ---------- Custom Properties ---------- */
:root {
  /* CI-Farben (aus Logo & Bestandsseite übernommen) */
  --green-950: #071A15;
  --green-900: #0C2E28;   /* Markengrün */
  --green-850: #0F362E;
  --green-800: #14423A;
  --gold: #A8905A;        /* Logo-Gold */
  --gold-bright: #C4A96E;
  --gold-soft: rgba(168, 144, 90, .35);
  --ivory: #F5F1E6;
  --cream: #FBF9F3;
  --paper: #F8F5EC;
  --ink: #16211D;
  --ink-soft: #45524C;
  --line: rgba(12, 46, 40, .14);
  --line-light: rgba(245, 241, 230, .16);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Jost', 'Century Gothic', 'Segoe UI', sans-serif;

  --w-max: 1240px;
  --w-text: 720px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --sec: clamp(5rem, 10vw, 9rem);
  --radius: 2px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--gold); color: #fff; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  color: inherit;
}

.container { max-width: var(--w-max); margin-inline: auto; padding-inline: var(--pad); }
.container--narrow { max-width: 900px; }

/* ---------- Typographic atoms ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
  opacity: .8;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
  opacity: .8;
}

.h-display {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: -.01em;
}
.h-section {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  letter-spacing: -.005em;
  margin-top: 1.1rem;
}
.h-sub {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
}
.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
}
.gold-i { font-style: italic; color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .45s var(--ease), border-color .45s var(--ease);
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--green-950); }
.btn:hover::after { transform: scaleX(1); transform-origin: left; }
.btn .arr { transition: transform .45s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }

.btn--solid { background: var(--gold); color: var(--green-950); }
.btn--solid::after { background: var(--ivory); }
.btn--solid:hover { color: var(--green-950); border-color: var(--ivory); }

.btn--light { border-color: rgba(245,241,230,.5); color: var(--ivory); }
.btn--light::after { background: var(--ivory); }
.btn--light:hover { color: var(--green-950); border-color: var(--ivory); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease);
}
.site-header::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: var(--line-light);
  opacity: 0;
  transition: opacity .5s;
}
.site-header.scrolled {
  background: rgba(7, 26, 21, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
}
.site-header.scrolled::after { opacity: 1; }
.site-header.hidden { transform: translateY(-100%); }

.header-inner {
  max-width: 1400px;
  margin-inline: auto;
  padding: .9rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: .9rem; }
.brand img { height: 58px; width: auto; transition: height .4s var(--ease); }
.scrolled .brand img { height: 46px; }

.main-nav ul { display: flex; gap: clamp(1.2rem, 2.6vw, 2.6rem); }
.main-nav a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: .5rem 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.main-nav a[aria-current="page"] { color: var(--gold-bright); }

.header-cta { white-space: nowrap; padding: .8rem 1.7rem; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .6rem;
  z-index: 110;
}
.nav-toggle span {
  width: 30px; height: 1.5px;
  background: var(--ivory);
  transition: transform .4s var(--ease), opacity .3s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.nav-contact { display: none; }
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-contact { display: block; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--green-950);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s var(--ease);
  }
  .nav-open .main-nav { opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; text-align: center; gap: 2.2rem; }
  .main-nav a { font-size: 1.05rem; letter-spacing: .3em; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--ivory);
  background: var(--green-950);
  overflow: hidden;
}
.hero--sub { min-height: 72svh; }
.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media img {
  opacity: .58;
  animation: heroZoom 18s var(--ease) forwards;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,26,21,.55) 0%, rgba(7,26,21,.15) 40%, rgba(7,26,21,.88) 100%),
    linear-gradient(90deg, rgba(7,26,21,.5) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--w-max);
  margin-inline: auto;
  padding: 9rem var(--pad) clamp(4rem, 9vh, 7rem);
}
.hero h1 { max-width: 15ch; text-wrap: balance; }
.hero .lead {
  color: rgba(245,241,230,.78);
  max-width: 52ch;
  margin-top: 1.8rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 2.6rem; }

.hero-scroll {
  position: absolute;
  right: clamp(1.2rem, 4vw, 3rem);
  bottom: 2.4rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  color: rgba(245,241,230,.6);
  font-size: .64rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 64px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2.2s infinite var(--ease);
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--sec); }
.section--dark { background: var(--green-900); color: var(--ivory); }
.section--deep { background: var(--green-950); color: var(--ivory); }
.section--paper { background: var(--paper); }
.section--dark .lead, .section--deep .lead { color: rgba(245,241,230,.72); }
.section-head { max-width: 780px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split--rev > .split-media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev > .split-media { order: 0; }
}
.split-media { position: relative; }
.split-media .frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.split-media .frame:hover img { transform: scale(1.045); }
.split-media .frame--landscape img { aspect-ratio: 4 / 3; }
.split-media::before {
  content: '';
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  pointer-events: none;
}
.split-media--plain::before { display: none; }
.split-body .lead { margin-top: 1.6rem; }
.split-body p + p { margin-top: 1.1rem; }
.split-body .btn { margin-top: 2.4rem; }

/* Stat band */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line-light);
  padding-top: 3rem;
  margin-top: clamp(3rem, 7vw, 5rem);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
}
.stat .lbl {
  margin-top: .7rem;
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(245,241,230,.6);
}
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; gap: 2.4rem; } }

/* Pillar cards (Leistungen) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  color: var(--ivory);
  background: var(--green-950);
}
.pillar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .68;
  transition: transform 1.1s var(--ease), opacity .6s;
}
.pillar:hover img { transform: scale(1.06); opacity: .5; }
.pillar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, transparent 30%, rgba(7,26,21,.92) 100%);
}
.pillar-body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 2rem;
}
.pillar-body .idx {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-bright);
  font-size: 1.05rem;
}
.pillar-body h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  margin-top: .4rem;
}
.pillar-body p {
  font-size: .95rem;
  color: rgba(245,241,230,.75);
  margin-top: .6rem;
  max-width: 34ch;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.pillar:hover .pillar-body p { opacity: 1; transform: none; }
.pillar-body .more {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.pillar-body .more::after { content: '→'; transition: transform .4s var(--ease); }
.pillar:hover .more::after { transform: translateX(6px); }

/* Signet band */
.signet-band {
  text-align: center;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: var(--paper);
}
.signet-band img {
  max-width: min(680px, 82%);
  margin-inline: auto;
  opacity: .9;
}
.signet-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 500;
  max-width: 26ch;
  margin: 2.4rem auto 0;
  line-height: 1.3;
  color: var(--green-900);
}
.signet-band blockquote em { color: var(--gold); }

/* Product cards */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.1rem, 2vw, 1.8rem);
}
@media (max-width: 1080px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products { grid-template-columns: 1fr; } }
.product {
  background: var(--green-850);
  border: 1px solid rgba(245,241,230,.07);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .4s;
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  border-color: var(--gold-soft);
}
.product-media {
  position: relative;
  background: radial-gradient(120% 90% at 50% 8%, #17453B 0%, var(--green-900) 62%, var(--green-950) 100%);
  overflow: hidden;
}
.product-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
}
.product:hover .product-media img { transform: scale(1.05) translateY(-4px); }
.product-body { padding: 1.5rem 1.5rem 1.7rem; color: var(--ivory); flex: 1; display: flex; flex-direction: column; }
.product-kind {
  font-size: .66rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.product-body h3 {
  font-size: 1.65rem;
  margin-top: .35rem;
}
.product-body .origin {
  font-size: .92rem;
  color: rgba(245,241,230,.66);
  margin-top: .5rem;
  flex: 1;
}
.product-meter {
  margin-top: 1.2rem;
  display: grid;
  gap: .45rem;
  border-top: 1px solid rgba(245,241,230,.1);
  padding-top: 1.1rem;
}
.meter {
  display: grid;
  grid-template-columns: 5.6rem 1fr;
  align-items: center;
  gap: .8rem;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,241,230,.6);
}
.meter .dots { display: flex; gap: .35rem; }
.meter .dots i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(245,241,230,.16);
}
.meter .dots i.on { background: var(--gold-bright); }

/* Feature list */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  counter-reset: feat;
}
@media (max-width: 760px) { .features { grid-template-columns: 1fr; } }
.feature {
  position: relative;
  padding: 1.9rem 1.7rem 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.section--dark .feature, .section--deep .feature {
  background: rgba(245,241,230,.035);
  border-color: rgba(245,241,230,.1);
}
.feature:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(12,46,40,.12); }
.section--dark .feature:hover { box-shadow: 0 24px 50px rgba(0,0,0,.3); }
.feature::before {
  counter-increment: feat;
  content: counter(feat, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}
.feature h3 { font-size: 1.45rem; margin-top: .5rem; }
.feature p { font-size: .98rem; color: var(--ink-soft); margin-top: .55rem; }
.section--dark .feature p, .section--deep .feature p { color: rgba(245,241,230,.68); }

/* Gallery mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(.8rem, 1.6vw, 1.4rem);
}
.mosaic figure { overflow: hidden; border-radius: var(--radius); position: relative; }
.mosaic img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.mosaic figure:hover img { transform: scale(1.05); }
.mosaic .m-a { grid-column: span 7; aspect-ratio: 16 / 10; }
.mosaic .m-b { grid-column: span 5; aspect-ratio: 4 / 5; }
.mosaic .m-c { grid-column: span 4; aspect-ratio: 1; }
.mosaic .m-d { grid-column: span 8; aspect-ratio: 16 / 9; }
@media (max-width: 720px) {
  .mosaic .m-a, .mosaic .m-b, .mosaic .m-c, .mosaic .m-d { grid-column: span 12; aspect-ratio: 16 / 11; }
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-light);
  padding-block: 1.15rem;
  background: var(--green-950);
  color: var(--ivory);
}
.marquee-track {
  display: flex;
  gap: 3.4rem;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee span {
  display: flex;
  align-items: center;
  gap: 3.4rem;
  font-size: .78rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(245,241,230,.55);
  white-space: nowrap;
}
.marquee b { color: var(--gold-bright); font-weight: 500; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Values / accordion-like listing */
.values { display: grid; gap: 0; max-width: 860px; }
.value {
  display: grid;
  grid-template-columns: minmax(9rem, 14rem) 1fr;
  gap: 2rem;
  padding-block: 2.2rem;
  border-top: 1px solid var(--line-light);
}
.value:last-child { border-bottom: 1px solid var(--line-light); }
.section--paper .value, .section--light .value { border-color: var(--line); }
.value h3 {
  font-size: 1.6rem;
  color: var(--gold-bright);
}
.section--paper .value h3 { color: var(--green-900); }
.value p { color: rgba(245,241,230,.75); }
.section--paper .value p { color: var(--ink-soft); }
@media (max-width: 640px) { .value { grid-template-columns: 1fr; gap: .6rem; } }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
  color: var(--ivory);
  text-align: center;
  padding-block: clamp(5rem, 11vw, 8.5rem);
}
.cta-band .watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.cta-band .watermark img {
  width: min(520px, 72vw);
  opacity: .05;
  transform: scale(1.1);
}
.cta-band h2 {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  max-width: 20ch;
  margin: 1.2rem auto 0;
}
.cta-band .lead { max-width: 46ch; margin: 1.4rem auto 0; }
.cta-band .btn { margin-top: 2.8rem; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: grid; gap: 1.6rem; margin-top: 2.4rem; }
.contact-item {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.1rem;
  align-items: start;
}
.contact-item .ico {
  width: 3.2rem; height: 3.2rem;
  display: grid; place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold);
}
.contact-item .ico svg { width: 1.15rem; height: 1.15rem; }
.contact-item .lbl {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-item .val { font-size: 1.05rem; margin-top: .15rem; }
.contact-item a.val:hover { color: var(--gold); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  box-shadow: 0 30px 70px rgba(12,46,40,.08);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .45rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(168,144,90,.18);
}
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: 1rem; }

/* Legal pages */
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.legal h2 { font-size: 1.6rem; margin-top: 2.6rem; }
.legal h3 { font-size: 1.25rem; margin-top: 1.8rem; }
.legal p, .legal li { margin-top: .9rem; color: var(--ink-soft); }
.legal ul { list-style: disc; padding-left: 1.4rem; }
.legal strong { color: var(--ink); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-950);
  color: var(--ivory);
  padding-top: clamp(4rem, 8vw, 6.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 4rem;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 92px; }
.footer-brand p {
  margin-top: 1.4rem;
  max-width: 30ch;
  color: rgba(245,241,230,.6);
  font-size: .95rem;
}
.footer-h {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.3rem;
}
.footer-links li + li { margin-top: .65rem; }
.footer-links a {
  color: rgba(245,241,230,.72);
  font-size: .95rem;
  transition: color .3s, padding-left .3s var(--ease);
}
.footer-links a:hover { color: var(--gold-bright); padding-left: 6px; }
.footer-contact li {
  color: rgba(245,241,230,.72);
  font-size: .95rem;
}
.footer-contact li + li { margin-top: .65rem; }
.footer-contact a:hover { color: var(--gold-bright); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.2rem;
  color: rgba(245,241,230,.72);
}
.footer-social svg { width: 1.2rem; height: 1.2rem; }
.footer-social:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(245,241,230,.45);
}
.footer-bottom nav { display: flex; gap: 1.6rem; }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* Page transition-in */
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
main { animation: pageIn .6s ease both; }
