/* ==========================================================================
   Atelier de Bucurie — design system
   Brand-umbrelă: Grădiniță (calm, premium) + Loc de joacă (energic, colorat)
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */
:root {
  /* neutre calde */
  --cream:        #FBF7F0;
  --cream-2:      #F4EDE1;
  --cream-3:      #EBE1D1;
  --ink:          #1F1E1B;
  --ink-70:       #4A4842;
  --ink-50:       #6E6B62;
  --line:         #E0D6C4;

  /* grădiniță */
  --green:        #2E4A36;
  --green-2:      #40644A;
  --sage:         #94AB92;
  --sage-soft:    #DCE5D8;
  --clay:         #BE5F3A;
  --clay-soft:    #F0DCCF;

  /* joacă / petreceri — culorile din logo */
  --sky:          #29B6E8;
  --pink:         #F2698F;
  --yellow:       #F4C20D;
  --red:          #D93A2B;
  --purple:       #9B51E0;
  --grass:        #4CAF50;

  /* tipografie */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ritm */
  --wrap:         1240px;
  --wrap-narrow:  760px;
  --gutter:       clamp(20px, 5vw, 56px);
  --sect:         clamp(72px, 11vw, 152px);
  --radius:       20px;
  --radius-lg:    32px;

  --shadow:       0 2px 4px rgba(31,30,27,.04), 0 12px 32px rgba(31,30,27,.07);
  --shadow-lg:    0 4px 8px rgba(31,30,27,.05), 0 24px 64px rgba(31,30,27,.11);
}

/* ------------------------------------------------------------ 2. Baza */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: 'kern' 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); font-variation-settings: 'SOFT' 30, 'WONK' 1; }
h2 { font-size: clamp(2.1rem, 5vw, 3.9rem); font-variation-settings: 'SOFT' 20; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); line-height: 1.2; }
h4 { font-size: 1.1rem; line-height: 1.3; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lead     { font-size: clamp(1.12rem, 1.9vw, 1.42rem); line-height: 1.55; color: var(--ink-70); }
.big-lead { font-size: clamp(1.25rem, 2.4vw, 1.72rem); line-height: 1.5; color: var(--ink); font-weight: 400; }
.muted    { color: var(--ink-50); }
.small    { font-size: .93rem; }

/* ---------------------------------------------------- 3. Layout / utilitare */
.wrap        { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.section     { padding-block: var(--sect); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 92px); }
.center      { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.bg-cream2 { background: var(--cream-2); }
.bg-sage   { background: var(--sage-soft); }
.bg-green  { background: var(--green); color: var(--cream); }
.bg-green h2, .bg-green h3 { color: var(--cream); }
.bg-green .lead, .bg-green .muted { color: rgba(251,247,240,.72); }
.bg-ink    { background: var(--ink); color: var(--cream); }
.bg-ink h2, .bg-ink h3 { color: var(--cream); }
.bg-ink .lead { color: rgba(251,247,240,.7); }

/* eticheta mică de deasupra titlurilor */
.eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
}
.bg-green .eyebrow, .bg-ink .eyebrow { color: var(--sage); }

/* ------------------------------------------------------------ 4. Butoane */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 1.05em 2.1em;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.3,1), background-color .18s, color .18s, border-color .18s, box-shadow .18s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; }

.btn--primary { background: var(--green); color: var(--cream); box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--green-2); box-shadow: var(--shadow-lg); }

