/* ═══════════════════════════════════════════
   ANYCRAN STUDIO — Theme CSS
   Maßgefertigte Möbel & Innenarchitektur
   Berlin, Deutschland
═══════════════════════════════════════════ */

/* ── Variables ─────────────────────────── */
:root {
  --forest:   #1B3A28;
  --forest2:  #254d35;
  --forest3:  #8ab89a;
  --terra:    #C4682A;
  --terra2:   #e07c3a;
  --cream:    #F7F2EB;
  --sand:     #E0D5C5;
  --sand2:    #ccc0aa;
  --gold:     #B89040;
  --gold2:    #d4a84a;
  --ink:      #1A1208;
  --ink2:     #2e220d;
  --muted:    #7a6a55;
  --border:   rgba(26,18,8,0.12);
  --border2:  rgba(26,18,8,0.06);
  --ff-head:  'Cormorant Garamond', Georgia, serif;
  --ff-body:  'Outfit', sans-serif;
  --radius:   12px;
  --radius-sm: 8px;
  --shadow:   0 4px 24px rgba(26,18,8,0.08);
  --shadow-lg:0 12px 48px rgba(26,18,8,0.14);
}

/* ── Reset & Base ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }

/* ── Reveal animation ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.anycran-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 20px 0;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}
.anycran-nav.scrolled {
  background: rgba(247,242,235,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(26,18,8,0.08);
}
.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-brand em { font-style: italic; color: var(--terra); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--forest); background: rgba(27,58,40,0.07); }
.nav-cta {
  background: var(--forest) !important;
  color: var(--cream) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  margin-left: 8px;
  font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--forest2) !important; transform: translateY(-1px) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--forest);
  font-size: 1.2rem;
  padding: 6px;
}
@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(247,242,235,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 24px 24px;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(26,18,8,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-cta { margin-left: 0 !important; text-align: center; }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 110%;
  background: linear-gradient(135deg, rgba(27,58,40,0.06) 0%, rgba(196,104,42,0.04) 100%);
  border-radius: 0 0 0 60%;
  pointer-events: none;
}
.hero-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-img-col { display: none; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--terra);
}
.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.07;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-h1 em { font-style: italic; color: var(--forest); }
.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--forest2);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,58,40,0.25);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--forest); color: var(--forest); background: rgba(27,58,40,0.04); }
.hero-stats-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-main {
  width: 100%; height: 580px;
  object-fit: cover;
  display: block;
}
.hero-pill {
  position: absolute;
  background: rgba(247,242,235,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(26,18,8,0.12);
  white-space: nowrap;
}
.hero-pill.pill-1 { bottom: 28px; left: -20px; }
.hero-pill.pill-2 { top: 32px; right: -16px; }
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--forest);
  animation: pulse-dot 2s ease-in-out infinite;
}
.pill-dot.terra { background: var(--terra); }
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@media (max-width: 767px) {
  .hero-scroll-cue { display: none; }
  .hero-stats-row { gap: 20px; }
}

/* ══════════════════════════════════════════
   MARQUEE BAND
══════════════════════════════════════════ */
.marquee-band {
  background: var(--forest);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,242,235,0.65);
  padding: 0 32px;
  white-space: nowrap;
}
.marquee-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════ */
.sec-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 90px 0; }
@media (max-width: 767px) { .section-pad { padding: 64px 0; } }
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.sec-tag::before { content: ''; display: block; width: 22px; height: 2px; background: var(--terra); }
.sec-h2 {
  font-family: var(--ff-head);
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.sec-h2 em { font-style: italic; color: var(--forest); }
.sec-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ══════════════════════════════════════════
   PHILOSOPHY CARDS
══════════════════════════════════════════ */
.phil-card {
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.phil-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.phil-num {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sand2);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.phil-icon {
  width: 46px; height: 46px;
  background: rgba(27,58,40,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 18px;
}
.phil-title {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.phil-text { font-size: 0.93rem; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════════════════
   SERVICES (dark section)
══════════════════════════════════════════ */
.services-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(196,104,42,0.08);
  pointer-events: none;
}
.service-card {
  background: rgba(247,242,235,0.06);
  border: 1px solid rgba(247,242,235,0.1);
  border-radius: var(--radius);
  padding: 32px 26px;
  height: 100%;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  background: rgba(247,242,235,0.1);
  border-color: rgba(196,104,42,0.35);
  transform: translateY(-4px);
}
.service-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; color: rgba(247,242,235,0.3); margin-bottom: 20px; }
.service-title { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 600; color: var(--cream); margin-bottom: 12px; line-height: 1.25; }
.service-title em { font-style: italic; color: var(--terra2); }
.service-text { font-size: 0.92rem; color: rgba(247,242,235,0.55); line-height: 1.75; margin-bottom: 20px; }
.service-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(247,242,235,0.35);
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(247,242,235,0.1);
  padding-top: 14px;
}
.service-tag i { color: var(--terra); }

/* ══════════════════════════════════════════
   PROCESS / TIMELINE
══════════════════════════════════════════ */
.process-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 560px;
  box-shadow: var(--shadow-lg);
}
.process-timeline { padding-left: 0; }
.process-step {
  position: relative;
  padding: 0 0 32px 64px;
  border-left: 2px solid var(--border);
  margin-left: 24px;
}
.process-step:last-child { border-left-color: transparent; padding-bottom: 0; }
.step-num {
  position: absolute;
  left: -25px; top: 0;
  width: 48px; height: 48px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.step-lbl { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); margin-bottom: 4px; }
.step-title { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.step-text { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════════════════
   PORTFOLIO CARDS
══════════════════════════════════════════ */
.portfolio-card {
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.portfolio-img-wrap {
  height: 220px;
  background: var(--sand);
  overflow: hidden;
  position: relative;
}
.portfolio-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-img-wrap img { transform: scale(1.05); }
.portfolio-top-row {
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portfolio-style-tag {
  background: rgba(247,242,235,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 4px;
}
.portfolio-area {
  background: var(--forest);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}
.portfolio-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.portfolio-title { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.portfolio-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.palette-row { display: flex; gap: 6px; }
.palette-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* ══════════════════════════════════════════
   HANDWERK / FEATURES
══════════════════════════════════════════ */
.features-section { background: var(--sand); }
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border2);
}
.feature-item:first-child { padding-top: 0; }
.feature-item:last-child { border-bottom: none; padding-bottom: 0; }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--forest);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--cream);
  flex-shrink: 0;
}
.feature-icon.terra { background: var(--terra); }
.feature-title { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.feature-text { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════
   TESTIMONIALS (dark)
══════════════════════════════════════════ */
.testimonials-section { background: var(--ink); }
.testimonial-card {
  background: rgba(247,242,235,0.05);
  border: 1px solid rgba(247,242,235,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
}
.stars-row { color: var(--gold2); font-size: 0.85rem; margin-bottom: 8px; }
.stars-row i { margin-right: 2px; }
.quote-mark {
  display: block;
  font-family: var(--ff-head);
  font-size: 4rem;
  line-height: 0.7;
  color: var(--terra);
  margin-bottom: 14px;
  opacity: 0.6;
}
.testimonial-text { font-size: 0.95rem; color: rgba(247,242,235,0.68); line-height: 1.8; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-initials {
  width: 42px; height: 42px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
}
.t-initials.terra { background: var(--terra); }
.t-name { font-size: 0.9rem; font-weight: 600; color: rgba(247,242,235,0.85); }
.t-loc { font-size: 0.78rem; color: rgba(247,242,235,0.4); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
}
.faq-q { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(27,58,40,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--forest);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-btn[aria-expanded="true"] .faq-icon {
  background: var(--forest);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-body { display: none; padding: 0 0 20px; font-size: 0.95rem; color: var(--muted); line-height: 1.8; }
.faq-body.open { display: block; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--forest) 0%, #0f2118 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(196,104,42,0.1);
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-h2 {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-h2 em { font-style: italic; color: var(--terra2); }
.btn-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-cta-light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247,242,235,0.2);
}
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(247,242,235,0.75);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(247,242,235,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-cta-outline:hover { border-color: rgba(247,242,235,0.6); color: var(--cream); }

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.form-card {
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
@media (max-width: 575px) { .form-card { padding: 24px 18px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 575px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-lbl {
  display: block;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-ctrl {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-ctrl:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(27,58,40,0.08); }
textarea.form-ctrl { min-height: 130px; resize: vertical; }
select.form-ctrl { cursor: pointer; }
.btn-submit {
  width: 100%;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--forest2); transform: translateY(-2px); }
.info-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 32px;
}
.info-card-title { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,18,8,0.07);
}
.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-icon {
  width: 38px; height: 38px;
  background: var(--forest);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--cream);
  flex-shrink: 0;
}
.info-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.info-val { font-size: 0.95rem; color: var(--ink); line-height: 1.5; }
.info-val a { color: var(--forest); font-weight: 600; }
.info-val a:hover { color: var(--terra); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--ink); padding: 80px 0 0; }
.footer-brand { font-family: var(--ff-head); font-size: 1.8rem; font-weight: 700; color: var(--cream); display: inline-block; margin-bottom: 14px; }
.footer-brand em { font-style: italic; color: var(--terra); }
.footer-desc { font-size: 0.9rem; color: rgba(247,242,235,0.42); line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(247,242,235,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(247,242,235,0.45);
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--terra); color: var(--cream); }
.footer-col-h { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,242,235,0.32); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; font-size: 0.9rem; color: rgba(247,242,235,0.38); line-height: 1.5; }
.footer-links a { color: rgba(247,242,235,0.52); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-divider { border: none; border-top: 1px solid rgba(247,242,235,0.08); margin: 60px 0 28px; }
.footer-copy { font-size: 0.82rem; color: rgba(247,242,235,0.28); padding-bottom: 36px; }
.footer-copy a { color: rgba(247,242,235,0.28); }
.footer-copy a:hover { color: rgba(247,242,235,0.6); }

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10000;
  background: var(--ink);
  border-top: 2px solid rgba(247,242,235,0.08);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-text { font-size: 0.88rem; color: rgba(247,242,235,0.6); line-height: 1.6; flex: 1; min-width: 200px; }
.cookie-text a { color: var(--forest3); font-weight: 600; }
.cookie-text a:hover { color: var(--terra2); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-ck-accept {
  background: var(--forest);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-ck-accept:hover { background: var(--forest2); }
.btn-ck-decline {
  background: transparent;
  color: rgba(247,242,235,0.5);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 16px;
  border: 1px solid rgba(247,242,235,0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-ck-decline:hover { border-color: rgba(247,242,235,0.4); color: rgba(247,242,235,0.8); }

/* ══════════════════════════════════════════
   SUCCESS MODAL
══════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(26,18,8,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 52px 40px;
  text-align: center;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modal-pop 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@media (max-width: 575px) { .modal-box { padding: 40px 24px; } }
.modal-close-btn {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--border2);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--muted);
  transition: background 0.2s;
}
.modal-close-btn:hover { background: var(--sand); }
.modal-check {
  width: 64px; height: 64px;
  background: rgba(27,58,40,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--forest);
  margin: 0 auto 20px;
}
.modal-h { font-family: var(--ff-head); font-size: 1.8rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.modal-p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.modal-dismiss-btn {
  background: var(--forest);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-dismiss-btn:hover { background: var(--forest2); }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, #0f2118 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(196,104,42,0.12);
  pointer-events: none;
}
.page-hero-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-tag::before { content: ''; display: block; width: 22px; height: 2px; background: var(--terra); }
.page-hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero-h1 em { font-style: italic; color: var(--terra2); }
.page-hero-lead { font-size: 1rem; color: rgba(247,242,235,0.52); max-width: 520px; line-height: 1.8; }

/* ══════════════════════════════════════════
   PROSE (policy pages)
══════════════════════════════════════════ */
.prose-section { background: var(--cream); padding: 80px 0; }
.prose-wrap { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.prose-wrap h2 { font-family: var(--ff-head); font-size: 1.6rem; font-weight: 600; color: var(--ink); margin: 40px 0 12px; border-left: 3px solid var(--terra); padding-left: 14px; }
.prose-wrap p { font-size: 0.97rem; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.prose-wrap ul { list-style: disc; margin-left: 24px; margin-bottom: 16px; }
.prose-wrap li { font-size: 0.97rem; color: var(--muted); line-height: 1.75; margin-bottom: 6px; }
.prose-wrap a { color: var(--forest); font-weight: 600; }
.prose-wrap strong { color: var(--ink); font-weight: 600; }

/* ══════════════════════════════════════════
   ABOUT — VALUES & TEAM
══════════════════════════════════════════ */
.value-card {
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { width: 48px; height: 48px; background: rgba(196,104,42,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--terra); margin-bottom: 16px; }
.value-title { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.value-text { font-size: 0.9rem; color: var(--muted); line-height: 1.72; }
.team-card { text-align: center; }
.team-img-wrap { width: 130px; height: 130px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px; background: var(--sand); border: 3px solid var(--border2); }
.team-img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 10px; }
.team-bio { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════
   GRID HELPERS (replaces Bootstrap grid)
══════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: center; }
.grid-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4, .grid-2-1, .grid-1-2, .grid-equal { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 575px) {
  .grid-3 { grid-template-columns: 1fr; }
}
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; }
.flex-center { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
