@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; border: none; background: none; }
button { cursor: pointer; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --milk:        #FDFAF6;
  --cream:       #F5EFE6;
  --peach:       #F2A98A;
  --peach-dark:  #E07D5A;
  --rose:        #C9908C;
  --rose-light:  #EDD5D3;
  --sage:        #8AAF96;
  --sage-light:  #C8DDD0;
  --lavender:    #B8AECC;
  --lavender-light: #DED9ED;
  --ink:         #2C2420;
  --ink-mid:     #5A4A44;
  --ink-soft:    #8A7A76;
  --white:       #FFFFFF;
  --shadow-xs:   0 1px 4px rgba(44,36,32,.06);
  --shadow-sm:   0 2px 12px rgba(44,36,32,.08);
  --shadow-md:   0 6px 28px rgba(44,36,32,.10);
  --shadow-lg:   0 16px 56px rgba(44,36,32,.12);
  --r-sm:        8px;
  --r-md:        16px;
  --r-lg:        24px;
  --r-xl:        40px;
  --r-pill:      999px;

  --sp-2:  clamp(4px,  .5vw,  8px);
  --sp-4:  clamp(8px,  1vw,  16px);
  --sp-6:  clamp(12px, 1.5vw, 20px);
  --sp-8:  clamp(16px, 2vw,  28px);
  --sp-12: clamp(24px, 3vw,  40px);
  --sp-16: clamp(32px, 4vw,  56px);
  --sp-24: clamp(48px, 6vw,  88px);
  --sp-32: clamp(64px, 8vw, 120px);

  --font-brand: 'Unbounded', sans-serif;
  --font-body:  'Inter', sans-serif;

  --text-xs:   clamp(.70rem,  1.1vw,  .78rem);
  --text-sm:   clamp(.82rem,  1.3vw,  .92rem);
  --text-base: clamp(.92rem,  1.5vw, 1.04rem);
  --text-lg:   clamp(1.05rem, 1.8vw, 1.20rem);
  --text-xl:   clamp(1.20rem, 2.2vw, 1.45rem);
  --text-2xl:  clamp(1.40rem, 2.8vw, 1.80rem);
  --text-3xl:  clamp(1.70rem, 3.5vw, 2.30rem);
  --text-4xl:  clamp(2.10rem, 4.5vw, 3.10rem);
  --text-5xl:  clamp(2.60rem, 6vw,   4.20rem);
  --text-hero: clamp(2.80rem, 7vw,   5.00rem);
}

