/* Colours and tokens */
:root{
  --navy:#0C2D42;
  --orange:#FE582A;
  --stone:#F6F6F4;
  --stone-light:#FBFBFA;
  --stone-dark:#EDEDEA;
  --purple:#685BC8;
  --purple-dark:#5749B0;
  --purple-light:#C8B4DC;
  --hero-surface:#EAE4F5;

  --brand-deep:var(--navy);
  --brand:var(--purple);
  --brand-bright:var(--purple-light);
  --brand-tint:var(--stone-dark);

  --accent:var(--orange);
  --accent-dark:#E54820;
  --accent-soft:#FDE8DF;

  --icon-well:var(--stone-light);

  --warm:var(--stone);
  --paper:#FFFFFF;
  --ink:#1E3648;
  --muted:#5C6570;
  --line:#E2E2DE;        
  --radius:18px;
  --radius-lg:28px;
  --maxw:1450px;
  --shadow:0 24px 50px -28px rgba(12,45,66,.28);
  --shadow-sm:0 10px 26px -18px rgba(12,45,66,.2);
}


/* Base reset */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:84px;background:var(--stone)}
body{font-family:'Figtree',system-ui,sans-serif;color:var(--ink);background:var(--stone);line-height:1.6;-webkit-font-smoothing:antialiased}
h1,h2,h3,h4{font-family:'Bricolage Grotesque',sans-serif;color:var(--brand-deep);line-height:1.1;font-weight:600;letter-spacing:-.01em}
h2{font-size:clamp(1.95rem,3.4vw,2.6rem)}
a{color:var(--navy);text-decoration:none}
a:hover{color:var(--purple)}
img{max-width:100%;display:block}

a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{
  outline:3px solid var(--brand-bright);outline-offset:2px;border-radius:6px
}

/* Skip link */
.skip-link{position:absolute;left:16px;top:-60px;z-index:100;background:var(--purple);color:#fff;font-weight:600;padding:.7rem 1.1rem;border-radius:10px;box-shadow:var(--shadow-sm);transition:top .2s}
.skip-link:focus{top:12px}

/* Layout */
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.section{padding:70px 0}
.section:has(.contact-grid){padding-bottom:52px}
.section.final{padding:56px 0 36px}
.section:has(.contact-grid) + .final{padding-top:48px}

/* Section headings */
.eyebrow{font-size:.8rem;font-weight:600;letter-spacing:.09em;text-transform:uppercase;color:var(--accent);display:inline-flex;align-items:center;gap:.5rem}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--accent);border-radius:2px}

.lead{font-size:1.1rem;color:var(--muted);max-width:56ch}

.head{max-width:60ch;margin-bottom:52px}
.head h2{margin:.7rem 0 .8rem}
.head.center{margin-left:auto;margin-right:auto;text-align:center}
.head.center .lead{margin-left:auto;margin-right:auto}

