/* ============================================================
   GARTENTRÄUME GENC — Premium Website Stylesheet
   gartentraeume-genc.de
   ============================================================ */

/* --- LOCAL FONTS (DSGVO-konform) --- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/fraunces-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/fraunces-400-italic.ttf') format('truetype');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/fraunces-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/fraunces-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-300.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.ttf') format('truetype');
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--text); font-family: var(--sans); font-weight: 400; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* --- DESIGN TOKENS --- */
:root {
  --bg:          #0F1410;
  --bg-alt:      #131813;
  --bg-card:     #192019;
  --cream:       #F5F1EA;
  --cream-dk:    #EDE9E1;
  --green:       #2D4A2B;
  --green-mid:   #3A5E38;
  --green-lt:    #496746;
  --gold:        #B8945F;
  --gold-lt:     #CCA870;
  --text:        #E8E4DC;
  --text-muted:  #7A7770;
  --on-cream:    #1A2319;
  --on-cream-2:  #3A4A39;
  --nav-h:       80px;
  --pad:         clamp(80px, 10vw, 140px);
  --max-w:       1280px;
  --sans:        'Inter', system-ui, -apple-system, sans-serif;
  --serif:       'Fraunces', Georgia, 'Times New Roman', serif;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- LAYOUT HELPERS --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.reveal-fade.visible { opacity: 1; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s ease, backdrop-filter 0.45s ease, box-shadow 0.45s ease;
}
.nav.scrolled {
  background: rgba(13, 17, 13, 0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(184,148,95,0.12);
}
.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.nav__logo img:hover { opacity: 0.75; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}
.nav__menu a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(232,228,220,0.72);
  position: relative;
  transition: color 0.3s;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__menu a:hover { color: var(--text); }
.nav__menu a:hover::after { width: 100%; }

.nav__cta {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold); color: var(--bg); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}

.nav__drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: rgba(12,17,12,0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  z-index: 999;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--text);
  transition: color 0.3s;
}
.nav__drawer a:hover { color: var(--gold); }
.nav__drawer .nav__cta {
  font-size: 0.875rem;
  padding: 14px 44px;
  margin-top: 12px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -15%;
  background: url('../images/image.jpg') center/cover no-repeat;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(10,14,10,0.58) 0%,
    rgba(10,14,10,0.28) 45%,
    rgba(10,14,10,0.72) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 960px;
}
.hero__logo {
  width: clamp(90px, 12vw, 148px);
  margin: 0 auto 2.75rem;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translateY(-18px);
  animation: slideDown 0.9s var(--ease) 0.2s forwards;
}
.hero__headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(28px);
  animation: slideUp 0.95s var(--ease) 0.5s forwards;
}
.hero__sub {
  font-size: clamp(0.875rem, 1.8vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.07em;
  color: rgba(245,241,234,0.72);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.85s forwards;
}
.hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s ease 1.05s forwards;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
  border: 1px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(184,148,95,0.4);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}
.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-lt);
  border-color: var(--green-lt);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(45,74,43,0.3);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero__scroll-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.45);
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(184,148,95,0.6), transparent);
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================================
   STATS / COUNTER BANNER
   ============================================================ */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid rgba(184,148,95,0.14);
  border-bottom: 1px solid rgba(184,148,95,0.14);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  text-align: center;
  padding: clamp(44px,6vw,72px) 20px;
  position: relative;
}
.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0; top: 22%; height: 56%;
  width: 1px;
  background: rgba(184,148,95,0.18);
}
.stats__num {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 4.75rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stats__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--cream);
  padding: var(--pad) 0;
  color: var(--on-cream);
}
.sec-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.4rem;
}
.sec-tag::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.sec-tag--green { color: var(--green); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
  margin-bottom: clamp(64px, 9vw, 110px);
}
.about__title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}
.about__body {
  font-size: 1.0625rem;
  line-height: 1.88;
  color: var(--on-cream-2);
  max-width: 500px;
}
.about__aside {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about__quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--green);
  padding-left: 22px;
  border-left: 3px solid var(--gold);
}
.about__meta {
  font-size: 0.875rem;
  color: #607060;
  line-height: 1.6;
}