/* ─── BASE ───────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--milk);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-brand);
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -.01em;
}
h1 { font-size: var(--text-hero); font-weight: 700; }
h2 { font-size: var(--text-4xl); font-weight: 600; }
h3 { font-size: var(--text-2xl); font-weight: 600; }
h4 { font-size: var(--text-xl);  font-weight: 600; }
h5 { font-size: var(--text-lg);  font-weight: 500; }

p { max-width: 66ch; }
p + p { margin-top: var(--sp-4); }

strong { font-weight: 600; }
em { font-style: italic; }

/* ─── CONTAINER ──────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

/* ─── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,250,246,.88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(201,144,140,.15);
  box-shadow: var(--shadow-xs);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  height: 68px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-brand);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo__mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(2px, 1.5vw, 6px);
}
.site-nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-mid);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  background: var(--rose-light);
  color: var(--ink);
}
.site-header__cta {
  flex-shrink: 0;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}

/* ─── MOBILE NAV ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-2);
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: rgba(253,250,246,.97);
    backdrop-filter: blur(18px);
    padding: var(--sp-6) clamp(20px,5vw,64px);
    border-bottom: 1px solid rgba(201,144,140,.15);
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open { display: flex; }
  .site-nav__link { padding: 10px 16px; font-size: var(--text-base); }
  .nav-burger { display: flex; }
  .site-header__cta { display: none; }
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-pill);
  padding: 13px 26px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--peach);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(242,169,138,.40);
}
.btn--primary:hover {
  background: var(--peach-dark);
  box-shadow: 0 8px 28px rgba(224,125,90,.40);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(44,36,32,.20);
}
.btn--outline:hover {
  border-color: var(--peach);
  color: var(--peach-dark);
  background: rgba(242,169,138,.06);
}
.btn--ghost {
  background: rgba(253,250,246,.7);
  color: var(--ink);
  border: 1.5px solid rgba(201,144,140,.25);
}
.btn--ghost:hover {
  background: var(--rose-light);
  border-color: var(--rose);
}
.btn--lg {
  font-size: var(--text-base);
  padding: 16px 34px;
}
.btn--sm {
  font-size: var(--text-xs);
  padding: 9px 18px;
}

/* ─── EYEBROW ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-light);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: var(--sp-6);
}

/* ─── SECTION SPACING ────────────────────────────────────── */
.section {
  padding-block: var(--sp-32);
}
.section--sm {
  padding-block: var(--sp-24);
}
.section--xs {
  padding-block: var(--sp-16);
}
.section--cream  { background: var(--cream); }
.section--rose   { background: var(--rose-light); }
.section--sage   { background: var(--sage-light); }
.section--lavender { background: var(--lavender-light); }
.section--ink {
  background: var(--ink);
  color: var(--milk);
}
.section--ink h2,
.section--ink h3,
.section--ink h4 { color: var(--milk); }
.section--ink p   { color: rgba(253,250,246,.75); }

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  max-width: 680px;
  margin-bottom: var(--sp-16);
}
.section-header--center {
  text-align: center;
  margin-inline: auto;
}
.section-header h2 { margin-bottom: var(--sp-6); }
.section-header .lead {
  font-size: var(--text-lg);
  color: var(--ink-mid);
  max-width: 58ch;
}
.section-header--center .lead { margin-inline: auto; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero-section {
  padding-block: clamp(72px, 10vw, 130px) clamp(56px, 8vw, 100px);
  background:
    radial-gradient(ellipse 70% 55% at 80% 30%, rgba(184,174,204,.28) 0%, transparent 70%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(138,175,150,.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 55% 5%,  rgba(242,169,138,.20) 0%, transparent 60%),
    var(--milk);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.hero-text { max-width: 580px; }
.hero-text h1 {
  margin-bottom: var(--sp-8);
  color: var(--ink);
}
.hero-text h1 span {
  color: var(--peach-dark);
  position: relative;
}
.hero-text h1 span::after {
  content: '';
  display: block;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--peach), var(--rose));
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--ink-mid);
  margin-bottom: var(--sp-12);
  max-width: 50ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}
.hero-trust {
  margin-top: var(--sp-12);
  font-size: var(--text-xs);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.hero-trust-dots {
  display: flex;
  gap: 4px;
}
.hero-trust-dots span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--peach);
  display: block;
}
.hero-trust-dots span:nth-child(2) { background: var(--rose); margin-left: -8px; }
.hero-trust-dots span:nth-child(3) { background: var(--sage); margin-left: -8px; }
.hero-trust-dots span:nth-child(4) { background: var(--lavender); margin-left: -8px; }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--lavender-light) 60%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-6);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.hero-badge__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.hero-badge2 {
  position: absolute;
  top: -16px;
  right: -12px;
  background: var(--peach);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-6);
  box-shadow: var(--shadow-md);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
  .hero-visual { order: -1; }
  .hero-img-frame { max-width: 480px; margin-inline: auto; }
  .hero-badge { left: 8px; bottom: -12px; }
  .hero-badge2 { right: 8px; top: -10px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ─── CARD GRID ──────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

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

/* ─── FEATURE CARD ───────────────────────────────────────── */
.feat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-12);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,144,140,.12);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feat-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.feat-card__icon--peach  { background: rgba(242,169,138,.18); }
.feat-card__icon--rose   { background: rgba(201,144,140,.18); }
.feat-card__icon--sage   { background: rgba(138,175,150,.18); }
.feat-card__icon--lavender { background: rgba(184,174,204,.20); }
.feat-card h4 { margin-bottom: 0; }
.feat-card p {
  color: var(--ink-mid);
  font-size: var(--text-sm);
  max-width: 100%;
}