.btn--clay { background: var(--clay); color: #fff; box-shadow: var(--shadow); }
.btn--clay:hover { background: #A94F2D; box-shadow: var(--shadow-lg); }

.btn--ghost { border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.btn--light { background: var(--cream); color: var(--green); }
.btn--light:hover { background: #fff; }

.btn--outline-light { border-color: rgba(251,247,240,.5); color: var(--cream); }
.btn--outline-light:hover { background: var(--cream); color: var(--green); border-color: var(--cream); }

.btn--sm { padding: .78em 1.5em; font-size: .88rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* link cu săgeată */
.arrow-link {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 600; font-size: .97rem; text-decoration: none;
  border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
  transition: gap .2s, opacity .2s;
}
.arrow-link:hover { gap: .8em; opacity: .7; }

/* ------------------------------------------------------------- 5. Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,240,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background-color .25s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.site-header__inner {
  max-width: var(--wrap); margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; gap: 24px;
}
.site-logo { flex-shrink: 0; line-height: 0; }
.site-logo img { height: 42px; width: auto; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav > a {
  padding: 9px 13px; border-radius: 999px;
  font-size: .89rem; font-weight: 600; text-decoration: none;
  color: var(--ink-70); transition: color .18s, background-color .18s;
  white-space: nowrap;
}
.nav > a:hover { color: var(--ink); background: var(--cream-3); }
.nav > a[aria-current="page"] { color: var(--green); background: var(--sage-soft); }

.header-cta { margin-left: 10px; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 46px; height: 46px; padding: 0;
  background: none; border: 1.5px solid var(--line); border-radius: 999px;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; position: relative;
  width: 18px; height: 1.8px; background: var(--ink); border-radius: 2px;
  transition: transform .25s, background-color .25s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 18px; height: 1.8px; background: var(--ink); border-radius: 2px;
  transition: transform .25s, top .25s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 74px 0 0;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 2px; margin: 0; padding: 24px var(--gutter) 120px;
    background: var(--cream); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .22s, transform .22s;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav > a { padding: 16px 12px; font-size: 1.2rem; border-radius: 12px; }
  .header-cta { margin: 20px 0 0; width: 100%; }
  .header-cta .btn { width: 100%; }
}

/* --------------------------------------------------------------- 6. Hero */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex; align-items: flex-end;
  padding-block: clamp(90px, 14vw, 150px);
  overflow: hidden;
  color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(178deg, rgba(20,26,20,.46) 0%, rgba(20,26,20,.26) 32%, rgba(20,26,20,.68) 74%, rgba(20,26,20,.88) 100%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero h1 { color: #fff; max-width: 15ch; text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.hero p  { color: rgba(255,255,255,.9); max-width: 54ch; text-shadow: 0 1px 16px rgba(0,0,0,.34); }
.hero .eyebrow { color: rgba(255,255,255,.82); }
.hero .btn-row { margin-top: 2.2rem; }

.hero--short { min-height: min(62vh, 560px); }

/* ------------------------------------------- 7. Banda cu cifre (stat band) */
.statband { background: var(--green); color: var(--cream); }
.statband__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(251,247,240,.16);
}
.statband__item {
  padding: clamp(28px, 4vw, 46px) clamp(16px, 2.4vw, 32px);
  border-right: 1px solid rgba(251,247,240,.16);
  border-bottom: 1px solid rgba(251,247,240,.16);
}
.statband__item:last-child { border-right: none; }
.statband__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  font-weight: 600; line-height: .95; letter-spacing: -.03em;
  color: var(--cream); display: block; margin-bottom: .3em;
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
}
.statband__label { font-size: .92rem; line-height: 1.4; color: rgba(251,247,240,.72); }

@media (max-width: 860px) {
  .statband__grid { grid-template-columns: repeat(2, 1fr); }
  .statband__item:nth-child(2n) { border-right: none; }
}

/* --------------------------------------------------- 8. Bloc imagine/text */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow);
}
.split__media--tall img { aspect-ratio: 4 / 5; }
.split__body h2 { margin-bottom: .45em; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
}

/* imagine full-bleed */
.fullbleed { width: 100%; margin-block: 0; }
.fullbleed img {
  width: 100%; height: clamp(280px, 46vw, 620px);
  object-fit: cover;
}

/* --------------------------------------------------------- 9. Card-grile */
.grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.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: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 36px);
}
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600;
  line-height: 1; letter-spacing: -.03em; color: var(--clay);
  display: block; margin-bottom: .18em;
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
}
.card--flat { background: var(--cream-2); border-color: transparent; }

