/* ==========================================================================
   VELLA — brand website (2026 identity)
   Soft, lively, feminine luxury. Palette from the brand book:
     plum #523869 · purple #937EBF · orchid #C08ABE · pink #ED99BB
     rose #F8AEAF · cream #FAEBE8
   Bootstrap 5 (RTL/LTR) overlay. Class + CSS-var names preserved so every
   page (home, about, contact, privacy, terms) restyles from this one file.
   ========================================================================== */

:root {
  /* ---- Brand ---- */
  --plum:      #523869;
  --plum-2:    #4f3466;
  --purple:    #937ebf;
  --orchid:    #c08abe;
  --pink:      #ed99bb;
  --rose:      #f8aeaf;
  --cream:     #faebe8;

  /* ---- Signature gradients ---- */
  --grad:       linear-gradient(120deg, #937ebf 0%, #c08abe 48%, #ed99bb 100%);
  --grad-warm:  linear-gradient(120deg, #c08abe 0%, #ed99bb 55%, #f8aeaf 100%);
  --grad-deep:  linear-gradient(150deg, #4a3162 0%, #5f3f7f 45%, #8a5fa0 100%);
  --grad-soft:  linear-gradient(135deg, #efe6f6 0%, #f6e6f0 45%, #fce6e7 100%);

  /* ---- Legacy names kept for inline styles in the PHP templates ---- */
  --ink:           #3f2a57;                 /* dark plum: text on light + dark-section bg */
  --paper:         #fffcfb;                 /* page background */
  --paper-2:       #fbeef1;                 /* soft blush section */
  --paper-line:    #f0e4ec;                 /* hairlines */
  --text:          #574765;                 /* body copy */
  --muted:         #8d7ea3;                 /* muted copy on light */
  --muted-on-ink:  rgba(250, 235, 232, .72);/* muted copy on dark */
  --brass:         #cf7bab;                 /* accent (was gold → now rosy) */

  /* ---- Rhythm ---- */
  --space-1: .5rem;  --space-2: 1rem;  --space-3: 1.5rem;
  --space-4: 2.5rem; --space-5: 4rem;  --space-6: 6rem;

  --r-sm: 12px; --r-md: 18px; --r-lg: 26px; --r-xl: 34px; --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(82, 56, 105, .07);
  --shadow-md: 0 14px 40px rgba(82, 56, 105, .12);
  --shadow-lg: 0 30px 70px rgba(82, 56, 105, .20);
  --shadow-pink: 0 18px 44px rgba(200, 120, 175, .35);

  --serif: 'Fraunces', 'Cairo', Georgia, serif;
  --sans:  'Manrope', 'Cairo', system-ui, -apple-system, sans-serif;
}

/* Arabic uses Cairo as the primary family for both display + body */
html[lang="ar"] { --serif: 'Cairo', 'Fraunces', serif; --sans: 'Cairo', system-ui, sans-serif; }

/* -------------------------------------------------------------- Base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--ink); font-weight: 700; line-height: 1.12; margin: 0 0 .6em; }
a { color: var(--plum); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orchid); }
img { max-width: 100%; }
section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.container { max-width: 1200px; }

.serif { font-family: var(--serif); font-weight: 500; }
.mono {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--brass);
}
.dash {
  display: inline-block; width: 26px; height: 2px; border-radius: 2px;
  background: var(--grad); vertical-align: middle;
}

/* gradient text helper (applied to <em> accents in headings) */
.hero-title em, .sec-title em, .cta-title em, .chapter__title em, h1 em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ------------------------------------------------------------ Buttons --- */
.btn-ink, .btn-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 700; font-size: .98rem;
  padding: .85rem 1.6rem; border-radius: var(--r-pill);
  cursor: pointer; border: 1.5px solid transparent; transition: all .25s ease;
  text-decoration: none;
}
.btn-ink {
  background: var(--grad); color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-ink:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 22px 50px rgba(200,120,175,.45); filter: saturate(1.06); }
.btn-ink i, .btn-ink svg { transition: transform .25s ease; }
.btn-ink:hover i { transform: translateX(-3px); }
html[dir="ltr"] .btn-ink:hover i { transform: translateX(3px); }
.btn-ghost {
  background: rgba(255,255,255,.6); color: var(--plum);
  border-color: rgba(148, 126, 191, .4);
}
.btn-ghost:hover { color: var(--plum); border-color: var(--orchid); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* -------------------------------------------------------------- Header --- */
.site-header { position: sticky; top: 0; z-index: 1030; }
.navbar-vella {
  background: rgba(255, 252, 251, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--paper-line);
  padding: .55rem 0;
}
.navbar-brand { display: inline-flex; align-items: center; }
.navbar-brand .brand-logo { height: 30px; width: auto; display: block; }
.navbar-vella .nav-link {
  color: var(--plum); font-weight: 600; font-size: .96rem;
  padding: .4rem .2rem; position: relative; opacity: .85;
}
.navbar-vella .nav-link:hover { opacity: 1; color: var(--orchid); }
.navbar-vella .nav-link.active { opacity: 1; }
.navbar-vella .nav-link.active::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -2px; height: 2px;
  border-radius: 2px; background: var(--grad);
}
.lang-toggle {
  border: 1.5px solid rgba(148,126,191,.35) !important; color: var(--plum) !important;
  font-weight: 700; padding: .4rem .9rem !important; background: rgba(255,255,255,.5);
}
.lang-toggle:hover { background: var(--plum); color: #fff !important; border-color: var(--plum) !important; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23523869' stroke-width='2.2' stroke-linecap='round' d='M4 8h22M4 15h22M4 22h22'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------- Hero --- */
.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
  background: var(--grad-soft);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; z-index: 0;
}
.hero::before { width: 460px; height: 460px; background: radial-gradient(circle, var(--purple), transparent 70%); top: -140px; inset-inline-start: -100px; }
.hero::after  { width: 520px; height: 520px; background: radial-gradient(circle, var(--pink), transparent 70%); bottom: -200px; inset-inline-end: -120px; }
.hero .container { position: relative; z-index: 1; }

.hero-meta { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.4rem;
  background: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.8);
  padding: .45rem 1rem; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.hero-meta .mono { color: var(--plum); }

.hero-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.4rem, 5.6vw, 4.3rem); line-height: 1.06; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: 1.2rem;
}
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text); max-width: 30em; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* App phone mockup */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 460px; }
.app-phone {
  position: relative; width: min(300px, 78%); aspect-ratio: 300 / 610;
  background: #fff; border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.7);
  transform: rotate(-3deg); z-index: 2;
}
.app-phone__screen { height: 100%; border-radius: 34px; overflow: hidden; background: var(--paper); display: flex; flex-direction: column; }
.app-phone__top { background: var(--grad); color: #fff; padding: 1.4rem 1.1rem 1.1rem; }
.app-phone__hi { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; }
.app-phone__sub { font-size: .8rem; opacity: .9; }
.app-phone__body { padding: 1rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.app-card {
  background: #fff; border: 1px solid var(--paper-line); border-radius: var(--r-md);
  padding: .85rem; box-shadow: var(--shadow-sm);
}
.app-card__label { font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.app-card__salon { font-weight: 700; color: var(--ink); font-size: .95rem; margin-top: .2rem; }
.app-card__time { font-size: .8rem; color: var(--orchid); font-weight: 600; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.app-chip {
  border-radius: var(--r-sm); padding: .7rem .6rem; text-align: center; font-weight: 700; font-size: .82rem;
  color: var(--plum); background: var(--cream); border: 1px solid rgba(200,138,190,.25);
}
.app-chip:nth-child(1) { background: #f0e9f7; }
.app-chip:nth-child(2) { background: #f9e7f0; }
.app-chip:nth-child(3) { background: #fbe9e9; }
.app-chip:nth-child(4) { background: #efe7f5; }
.app-chip i { display: block; font-size: 1.2rem; margin-bottom: .2rem; color: var(--orchid); }

.float-badge {
  position: absolute; z-index: 3; background: #fff; border-radius: var(--r-pill);
  padding: .55rem 1rem; font-size: .82rem; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-md); display: inline-flex; align-items: center; gap: .4rem;
  border: 1px solid rgba(255,255,255,.8);
}
.float-badge--1 { top: 8%; inset-inline-start: 2%; }
.float-badge--2 { top: 40%; inset-inline-end: -2%; color: #fff; background: var(--grad); }
.float-badge--3 { bottom: 6%; inset-inline-start: 6%; }
.float-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #56c596; }

/* --------------------------------------------------------------- Stats --- */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid var(--paper-line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); overflow: hidden; margin-top: -2.5rem; position: relative; z-index: 3;
}
.stat-cell { padding: 1.7rem 1.2rem; text-align: center; border-inline-end: 1px solid var(--paper-line); }
.stat-cell:last-child { border-inline-end: 0; }
.stat-num {
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.stat-num em { -webkit-text-fill-color: var(--rose); font-style: normal; }
.stat-label { color: var(--muted); font-size: .82rem; margin-top: .4rem; font-weight: 600; }

/* --------------------------------------------------------- Section head -- */
.sec-head { max-width: 720px; margin-bottom: 2.8rem; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 800; color: var(--orchid);
}
.sec-title {
  font-family: var(--serif); font-weight: 600; letter-spacing: -.01em;
  font-size: clamp(1.9rem, 3.6vw, 3rem); color: var(--ink); margin-bottom: .8rem;
}
.sec-sub { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------------------------------------------------------- Categories --- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.bento-cell {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  min-height: 180px; padding: 1.4rem; border-radius: var(--r-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--paper-line); box-shadow: var(--shadow-sm);
  color: var(--ink); transition: transform .3s ease, box-shadow .3s ease;
}
.bento-cell::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; z-index: 0;
  background: var(--grad-soft);
}
.bento-cell:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); color: var(--ink); }
.bento-cell:hover::after { opacity: 1; }
.bento-cell > * { position: relative; z-index: 1; }
.bento-cell--med { min-height: 220px; }
.bento-cell--accent { background: var(--grad); color: #fff; border-color: transparent; }
.bento-cell--accent:hover { color: #fff; }
.bento-cell--accent .bento-num, .bento-cell--accent .bento-arrow { color: rgba(255,255,255,.85); }
.bento-num { font-family: var(--serif); font-size: 1.1rem; color: var(--orchid); font-weight: 600; }
.bento-cell__btm { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.bento-label { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; line-height: 1.2; }
.bento-arrow { font-size: 1.3rem; color: var(--orchid); transition: transform .25s ease; }
.bento-cell:hover .bento-arrow { transform: translateX(-4px); }
html[dir="ltr"] .bento-cell:hover .bento-arrow { transform: translateX(4px); }

/* ----------------------------------------------------- Dark (ink) block -- */
.section--ink {
  background: var(--grad-deep); color: var(--cream);
  border-radius: var(--r-xl); margin: 0 auto; max-width: 1240px; overflow: hidden;
}
.section--ink .sec-title, .section--ink h3 { color: #fff; }
.section--ink .sec-sub { color: var(--muted-on-ink); }
.section--ink .sec-eyebrow { color: var(--rose); }
.step-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-item { position: relative; padding-top: 1rem; }
.step-num {
  font-family: var(--serif); font-weight: 600; font-size: 3.4rem; line-height: 1;
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: .8rem;
}
.step-item h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.step-item p { color: var(--muted-on-ink); margin: 0; }

/* --------------------------------------------------------- Testimonials -- */
.quote-block { max-width: 900px; margin: 0 auto 3rem; text-align: center; }
.quote-mark { font-family: var(--serif); font-size: 4rem; line-height: .5; color: var(--orchid); }
.quote-text { font-family: var(--serif); font-weight: 500; font-size: clamp(1.4rem, 2.6vw, 2.1rem); color: var(--ink); line-height: 1.45; }
.quote-author { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.4rem; }
.quote-line { display: inline-block; width: 40px; height: 1px; background: var(--orchid); opacity: .5; }
.quote-name { font-weight: 800; color: var(--plum); }
.quote-role { color: var(--muted); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.qg-card { background: #fff; border: 1px solid var(--paper-line); border-radius: var(--r-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.qg-card .quote-mark { font-size: 2.6rem; }
.qg-card .quote-text { font-size: 1.05rem; line-height: 1.6; }

/* ---------------------------------------------------------------- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--paper-line); border-radius: var(--r-md); margin-bottom: .8rem; background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; padding: 1.15rem 1.3rem; cursor: pointer; text-align: start;
  font-family: var(--serif); font-weight: 600; font-size: 1.12rem; color: var(--ink);
}
.faq-q .icon { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream); color: var(--orchid); font-size: 1.2rem; transition: transform .25s ease, background .25s ease; }
.faq-q[aria-expanded="true"] .icon { transform: rotate(45deg); background: var(--grad); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a.is-open { max-height: 320px; }
.faq-a p { margin: 0; padding: 0 1.3rem 1.2rem; color: var(--text); }

/* --------------------------------------------------------------- CTA ----- */
.cta-band { background: var(--grad); color: #fff; text-align: center; border-radius: var(--r-xl); margin: 0 auto; max-width: 1240px; overflow: hidden; position: relative; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px circle at 20% 0%, rgba(255,255,255,.25), transparent 60%); }
.cta-band .container { position: relative; }
.cta-eyebrow { text-transform: uppercase; letter-spacing: .2em; font-weight: 800; font-size: .78rem; opacity: .9; margin-bottom: 1rem; }
.cta-title { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.4rem); color: #fff; margin-bottom: 1rem; }
.cta-title em { -webkit-text-fill-color: #fff; color: #fff; background: none; }
.cta-sub { color: rgba(255,255,255,.9); max-width: 34em; margin: 0 auto 2rem; }
.stores { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.store-pill {
  display: inline-flex; align-items: center; gap: .7rem; padding: .7rem 1.2rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); color: #fff; backdrop-filter: blur(6px);
  transition: background .2s ease, transform .2s ease;
}
.store-pill:hover { background: rgba(255,255,255,.28); color: #fff; transform: translateY(-2px); }
.store-pill svg { width: 26px; height: 26px; }
.store-pill__text { display: flex; flex-direction: column; line-height: 1.1; text-align: start; }
.store-pill__small { font-size: .66rem; opacity: .85; }
.store-pill__big { font-weight: 700; font-size: .98rem; }

/* -------------------------------------------------- Inner page headers --- */
.page-head { background: var(--grad-soft); padding: clamp(3rem,7vw,5.5rem) 0 clamp(2.5rem,5vw,4rem); overflow: hidden; }
.page-head h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem,5vw,3.6rem); }
.page-head .lead { font-size: 1.2rem; color: var(--text); max-width: 34em; }

/* -------------------------------------------------------- About chapters - */
.chapter { display: grid; grid-template-columns: 300px 1fr; gap: 2.5rem; padding: 2.5rem 0; border-bottom: 1px solid var(--paper-line); }
.chapter__num { font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 800; color: var(--orchid); margin-bottom: .8rem; }
.chapter__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem,3vw,2.3rem); }
.chapter__body p { color: var(--text); margin-bottom: 1rem; }
.chapter__body p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.6rem; }
.contact-info-blk { background: var(--grad-deep); color: var(--cream); border-radius: var(--r-lg); padding: 2.4rem; }
.contact-info-blk h2 { color: #fff; font-family: var(--serif); font-weight: 600; margin-bottom: 1.6rem; }
.contact-info-blk ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info-blk .label { text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; color: var(--rose); font-weight: 800; margin-bottom: .3rem; }
.contact-info-blk .value { color: #fff; font-size: 1.05rem; font-weight: 600; }
.socials-row { display: flex; gap: .6rem; margin-top: .4rem; }
.socials-row a, .footer-socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.12); color: #fff; font-size: 1.05rem; transition: all .2s ease;
}
.socials-row a:hover, .footer-socials a:hover { background: var(--grad-warm); color: #fff; transform: translateY(-2px); }
.contact-form-blk { background: #fff; border: 1px solid var(--paper-line); border-radius: var(--r-lg); padding: 2.4rem; box-shadow: var(--shadow-sm); }
.contact-form-blk h2 { font-family: var(--serif); font-weight: 600; margin-bottom: 1.4rem; }
.contact-form-blk form > div { margin-bottom: 1rem; }
.contact-form-blk label { font-weight: 700; font-size: .85rem; color: var(--plum); margin-bottom: .35rem; }
.contact-form-blk input, .contact-form-blk textarea {
  width: 100%; border: 1.5px solid var(--paper-line); border-radius: var(--r-sm);
  padding: .8rem 1rem; font-family: var(--sans); font-size: .98rem; color: var(--ink); background: var(--paper);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form-blk input:focus, .contact-form-blk textarea:focus {
  outline: none; border-color: var(--orchid); box-shadow: 0 0 0 4px rgba(200,138,190,.15); background: #fff;
}

/* ------------------------------------------------------------- Legal ----- */
.prose { max-width: 760px; margin: 0 auto; }
.doc-meta { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800; color: var(--orchid); margin-bottom: 1.6rem; }
.prose h2 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; margin: 2rem 0 .6rem; color: var(--ink); }
.prose p { color: var(--text); margin-bottom: 1rem; }
.prose a { color: var(--orchid); font-weight: 600; }

/* -------------------------------------------------------------- Footer --- */
.site-footer { background: var(--grad-deep); color: var(--cream); padding: clamp(3rem,6vw,4.5rem) 0 2rem; margin-top: clamp(3rem,6vw,5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(250,235,232,.14); }
.footer-mark { display: inline-flex; align-items: center; margin-bottom: 1rem; }
.footer-mark .brand-logo { height: 34px; width: auto; }
.site-footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .7rem; }
.site-footer ul a { color: var(--muted-on-ink); font-size: .95rem; }
.site-footer ul a:hover { color: #fff; }
.footer-socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; color: var(--muted-on-ink); font-size: .85rem; }
.footer-bottom .mono { color: var(--rose); }

/* -------------------------------------------------------- Scroll reveal -- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; } .reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; } .reveal-delay-4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* --------------------------------------------------------- Responsive ---- */
@media (max-width: 991.98px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .step-row, .quote-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .chapter { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .hero-visual { min-height: auto; margin-top: 2.5rem; }
  .navbar-vella { background: rgba(255,252,251,.96); }
}
@media (max-width: 575.98px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-inline-end: 0; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--paper-line); }
  .bento { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
  .app-phone { transform: none; }
}