/* TIMELINE */
.timeline { }
.timeline__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.timeline__tag::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--green);
}
.timeline__track {
  position: relative;
  padding-left: 36px;
}
.timeline__track::before {
  content: '';
  position: absolute;
  left: 4px; top: 10px; bottom: 4px;
  width: 1px;
  background: linear-gradient(to bottom, var(--green) 60%, transparent 100%);
  opacity: 0.35;
}
.tl-item {
  position: relative;
  padding-bottom: 2.25rem;
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.tl-item.visible { opacity: 1; transform: translateX(0); }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -36px; top: 7px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  outline: 2px solid var(--gold);
}
.tl-item.is-now .tl-dot {
  background: var(--green);
  outline-color: var(--green-lt);
  width: 11px; height: 11px;
  top: 6px; left: -37px;
}
.tl-period {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.tl-role {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.15rem;
}
.tl-org {
  font-size: 0.85rem;
  color: #5A6B59;
  line-height: 1.5;
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.services {
  background: var(--bg);
  padding: var(--pad) 0;
}
.services__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(48px,7vw,80px);
}
.services__head .sec-tag { justify-content: center; }
.services__head .sec-tag::before { display: none; }
.services__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(184,148,95,0.1);
  border: 1px solid rgba(184,148,95,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.svc-card {
  background: var(--bg-card);
  padding: clamp(36px, 4.5vw, 56px);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover { background: #1D2A1C; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 1.6rem;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}
.svc-card:hover .svc-card__icon { opacity: 1; transform: scale(1.08) rotate(-3deg); }
.svc-card__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}
.svc-card:hover .svc-card__title { color: var(--gold); }
.svc-card__desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ============================================================
   REFERENZEN / GALLERY
   ============================================================ */
.gallery {
  background: var(--cream-dk);
  padding: var(--pad) 0;
}
.gallery .sec-tag--green { color: var(--green); }
.gallery__head { margin-bottom: clamp(40px, 5vw, 64px); }
.gallery__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.gallery__subtitle {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--on-cream-2);
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}
.bento__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
  background: var(--bg-card);
}
/* Bento positions */
.bento__item:nth-child(1)  { grid-column: 1 / 7;  grid-row: 1 / 3; }
.bento__item:nth-child(2)  { grid-column: 7 / 10; grid-row: 1 / 2; }
.bento__item:nth-child(3)  { grid-column: 10 / 13;grid-row: 1 / 2; }
.bento__item:nth-child(4)  { grid-column: 7 / 10; grid-row: 2 / 3; }
.bento__item:nth-child(5)  { grid-column: 10 / 13;grid-row: 2 / 3; }
.bento__item:nth-child(6)  { grid-column: 1 / 5;  grid-row: 3 / 5; }
.bento__item:nth-child(7)  { grid-column: 5 / 9;  grid-row: 3 / 4; }
.bento__item:nth-child(8)  { grid-column: 9 / 13; grid-row: 3 / 4; }
.bento__item:nth-child(9)  { grid-column: 5 / 9;  grid-row: 4 / 5; }
.bento__item:nth-child(10) { grid-column: 9 / 13; grid-row: 4 / 5; }
.bento__item:nth-child(11) { grid-column: 1 / 7;  grid-row: 5 / 6; }

.bento__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.bento__item:hover img { transform: scale(1.065); }

.bento__cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,10,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
}
.bento__item:hover .bento__cap { opacity: 1; }
.bento__cap-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg);
  padding: var(--pad) 0;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '\201C';
  position: absolute;
  top: -60px; left: -10px;
  font-family: var(--serif);
  font-size: clamp(200px, 28vw, 380px);
  color: rgba(45,74,43,0.09);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonials__head {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.testimonials__head .sec-tag { justify-content: center; }
.testimonials__head .sec-tag::before { display: none; }
.testimonials__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.025em;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: var(--bg-card);
  border: 1px solid rgba(184,148,95,0.11);
  border-radius: 3px;
  padding: clamp(30px,4vw,48px);
  transition: border-color 0.35s, transform 0.45s var(--ease);
}
.t-card:hover {
  border-color: rgba(184,148,95,0.35);
  transform: translateY(-5px);
}
.t-quote {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 2rem;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.t-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}
.t-loc {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ============================================================
   EINZUGSGEBIET
   ============================================================ */
.coverage {
  background: var(--green);
  padding: clamp(64px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.coverage__inner { position: relative; }
.coverage__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 1.25rem;
}
.coverage__tag::before,
.coverage__tag::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}
.coverage__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
.coverage__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245,241,234,0.8);
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact {
  background: var(--cream);
  padding: var(--pad) 0;
  color: var(--on-cream);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.contact__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}
.contact__details { display: flex; flex-direction: column; gap: 15px; margin-bottom: 2.5rem; }
.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.c-detail__icon {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.c-detail__text {
  font-size: 0.9375rem;
  color: var(--on-cream-2);
  line-height: 1.5;
}
.c-detail__text a { transition: color 0.3s; }
.c-detail__text a:hover { color: var(--green); }

.contact__tagline {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green);
  line-height: 1.55;
}

.form-panel__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.75rem;
}
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__group { display: flex; flex-direction: column; gap: 5px; }
.form__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5A6B59;
}
.form__input, .form__textarea {
  width: 100%;
  padding: 13px 15px;
  background: #fff;
  border: 1px solid rgba(45,74,43,0.2);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--on-cream);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}