/* card mare navigabil (homepage) */
.pathcard {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-lg); text-decoration: none; color: #fff;
  min-height: clamp(400px, 52vw, 560px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(28px, 3.6vw, 48px);
  box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s;
}
.pathcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pathcard img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.3,1);
}
.pathcard:hover img { transform: scale(1.045); }
.pathcard::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,26,20,.06) 26%, rgba(20,26,20,.58) 62%, rgba(20,26,20,.9) 100%);
}
.pathcard__body { position: relative; z-index: 2; }
.pathcard__body h3 {
  color: #fff; font-size: clamp(1.8rem, 3.1vw, 2.7rem); margin-bottom: .3em;
}
.pathcard__body p { color: rgba(255,255,255,.88); margin-bottom: 1.3em; max-width: 40ch; }
.pathcard__cta {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; font-size: .95rem;
  border-bottom: 1.5px solid rgba(255,255,255,.55); padding-bottom: 3px;
  transition: gap .22s;
}
.pathcard:hover .pathcard__cta { gap: .85em; }

/* --------------------------------------------------- 10. Cifra uriașă (7) */
.bignum {
  display: grid; grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: clamp(24px, 5vw, 80px); align-items: center;
}
.bignum__figure {
  font-family: var(--font-display);
  font-size: clamp(11rem, 30vw, 25rem);
  font-weight: 600; line-height: .74; letter-spacing: -.05em;
  color: var(--green); text-align: center;
  font-variation-settings: 'SOFT' 50, 'WONK' 1;
}
.bignum__figure small {
  display: block; font-family: var(--font-body);
  font-size: clamp(1rem, 1.7vw, 1.35rem); font-weight: 700;
  letter-spacing: .02em; color: var(--clay); margin-top: .5em; line-height: 1.3;
}
@media (max-width: 820px) {
  .bignum { grid-template-columns: 1fr; text-align: left; }
  .bignum__figure { font-size: 11rem; text-align: left; }
}

/* --------------------------------------------------- 11. Listă întrebări */
.qlist { list-style: none; margin: 0; padding: 0; }
.qlist li {
  position: relative; padding: 20px 0 20px 46px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.45;
}
.qlist li:first-child { border-top: 1px solid var(--line); }
.qlist li::before {
  content: ''; position: absolute; left: 8px; top: 30px;
  width: 9px; height: 9px; border-radius: 999px; background: var(--clay);
}
.bg-green .qlist li { border-color: rgba(251,247,240,.2); }
.bg-green .qlist li::before { background: var(--sage); }

/* listă simplă cu bife */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 34px; line-height: 1.5; }
.checklist li::before {
  content: ''; position: absolute; left: 4px; top: .5em;
  width: 13px; height: 8px;
  border-left: 2.2px solid var(--clay); border-bottom: 2.2px solid var(--clay);
  transform: rotate(-45deg);
}
.bg-green .checklist li::before { border-color: var(--sage); }
.checklist--2 { grid-template-columns: 1fr 1fr; gap: 12px 28px; }
@media (max-width: 680px) { .checklist--2 { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- 12. Galerie */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 14px; aspect-ratio: 1;
}
.gallery__wide { grid-column: span 2; }
.gallery__tall { grid-row: span 2; }
.gallery__tall img { aspect-ratio: auto; }
@media (max-width: 780px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__wide { grid-column: span 2; }
  .gallery__tall { grid-row: span 1; }
  .gallery__tall img { aspect-ratio: 1; }
}

/* ------------------------------------------------------------ 13. Citat */
.quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.24; letter-spacing: -.02em; font-weight: 500;
  text-wrap: balance; margin: 0;
  font-variation-settings: 'SOFT' 30, 'WONK' 1;
}
.quote--indent { border-left: 3px solid var(--clay); padding-left: clamp(20px, 3vw, 40px); }

/* ------------------------------------------------------- 14. Comparativ */
.compare { display: grid; gap: 26px; }
.compare__row { border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.compare__row:last-child { border-bottom: none; }
.compare__label { font-weight: 700; font-size: .95rem; margin-bottom: 12px; }
.compare__bars { display: grid; gap: 8px; }
.compare__bar { display: grid; grid-template-columns: 62px 1fr; align-items: center; gap: 12px; }
.compare__who { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-50); }
.compare__track { background: var(--cream-3); border-radius: 999px; height: 34px; position: relative; overflow: hidden; }
.compare__fill {
  height: 100%; border-radius: 999px;
  display: flex; align-items: center; padding-inline: 14px;
  font-size: .88rem; font-weight: 700; color: #fff; white-space: nowrap;
  width: 0; transition: width 1.1s cubic-bezier(.2,.8,.3,1);
}
.compare__fill--us    { background: var(--green); }
.compare__fill--them  { background: var(--ink-50); }
.compare__fill.is-in  { width: var(--w); }