.u{color:var(--accent)}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:.5rem;font-family:'Figtree',sans-serif;font-weight:600;font-size:1rem;padding:6px 10px 6px 16px;border-radius:999px;border:2px solid transparent;cursor:pointer;transition:transform .15s,background .2s,box-shadow .2s,border-color .2s,color .2s;white-space:nowrap}
.btn-primary{
  --btn-icon:32px;
  --btn-icon-radius:8px;
  --btn-arrow:14px;
  gap:1rem;
  padding:6px 6px 6px 12px;
  background:var(--navy);
  color:#fff;
  border-radius:12px;
  font-weight:700;
  font-size:.9rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  box-shadow:0 8px 20px -14px rgba(12,45,66,.35);
}
.btn-primary .btn-icon{
  flex:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:var(--btn-icon);
  height:var(--btn-icon);
  border-radius:var(--btn-icon-radius);
  background:#fff;
}
.btn-primary .btn-icon::after{
  content:"";
  width:var(--btn-arrow);
  height:var(--btn-arrow);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M1.5 7H9.5' stroke='%23685BC8' stroke-width='1.85' stroke-linecap='round'/%3E%3Cpath d='M6.25 3.75L10.75 7L6.25 10.25' stroke='%23685BC8' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:var(--btn-arrow) var(--btn-arrow);
  transition:transform .2s ease;
}
.btn-primary:hover{background:#143D56;color:#fff;transform:translateY(-2px)}
.btn-primary:hover .btn-icon::after{transform:rotate(-45deg)}
.btn-lg{
  --btn-icon:36px;
  --btn-icon-radius:8px;
  --btn-arrow:16px;
  font-size:.9rem;
  padding-left:12px;
}

/* Text links */
.text-link{
  display:inline-flex;align-items:center;gap:.35rem;
  font-family:'Figtree',sans-serif;font-weight:600;font-size:1rem;
  color:var(--navy);
  text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1.5px;
  cursor:pointer;transition:color .2s;
}
.text-link:hover{color:var(--purple)}
.text-link--lg{font-size:1.05rem}
.cost .text-link,.final-panel .text-link{color:rgba(255,255,255,.82)}
.cost .text-link:hover,.final-panel .text-link:hover{color:#fff}

/* Pills and tags */
.pill{background:var(--stone-light);color:var(--brand-deep);font-weight:600;font-size:.82rem;padding:.38rem .9rem;border-radius:999px}
.pill.warm{background:var(--accent-soft);color:#C9451F}

/* Photo frames */
.frame{position:relative;aspect-ratio:1/1;border-radius:var(--radius-lg);overflow:hidden;background:linear-gradient(150deg,var(--stone-light),var(--paper) 60%,var(--stone))}
.frame::after{content:"";position:absolute;inset:0;background-image:radial-gradient(rgba(12,45,66,.06) 1.2px,transparent 1.2px);background-size:16px 16px;opacity:.6}
.frame .glyph{position:absolute;inset:0;display:grid;place-items:center;color:var(--brand);opacity:.42}
.frame .glyph svg{width:72px;height:72px}
.frame .tag{position:absolute;left:14px;bottom:14px;z-index:2;background:rgba(255,255,255,.85);color:var(--brand-deep);font-size:.72rem;font-weight:600;padding:.3rem .7rem;border-radius:999px;letter-spacing:.02em}
.frame img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:1}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  padding:.45rem clamp(1rem,3vw,1.5rem) 0;
  background:transparent;
  transition:padding .35s cubic-bezier(.22,1,.36,1);
}
html:not(.js) .site-header{
  background:rgba(246,246,244,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  padding:0;
}
.nav{
  display:flex;align-items:center;gap:1.25rem;
  padding:10px clamp(1rem,2.5vw,1.5rem);
  max-width:var(--maxw);margin:0 auto;
  transition:
    background .35s cubic-bezier(.22,1,.36,1),
    border-color .35s cubic-bezier(.22,1,.36,1),
    border-radius .35s cubic-bezier(.22,1,.36,1),
    backdrop-filter .35s cubic-bezier(.22,1,.36,1),
    box-shadow .35s cubic-bezier(.22,1,.36,1);
}
.site-header.is-scrolled{padding-top:.6rem}
.site-header.is-scrolled .nav{
  background:rgba(246,246,244,.88);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  border:1px solid var(--line);
  border-radius:999px;
  box-shadow:var(--shadow-sm);
}
.brand{display:flex;align-items:center;gap:.6rem;font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:1.22rem;color:var(--brand-deep);margin-right:auto}
.brand img{height:60px;width:auto;display:block}
.brand .mark{width:38px;height:38px;border-radius:11px;background:var(--brand);color:#fff;display:grid;place-items:center}
.brand .mark svg{width:21px;height:21px}
.nav-links{display:flex;align-items:center;gap:1.6rem;list-style:none}
.nav-links a{color:var(--brand-deep);font-weight:500;font-size:.97rem;position:relative}
.nav-links a:hover{color:var(--purple)}
.nav-right{display:flex;align-items:center;gap:1rem;margin-left:.5rem}
.nav-phone{display:inline-flex;align-items:center;gap:.45rem;font-weight:700;color:var(--brand-deep);font-size:.96rem;white-space:nowrap}
.nav-phone svg{width:17px;height:17px;color:var(--purple)}
.nav-toggle{display:none;background:none;border:0;cursor:pointer;color:var(--brand-deep);padding:4px;border-radius:8px}

/* Hero */
.hero{
  --hero-expand:0;
  --hero-bg-radius:calc(40px * (1 - var(--hero-expand)));
  --hero-bg-outset-top:0px;
  --hero-bg-outset-right:0px;
  --hero-bg-outset-bottom:0px;
  --hero-bg-outset-left:0px;
  position:relative;
  padding:.45rem 50px 0;
  margin-bottom:0;
}
.hero + .section{padding-top:56px}
.hero-shell{
  position:relative;
  max-width:var(--maxw);
  margin:0 auto;
  width:100%;
  min-height:85vh;
  padding:50px;
  overflow:visible;
}
.hero-bg{
  position:absolute;
  z-index:0;
  background:var(--hero-surface);
  border-radius:var(--hero-bg-radius);
  pointer-events:none;
  top:calc(-1 * var(--hero-bg-outset-top));
  right:calc(-1 * var(--hero-bg-outset-right));
  bottom:calc(-1 * var(--hero-bg-outset-bottom));
  left:calc(-1 * var(--hero-bg-outset-left));
}
.hero-body{position:relative;z-index:1;min-height:calc(85vh - 100px)}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  align-items:start;
  height:100%;
}
.hero-copy{align-self:start;padding-bottom:clamp(32px,4vw,44px)}
.hero h1{
  font-size:clamp(3rem,6.2vw,4.85rem);
  line-height:.92;
  margin-bottom:1.15rem;
}
.hero h1 .u{display:block;margin-top:.02em}
.hero h1 .u::after{display:none}
.hero p.lead{margin-bottom:1.75rem;max-width:46ch;color:var(--ink)}
.hero-actions{display:flex;flex-wrap:wrap;gap:.9rem 1.25rem;align-items:center}
.hero-note{
  margin-top:1.35rem;
  display:flex;align-items:flex-start;gap:.6rem;
  color:var(--muted);font-size:.95rem;max-width:42ch;
}
.hero-note svg{width:20px;height:20px;color:var(--purple);flex:none;margin-top:.12rem}
.hero-trust{
  display:inline-flex;align-items:center;gap:.75rem;
  margin-top:clamp(1.75rem,3vw,2.5rem);
  padding:.45rem .85rem .45rem .45rem;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(255,255,255,.75);
  border-radius:999px;
}
.hero-trust__avatars{display:flex;align-items:center}
.hero-trust__avatars img{
  width:40px;height:40px;border-radius:50%;object-fit:cover;
  border:2px solid var(--paper);
  margin-left:-10px;
}
.hero-trust__avatars img:first-child{margin-left:0}
.hero-trust p{font-size:.88rem;font-weight:600;color:var(--brand-deep);margin:0;white-space:nowrap}
.hero-visual{
  position:absolute;
  top:0;
  right:20px;
  bottom:0;
  width:50%;
  z-index:2;
  pointer-events:none;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  line-height:0;
}
.hero-photo{
  position:relative;z-index:1;
  display:block;
  width:100%;
  max-height:100%;
  height:auto;
  object-fit:contain;
  object-position:right bottom;
  filter:drop-shadow(0 18px 32px rgba(12,45,66,.12));
}
.hero-foot{
  position:absolute;
  left:0;right:0;
  top:100%;
  transform:translateY(-50%);
  z-index:5;
  padding:0;
  text-align:center;
  pointer-events:none;
}
.hero-foot .wrap{pointer-events:auto}
.hero-foot .values-pill{margin:0 auto}
.hero.is-expanded .hero-bg{border-radius:0}

/* Values strip */
.values{background:var(--warm);padding:10px 0 4px}
.values-pill{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:.8rem 1.8rem;width:fit-content;max-width:100%;margin:0 auto;background:var(--paper);border-radius:999px;padding:16px 34px;box-shadow:var(--shadow-sm)}
.values-pill .v{display:inline-flex;align-items:center;gap:.5rem;font-weight:600;font-size:.95rem;color:var(--brand-deep);position:relative}
.values-pill .v svg{width:19px;height:19px;color:var(--purple)}
.values-pill .v:not(:last-child)::after{content:"";position:absolute;right:-.95rem;top:50%;transform:translateY(-50%);width:5px;height:5px;border-radius:50%;background:var(--line)}
.values-cic{text-align:center;font-size:.88rem;color:var(--muted);font-weight:500;margin-top:14px}

/* Why us */
.why-grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:56px;align-items:center}
.why-visual{position:relative}
.why-visual .accent-dot{position:absolute;width:120px;height:120px;border-radius:50%;background:var(--stone-dark);opacity:.55;bottom:-30px;right:-24px;z-index:-1}
.why-copy h2{margin:.7rem 0 1rem}
.why-list{list-style:none;margin-top:1.6rem;display:grid;gap:1.1rem}
.why-list li{display:flex;gap:.9rem;align-items:flex-start}
.why-list .ic{width:44px;height:44px;flex:none;border-radius:12px;background:var(--icon-well);color:var(--purple);display:grid;place-items:center}
.why-list .ic svg{width:22px;height:22px}
.why-list strong{display:block;font-family:'Bricolage Grotesque',sans-serif;color:var(--brand-deep);font-size:1.04rem;margin-bottom:.15rem}
.why-list span{color:var(--muted);font-size:.95rem}

/* Eligibility */
.elig{background:var(--stone-dark)}
.elig-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.elig-card{background:var(--paper);border-radius:var(--radius);padding:26px 22px;transition:transform .18s,box-shadow .18s}
.elig-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-sm)}
.elig-card .ic{width:48px;height:48px;border-radius:13px;background:var(--icon-well);color:var(--purple);display:grid;place-items:center;margin-bottom:16px}
.elig-card .ic svg{width:26px;height:26px}
.elig-card h3{font-size:1.06rem;margin-bottom:.4rem}
.elig-card p{font-size:.93rem;color:var(--muted)}
.elig-foot{margin-top:36px;text-align:center;color:var(--muted)}
.elig-foot a{font-weight:600}