.form__input::placeholder, .form__textarea::placeholder { color: #aaa9a4; }
.form__input:focus, .form__textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,74,43,0.09);
}
.form__textarea { min-height: 128px; resize: vertical; }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
}
.form__check input[type="checkbox"] {
  width: 17px; height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}
.form__check-label {
  font-size: 0.8rem;
  color: #5A6B59;
  line-height: 1.55;
}
.form__check-label a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.form__submit {
  width: 100%;
  padding: 15px 40px;
  background: var(--green);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.form__submit:hover {
  background: var(--green-lt);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(45,74,43,0.28);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #08100A;
  padding: 56px 0 28px;
  border-top: 1px solid rgba(184,148,95,0.1);
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 36px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(232,228,220,0.07);
  flex-wrap: wrap;
}
.footer__logo-img {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  margin-bottom: 10px;
}
.footer__slogan {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(232,228,220,0.38);
}
.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.4);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__copy, .footer__domain {
  font-size: 0.73rem;
  color: rgba(232,228,220,0.28);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8,12,8,0.96);
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox__close {
  position: absolute;
  top: 22px; right: 24px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: rgba(232,228,220,0.55);
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox__close:hover { color: var(--gold); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-wrap { min-height: 100vh; background: var(--cream); }
.legal-topbar {
  background: var(--bg);
  padding: 18px 0;
  border-bottom: 1px solid rgba(184,148,95,0.1);
}
.legal-topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 20px;
}
.legal-topbar__logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.legal-topbar__back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: auto;
  transition: color 0.3s;
}
.legal-topbar__back:hover { color: var(--gold); }
.legal-topbar__back svg { width: 16px; height: 16px; }

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 60px);
  color: var(--on-cream);
}
.legal-body h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
}
.legal-body .legal-intro {
  font-size: 0.875rem;
  color: #607060;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(45,74,43,0.15);
}
.legal-body h2 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--green);
  margin: 2.5rem 0 0.75rem;
}
.legal-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-cream);
  margin: 1.5rem 0 0.4rem;
}
.legal-body p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--on-cream-2);
  margin-bottom: 1rem;
}
.legal-body a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal-body ul { margin: 0.5rem 0 1rem 1.25rem; list-style: disc; }
.legal-body li { font-size: 0.9375rem; line-height: 1.75; color: var(--on-cream-2); margin-bottom: 0.25rem; }
.legal-body address { font-style: normal; }

.legal-footer {
  background: var(--bg);
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid rgba(184,148,95,0.1);
}
.legal-footer a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.38);
  margin: 0 14px;
  transition: color 0.3s;
}
.legal-footer a:hover { color: var(--gold); }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.45; transform: scaleY(1); }
  50%       { opacity: 1;    transform: scaleY(1.12); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(3)::before { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 170px;
  }
  .bento__item:nth-child(1)  { grid-column: 1 / 4; grid-row: 1 / 3; }
  .bento__item:nth-child(2)  { grid-column: 4 / 7; grid-row: 1 / 2; }
  .bento__item:nth-child(3)  { grid-column: 4 / 7; grid-row: 2 / 3; }
  .bento__item:nth-child(4)  { grid-column: 1 / 3; grid-row: 3 / 4; }
  .bento__item:nth-child(5)  { grid-column: 3 / 5; grid-row: 3 / 4; }
  .bento__item:nth-child(6)  { grid-column: 5 / 7; grid-row: 3 / 5; }
  .bento__item:nth-child(7)  { grid-column: 1 / 4; grid-row: 4 / 5; }
  .bento__item:nth-child(8)  { grid-column: 4 / 6; grid-row: 4 / 5; }
  .bento__item:nth-child(9)  { grid-column: 1 / 3; grid-row: 5 / 6; }
  .bento__item:nth-child(10) { grid-column: 3 / 7; grid-row: 5 / 6; }
  .bento__item:nth-child(11) { grid-column: 1 / 7; grid-row: 6 / 7; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }
  .bento__item:nth-child(n) { grid-column: auto !important; grid-row: auto !important; }
  .bento__item:nth-child(1),
  .bento__item:nth-child(6),
  .bento__item:nth-child(11) { grid-column: 1 / 3 !important; }
  .footer__main { flex-direction: column; text-align: center; }
  .footer__bottom { justify-content: center; }
}

@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item::before { display: none !important; }
  .stats__item:nth-child(2)::before,
  .stats__item:nth-child(4)::before { display: block !important; }
  .form__row { grid-template-columns: 1fr; }
  .bento {
    grid-template-columns: 1fr;
  }
  .bento__item:nth-child(n) { grid-column: 1 !important; }
  .hero__btns { flex-direction: column; align-items: center; }
}