/* --------------------------------------------------------- 15. Accordion */
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  list-style: none; cursor: pointer;
  padding: 22px 44px 22px 0; position: relative;
  font-family: var(--font-display); font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  font-weight: 600; letter-spacing: -.01em; line-height: 1.3;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: ''; position: absolute; right: 8px; top: 50%;
  width: 13px; height: 13px;
  border-right: 2px solid var(--clay); border-bottom: 2px solid var(--clay);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s;
}
.accordion details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.accordion summary:focus-visible { outline: 2px solid var(--clay); outline-offset: 4px; border-radius: 4px; }
.accordion__body { padding: 0 0 26px; max-width: 70ch; color: var(--ink-70); }

/* --------------------------------------------------------- 16. Preț/plan */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }

.plan {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 3.2vw, 40px); position: relative;
  display: flex; flex-direction: column;
}
.plan--featured { border-color: var(--green); border-width: 2px; box-shadow: var(--shadow-lg); }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--clay); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-family: var(--font-body); font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-50); margin-bottom: .9rem; }
.plan__hours { font-size: 1.05rem; font-weight: 700; color: var(--green); margin-bottom: 1.4rem; }
.plan__price {
  font-family: var(--font-display); font-size: clamp(2.6rem, 4.6vw, 3.5rem);
  font-weight: 600; line-height: 1; letter-spacing: -.03em; color: var(--ink);
  font-variation-settings: 'SOFT' 40;
}
.plan__price span { font-family: var(--font-body); font-size: .95rem; font-weight: 500; letter-spacing: 0; color: var(--ink-50); display: block; margin-top: .7em; }

/* --------------------------------------------------------- 17. Formular */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .88rem; font-weight: 700; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 14px 16px; width: 100%;
  transition: border-color .18s, box-shadow .18s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,74,54,.12);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field--row { grid-template-columns: 1fr; } }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--ink-70); line-height: 1.45; }
.consent input { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; accent-color: var(--green); }

/* ---------------------------------------------------------- 18. Contact */
.contact-lines { display: grid; gap: 22px; }
.contact-line__label { font-size: .74rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 5px; }
.contact-line__value { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; font-family: var(--font-display); letter-spacing: -.01em; }
.contact-line__value a { text-decoration: none; border-bottom: 2px solid var(--clay-soft); transition: border-color .18s; }
.contact-line__value a:hover { border-color: var(--clay); }

.map-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--cream-2);
  aspect-ratio: 16 / 10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ----------------------------------------------------------- 19. Footer */
.site-footer { background: var(--ink); color: rgba(251,247,240,.72); padding-block: clamp(56px, 7vw, 92px) 32px; }
.site-footer a { color: rgba(251,247,240,.72); text-decoration: none; transition: color .18s; }
.site-footer a:hover { color: var(--cream); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 44px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .92; }
.footer__title { font-size: .74rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--cream); margin-bottom: 16px; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .95rem; }
.footer__bottom {
  margin-top: clamp(40px, 5vw, 64px); padding-top: 26px;
  border-top: 1px solid rgba(251,247,240,.14);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: .85rem; color: rgba(251,247,240,.5);
}

/* ------------------------------------------------- 20. Sticky CTA mobil */
.mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: none; gap: 10px;
  transform: translateY(120%); transition: transform .3s cubic-bezier(.2,.8,.3,1);
}
.mobile-cta.is-visible { transform: none; }
.mobile-cta .btn { flex: 1; box-shadow: 0 8px 28px rgba(31,30,27,.28); }
.mobile-cta .btn--icon { flex: 0 0 56px; padding: 0; }
@media (max-width: 780px) { .mobile-cta { display: flex; } }

/* -------------------------------------------------- 21. Reveal la scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ------------------------------------------------------- 22. Cross-link */
.crosslink {
  border: 1.5px dashed var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--cream-2);
}
.crosslink h3 { margin-bottom: .3em; }
.crosslink p { margin: 0; color: var(--ink-70); }