/* Services */
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.svc-card{background:var(--paper);border-radius:var(--radius-lg);padding:32px 28px;box-shadow:var(--shadow-sm);transition:transform .18s}
.svc-card:hover{transform:translateY(-4px)}
.svc-card .ic{width:64px;height:64px;border-radius:50%;overflow:hidden;margin-bottom:18px;flex:none;border:2px solid var(--stone-dark);box-shadow:var(--shadow-sm)}
.svc-card .ic img{width:100%;height:100%;object-fit:cover;display:block}
.svc-card h3{font-size:1.2rem;margin-bottom:.45rem}
.svc-card>p{color:var(--muted);font-size:.96rem;margin-bottom:1.1rem}
.svc-list{list-style:none;display:flex;flex-direction:column;gap:.55rem}
.svc-list li{display:flex;gap:.55rem;font-size:.93rem}
.svc-list li svg{width:17px;height:17px;color:var(--purple);flex:none;margin-top:.25rem}

/* Steps */
.steps-band{background:var(--paper);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.step{display:flex;flex-direction:column;justify-content:space-between;align-items:flex-start;min-height:220px;padding:28px 22px;background:var(--stone-light);border-radius:var(--radius)}
.step .num{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:clamp(2.75rem,4.5vw,3.75rem);line-height:1;color:var(--purple-light);margin-bottom:40px}
.step-body{margin-top:auto}
.step h3{font-size:1.05rem;margin-bottom:.4rem}
.step p{font-size:.92rem;color:var(--muted)}

/* Cost and fees */
.cost{background:linear-gradient(165deg,var(--navy),#143D56);color:#fff}
.cost .eyebrow{color:var(--accent)}
.cost .eyebrow::before{background:var(--accent)}
.cost-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center}
.cost h2{color:#fff;margin:.6rem 0 1rem}
.cost-lead p{color:rgba(255,255,255,.9);font-size:1.06rem;margin-bottom:1.4rem;max-width:50ch}
.cost-highlight{display:flex;gap:.8rem;align-items:flex-start;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.22);border-radius:16px;padding:18px 20px;margin-bottom:1.5rem}
.cost-highlight svg{width:25px;height:25px;flex:none;margin-top:.1rem;color:#fff}
.cost-highlight strong{display:block;font-family:'Bricolage Grotesque',sans-serif;font-size:1.05rem;margin-bottom:.2rem}
.cost-highlight span{color:rgba(255,255,255,.85);font-size:.95rem}
.fees{background:#fff;border-radius:var(--radius-lg);padding:30px;color:var(--ink);box-shadow:var(--shadow)}
.fees h3{font-size:1.12rem;margin-bottom:.3rem}
.fees .sub{color:var(--muted);font-size:.88rem;margin-bottom:1.1rem}
.fee-row{display:flex;justify-content:space-between;gap:1rem;padding:.8rem 0;border-bottom:1px solid var(--line)}
.fee-row:last-of-type{border-bottom:0}
.fee-row .name{font-weight:500}
.fee-row .name small{display:block;color:var(--muted);font-weight:400;font-size:.8rem}
.fee-row .price{font-family:'Bricolage Grotesque',sans-serif;font-weight:600;color:var(--brand-deep);white-space:nowrap}
.fees .vat{margin-top:1rem;font-size:.8rem;color:var(--muted)}

/* Stories */
.story-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.story{background:var(--paper);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm)}
.story .frame{border-radius:0}
.story .frame .glyph svg{width:54px;height:54px}
.story .body{padding:22px 22px 24px}
.story .stars{color:var(--purple-light);letter-spacing:2px;margin-bottom:.7rem}
.story p{color:var(--muted);font-style:italic;margin-bottom:1rem;font-size:.96rem}
.story .who strong{font-family:'Bricolage Grotesque',sans-serif;font-size:.95rem;color:var(--brand-deep)}
.story .who span{font-size:.82rem;color:var(--muted)}
.note{margin-top:30px;text-align:center}
.note span{font-size:.9rem;color:var(--muted);background:var(--stone-dark);border-radius:12px;padding:12px 18px;display:inline-block}

/* FAQ */
.faq{background:var(--stone-dark)}
.faq-wrap{max-width:780px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{width:100%;text-align:left;background:none;border:0;cursor:pointer;padding:22px 0;display:flex;justify-content:space-between;align-items:center;gap:1rem;font-family:'Bricolage Grotesque',sans-serif;font-weight:600;font-size:1.08rem;color:var(--brand-deep)}
.faq-q .chev{flex:none;width:30px;height:30px;border-radius:50%;background:#fff;color:var(--purple);display:grid;place-items:center;transition:transform .2s}
.faq-item.open .chev{transform:rotate(45deg)}
.faq-a{overflow:hidden}
.js .faq-a{max-height:0;transition:max-height .3s ease}
.faq-a p{padding:0 0 22px;color:var(--muted)}

/* Contact */
.contact-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:48px;align-items:start}
.contact-info h2{margin:.6rem 0 1rem}
.contact-info .lead{margin-bottom:1.8rem}
.info-list{list-style:none;display:flex;flex-direction:column;gap:1.1rem}
.info-list li{display:flex;gap:.9rem;align-items:flex-start}
.info-list .ic{width:46px;height:46px;flex:none;border-radius:13px;background:var(--icon-well);color:var(--purple);display:grid;place-items:center}
.info-list .ic svg{width:22px;height:22px}
.info-list strong{display:block;color:var(--brand-deep);font-family:'Bricolage Grotesque',sans-serif}
.info-list a,.info-list span{color:var(--muted)}
.info-list a:hover{color:var(--purple)}
.form{background:var(--paper);border-radius:var(--radius-lg);padding:32px;box-shadow:var(--shadow-sm)}
.form h3{font-size:1.2rem;margin-bottom:.3rem}
.form .sub{color:var(--muted);font-size:.92rem;margin-bottom:1.4rem}
.field{margin-bottom:1rem}
.field label{display:block;font-weight:600;font-size:.88rem;color:var(--brand-deep);margin-bottom:.4rem}
.field input,.field textarea{width:100%;padding:.8rem 1rem;border:1px solid var(--line);border-radius:12px;font-family:inherit;font-size:1rem;background:var(--paper);color:var(--ink)}
.field input:focus,.field textarea:focus{outline:2px solid var(--purple);border-color:transparent}
.form .btn-primary{width:100%;justify-content:center;margin-top:.3rem}
.form-status{margin-top:.8rem;font-size:.92rem;text-align:center;color:var(--brand-deep);font-weight:600}
.form-status:empty{display:none}

/* Final CTA */
.final{background:transparent}
.final-panel{
  position:relative;
  min-height:clamp(420px,52vw,560px);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.final-panel__media{position:absolute;inset:0}
.final-panel__media img{width:100%;height:100%;object-fit:cover}
.final-panel__media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to top,rgba(12,45,66,.72) 0%,rgba(12,45,66,.28) 50%,rgba(12,45,66,.12) 100%);
}
.final-panel__card{
  position:absolute;z-index:1;
  left:20px;right:20px;bottom:20px;
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,4vw,48px);align-items:center;
  background:var(--navy);
  border-radius:20px;
  padding:clamp(28px,3.5vw,44px);
  box-shadow:var(--shadow);
}
.final-panel__copy h2{
  font-size:clamp(1.55rem,2.8vw,2.15rem);
  letter-spacing:.01em;
  line-height:1.12;
  margin-bottom:.75rem;
  color:#fff;
}
.final-panel__copy p{color:rgba(255,255,255,.78);font-size:1.02rem;max-width:28ch;line-height:1.55}
.final-panel__note{font-size:.88rem;font-weight:600;color:rgba(255,255,255,.72);margin-bottom:1rem}
.final-panel__list{list-style:none;display:flex;flex-direction:column;gap:.55rem;margin-bottom:1.35rem}
.final-panel__list li{display:flex;align-items:flex-start;gap:.6rem;font-size:.94rem;color:rgba(255,255,255,.88)}
.final-panel__list li svg{
  width:20px;height:20px;flex:none;margin-top:.12rem;
  color:#fff;background:var(--purple);
  border-radius:50%;padding:3px;
}
.final-panel__actions{display:flex;flex-wrap:wrap;gap:1rem 1.5rem;align-items:center}

/* Footer */
.site-footer{background:var(--brand-deep);color:rgba(255,255,255,.8);padding:44px 0 24px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1.3fr;gap:40px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.15)}
.footer-grid h4{color:#fff;font-size:.92rem;letter-spacing:.04em;text-transform:uppercase;margin-bottom:1rem;font-family:'Figtree',sans-serif;font-weight:700}
.footer-brand .brand{color:#fff;margin-bottom:1rem}
.footer-brand .brand .mark{background:#fff;color:var(--brand-deep)}
.footer-brand p{font-size:.95rem;max-width:34ch}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.footer-links a{color:rgba(255,255,255,.8);font-size:.95rem}
.footer-links a:hover{color:#fff}
.footer-contact p{font-size:.95rem;margin-bottom:.6rem;line-height:1.5}
.footer-contact a{color:#fff;font-weight:600}
.footer-socials{display:flex;gap:.7rem;margin-top:1rem}
.footer-socials a{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.12);display:grid;place-items:center;color:#fff}
.footer-socials a:hover{background:var(--purple)}
.footer-socials svg{width:20px;height:20px}
.footer-legal{padding-top:24px;display:flex;flex-wrap:wrap;gap:.6rem 1.6rem;font-size:.82rem;color:rgba(255,255,255,.6)}
.footer-legal .regs{display:flex;flex-wrap:wrap;gap:.4rem 1.4rem}


/* Interior pages */
.nav-links a[aria-current="page"]{color:var(--purple)}
.nav-links a[aria-current="page"]::after{content:"";position:absolute;left:0;right:0;bottom:-6px;height:2px;background:var(--purple);border-radius:2px}

.page-hero{background:var(--stone-dark);padding:60px 0 56px;text-align:center}
.page-hero .eyebrow{justify-content:center}
.page-hero h1{font-size:clamp(2.1rem,4.4vw,3.05rem);margin:.7rem 0 .9rem}
.page-hero .lead{margin-left:auto;margin-right:auto}

.lede{max-width:62ch;margin:0 auto 12px;color:var(--muted);font-size:1.05rem;text-align:center}

.reassure{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1.2rem;background:var(--stone-light);border-radius:var(--radius-lg);padding:28px 32px}
.reassure div{display:flex;gap:.8rem;align-items:flex-start}
.reassure svg{width:26px;height:26px;color:var(--purple);flex:none;margin-top:.1rem}
.reassure strong{display:block;font-family:'Bricolage Grotesque',sans-serif;color:var(--brand-deep);font-size:1.1rem;margin-bottom:.15rem}
.reassure span{color:var(--muted);font-size:.95rem}
@media(max-width:560px){.reassure{padding:24px}.reassure .btn{width:100%;justify-content:center}}

/* Helpers */
.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}

/* Scroll animations */
.js .reveal{
  opacity:0;
  transform:translateY(16px);
  transition:
    opacity .65s cubic-bezier(.22,1,.36,1),
    transform .65s cubic-bezier(.22,1,.36,1);
  transition-delay:var(--reveal-delay,0ms);
}
.js .reveal.in{opacity:1;transform:none}
.js .reveal-fade{transform:none}
.js .reveal-left{transform:translateX(-24px)}
.js .reveal-right{transform:translateX(24px)}
.js .reveal-left.in,.js .reveal-right.in{transform:none}

.js .site-header{
  opacity:0;
  transform:translateY(-10px);
  transition:opacity .5s cubic-bezier(.22,1,.36,1),transform .5s cubic-bezier(.22,1,.36,1);
}
.js .site-header.in{opacity:1;transform:none}

/* Responsive */
@media(max-width:1080px){
  .nav-links{gap:1.1rem}
  .nav-phone{display:none}
}

@media(max-width:920px){
  .hero-grid,.why-grid,.cost-grid,.contact-grid{grid-template-columns:1fr;gap:40px}
  .hero-grid{
    display:block;
    height:auto;
  }
  .hero-body{min-height:0}
  .hero-copy{padding-bottom:clamp(24px,4vw,32px)}
  .hero-shell{min-height:0;display:flex;flex-direction:column}
  .hero-visual{
    position:relative;
    top:auto;
    right:auto;
    bottom:auto;
    order:-1;
    width:min(100%,380px);
    height:auto;
    min-height:0;
    margin:0 auto clamp(20px,4vw,28px);
    display:block;
  }
  .hero-photo{max-height:clamp(320px,70vw,440px);margin:0 auto}
  .hero-trust{align-items:flex-start;flex-wrap:wrap;max-width:100%}
  .hero-trust p{white-space:normal;line-height:1.35}
  .why-visual{order:-1}
  .elig-grid{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .svc-grid,.story-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:32px}
  .final-panel__card{grid-template-columns:1fr}

  .nav{flex-wrap:wrap}
  .site-header.is-scrolled .nav,.js .nav.open{border-radius:var(--radius-lg)}
  .js .nav.open{
    background:rgba(246,246,244,.96);
    backdrop-filter:blur(20px) saturate(160%);
    -webkit-backdrop-filter:blur(20px) saturate(160%);
    border:1px solid var(--line);
    box-shadow:var(--shadow-sm);
  }
  .nav-links{flex-direction:column;width:100%;align-items:flex-start;gap:1rem;padding-top:14px;border-top:1px solid var(--line);margin-top:8px}
  .nav-toggle{display:none}
  .js .nav-toggle{display:block}
  .js .nav-links{display:none}
  .js .nav.open .nav-links{display:flex}
  .nav.open .nav-phone{display:inline-flex}
  html:not(.js) .nav-phone{display:inline-flex}
}

@media(max-width:560px){
  .brand img{height:60px}
  .hero{padding:.45rem 16px 0}
  .hero-shell{padding:50px 20px}
  .hero-foot .values-pill{border-radius:24px;gap:.7rem 1.2rem;padding:18px 22px}
  .hero-foot .values-pill .v:not(:last-child)::after{display:none}
  .section{padding:64px 0}
  .hero + .section{padding-top:40px}
  .section:has(.contact-grid){padding-bottom:40px}
  .section.final{padding:48px 0 28px}
  .section:has(.contact-grid) + .final{padding-top:36px}
  .elig-grid,.steps,.story-grid{grid-template-columns:1fr}
  .values-pill{border-radius:24px;gap:.7rem 1.2rem;padding:18px 22px}
  .values-pill .v:not(:last-child)::after{display:none}
  .final-panel{min-height:480px}
  .final-panel__card{grid-template-columns:1fr;left:14px;right:14px;bottom:14px;padding:22px 20px}
  .final-panel__copy p{max-width:none}
  .hero-actions .btn{width:100%;justify-content:center}
  .hero-actions .text-link{align-self:center}
  .final-panel__actions{flex-direction:column;align-items:flex-start}
  .final-panel__actions .btn{width:100%;justify-content:center}
}

@media(prefers-reduced-motion:reduce){
  *{transition:none!important;animation:none!important}
  html{scroll-behavior:auto}
  .reveal,.site-header{opacity:1!important;transform:none!important}
}