/* ─── STATS ROW ──────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  text-align: center;
}
@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
.stat-item {}
.stat-num {
  font-family: var(--font-brand);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--peach-dark);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-2);
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--ink-mid);
  display: block;
}

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--peach-dark) 0%, var(--rose) 55%, var(--lavender) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-24) var(--sp-16);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 20%, rgba(255,255,255,.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: var(--sp-6); }
.cta-band p  { color: rgba(255,255,255,.85); margin-inline: auto; max-width: 52ch; margin-bottom: var(--sp-12); }
.cta-band .btn--white {
  background: var(--white);
  color: var(--peach-dark);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.cta-band .btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.20);
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 780px;
  margin-inline: auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid rgba(201,144,140,.15);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-8) var(--sp-8);
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.faq-question:hover { color: var(--peach-dark); }
.faq-question__arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: transform .25s, background .2s;
}
.faq-item.is-open .faq-question__arrow {
  transform: rotate(180deg);
  background: var(--peach);
  color: var(--white);
}
.faq-answer {
  display: none;
  padding: 0 var(--sp-8) var(--sp-8);
  font-size: var(--text-sm);
  color: var(--ink-mid);
  line-height: 1.7;
}
.faq-item.is-open .faq-answer { display: block; }

/* ─── GENERIC CONTENT SECTION ────────────────────────────── */
.content-block { max-width: 780px; }
.content-block--center { margin-inline: auto; text-align: center; }
.content-block h2 { margin-bottom: var(--sp-6); }
.content-block .lead {
  font-size: var(--text-lg);
  color: var(--ink-mid);
  margin-bottom: var(--sp-8);
}
.content-block p { color: var(--ink-mid); }
.content-block p + p { margin-top: var(--sp-4); }

/* ─── LOGO STRIP ─────────────────────────────────────────── */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  align-items: center;
  justify-content: center;
}
.logo-strip__item {
  font-family: var(--font-brand);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-soft);
  opacity: .6;
  letter-spacing: .05em;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-sm);
  background: rgba(44,36,32,.04);
  transition: opacity .2s;
}
.logo-strip__item:hover { opacity: 1; }

/* ─── TESTIMONIAL ────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-12);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,144,140,.12);
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}
.testimonial-card__quote {
  font-size: var(--text-lg);
  color: var(--ink);
  line-height: 1.55;
  font-style: italic;
  max-width: 100%;
}
.testimonial-card__quote::before { content: '\201C'; color: var(--peach); font-size: 2em; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--rose));
  flex-shrink: 0;
}
.testimonial-card__meta strong { display: block; font-size: var(--text-sm); color: var(--ink); }
.testimonial-card__meta span   { font-size: var(--text-xs); color: var(--ink-soft); }

/* ─── PRICING CARD ───────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-12);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,144,140,.12);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card--featured {
  background: linear-gradient(160deg, var(--peach-dark), var(--rose));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(224,125,90,.35);
}
.pricing-card--featured h4,
.pricing-card--featured p,
.pricing-card--featured .pricing-price,
.pricing-card--featured .pricing-list li { color: var(--white); }
.pricing-card--featured .pricing-list li::before { background: rgba(255,255,255,.4); }
.pricing-price {
  font-family: var(--font-brand);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.pricing-price sup { font-size: .5em; vertical-align: super; }
.pricing-price sub { font-size: var(--text-sm); font-weight: 400; color: var(--ink-soft); vertical-align: baseline; }
.pricing-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--ink-mid);
}
.pricing-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peach);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── FORM ───────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(44,36,32,.16);
  background: var(--white);
  font-size: var(--text-base);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--peach);
  box-shadow: 0 0 0 3px rgba(242,169,138,.20);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-soft); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(253,250,246,.75);
  padding-block: var(--sp-24) var(--sp-12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--sp-16);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(253,250,246,.10);
  margin-bottom: var(--sp-12);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-12); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-brand);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--milk);
  margin-bottom: var(--sp-6);
}
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(253,250,246,.55);
  max-width: 30ch;
}
.footer-brand__social {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(253,250,246,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background .2s;
  color: var(--milk);
}
.footer-social-btn:hover { background: rgba(242,169,138,.25); }
.footer-col h5 {
  font-family: var(--font-brand);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--milk);
  margin-bottom: var(--sp-6);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(253,250,246,.55);
  transition: color .2s;
}
.footer-col a:hover { color: var(--peach); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--text-xs);
  color: rgba(253,250,246,.35);
}
.footer-bottom a {
  color: rgba(253,250,246,.35);
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--peach); }

/* ─── DIVIDER ────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: rgba(44,36,32,.08);
  border: none;
  margin-block: var(--sp-16);
}

/* ─── UTILITY ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-peach   { color: var(--peach-dark); }
.text-rose    { color: var(--rose); }
.text-sage    { color: var(--sage); }
.text-muted   { color: var(--ink-soft); }
.mt-4  { margin-top: var(--sp-4); }
.mt-8  { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-8  { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: var(--sp-4); }
.gap-8 { gap: var(--sp-8); }

/* ─── SCROLL ANIMATIONS (no-JS fallback: always visible) ─── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: none;
  }
}
img,svg,video{max-width:100%;height:auto}
body{margin:0}
html{-webkit-text-size-adjust:100%}
*{box-sizing:border-box}
