/* Invisalign Perth mini-site mockup - design pass 2026-09-16 (round 2), extended 2026-09-17
   (design-target rebuild below the hero + dark navy footer).
   Palette updated 2026-09-17 to match the Radiant Smiles main site (radiantsmiles.com.au):
   brand blue #025CAC and deep navy #002A7A, read from that site's own theme CSS
   (wp-content/themes/Radiant-Smiles/custom.css), not eyeballed.
   Fonts: Playfair Display (display) + Public Sans (body) + Caveat (script accent). */

:root{
  --ground:#F2F7FC; --surface:#FFFFFF; --surface-2:#FAFCFF;
  --ink:#16293F; --navy:#002A7A; --muted:#5C7185; --line:#D8E3EF;
  --accent:#025CAC; --accent-dark:#01468A; --accent-ink:#FFFFFF; --accent-soft:#E7F0FA;
  --warm:#E0526A; --warm-ink:#FFFFFF;
  --note-bg:#FFF6E4; --note-border:#DDA53A; --note-ink:#5C4413;
  --flag-bg:#FDEDEC; --flag-border:#D8654F; --flag-ink:#6B2E20;
  --radius:16px;
  --shadow:0 20px 50px -28px rgba(2,42,90,.26);
  --maxw:1080px;
  --maxw-wide:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Public Sans",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--ink);
  background:var(--ground);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
h1,h2,h3{font-family:"Playfair Display",Georgia,"Times New Roman",serif;font-weight:500;
  color:var(--navy);line-height:1.12;text-wrap:balance;margin:0 0 .45em}
h1{font-size:clamp(2rem,4vw,2.9rem)}
h2{font-size:clamp(1.5rem,2.6vw,1.9rem);margin-top:2.2em}
h3{font-family:"Public Sans",sans-serif;font-weight:700;font-size:1.08rem}
p{margin:0 0 1em}
.container{max-width:var(--maxw);margin:0 auto;padding:0 20px}

.mockup-banner{
  background:var(--note-bg);border-bottom:1px solid var(--note-border);color:var(--note-ink);
  font-size:.85rem;text-align:center;padding:9px 16px;
}
.mockup-banner strong{font-weight:700}

/* ---- shared header (item 11: larger swoosh, wider nav spacing, bigger CTA pill) ---- */
header.site-header{
  background:var(--surface);border-bottom:1px solid var(--line);
  position:sticky;top:0;z-index:30;
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:15px 40px;max-width:1320px;margin:0 auto;
  flex-wrap:wrap;gap:16px;
}
.brand{display:flex;align-items:center;gap:15px;line-height:1.1}
.brand-swoosh{flex:none;color:var(--accent)}
.brand-text{display:flex;flex-direction:column;gap:2px}
.brand-name{font-family:"Playfair Display",serif;font-weight:600;font-size:1.6rem;color:var(--navy);letter-spacing:.005em}
.brand-tagline{font-size:.66rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:var(--muted)}
nav.main-nav ul{list-style:none;display:flex;gap:32px;margin:0;padding:0;flex-wrap:wrap}
nav.main-nav a{color:var(--navy);font-weight:600;font-size:.95rem}
nav.main-nav a:hover{color:var(--accent);text-decoration:none}
.header-cta{
  display:inline-flex;align-items:center;gap:11px;
  background:var(--accent);color:var(--accent-ink)!important;
  padding:15px 30px;border-radius:999px;font-weight:700;font-size:.95rem;
  white-space:nowrap;
}
.header-cta:hover{background:var(--accent-dark);text-decoration:none}
.header-cta .arrow{display:inline-flex;transition:transform .15s ease}
.header-cta:hover .arrow{transform:translateX(2px)}

/* ---- mobile hamburger nav ---- */
.nav-toggle{
  display:none;appearance:none;background:none;border:none;color:var(--navy);
  padding:8px;margin-left:auto;cursor:pointer;order:2;
}
@media (max-width:900px){
  /* wrap, so brand+toggle share row 1 and the opened nav drops onto its own row */
  .header-inner{flex-wrap:wrap;align-items:center;padding:13px 20px}
  .brand{flex:1 1 auto;min-width:0}
  .nav-toggle{display:flex;align-items:center;justify-content:center;flex:none}
  /* collapsed state must zero padding/margin too: with box-sizing:border-box a
     max-height:0 element still floors at its own padding, leaving a visible strip */
  .main-nav,.header-cta{
    order:3;flex-basis:100%;
    max-height:0;overflow:hidden;opacity:0;
    padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border-top-width:0;border-bottom-width:0;
    transition:max-height .22s ease,opacity .18s ease,padding .22s ease,margin .22s ease;
  }
  .main-nav ul{flex-direction:column;gap:2px;padding:14px 0 4px}
  .main-nav a{display:block;padding:10px 2px;border-bottom:1px solid var(--line)}
  .header-cta{display:flex;justify-content:center}
  .site-header.nav-open .main-nav{max-height:420px;opacity:1}
  .site-header.nav-open .header-cta{
    max-height:70px;opacity:1;
    padding-top:15px;padding-bottom:15px;margin:4px 0 14px;
  }
}

/* ---- pin badge (item 9: white rounded pill) ---- */
.pin-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff;color:var(--navy);
  padding:10px 20px;border-radius:999px;
  font-size:.72rem;font-weight:700;letter-spacing:.11em;text-transform:uppercase;
  margin-bottom:20px;text-decoration:none!important;
  box-shadow:0 2px 10px -4px rgba(15,42,58,.18);
}
.pin-badge svg{flex:none;color:var(--navy)}

/* ================= HOME HERO (round 2 rebuild) ================= */
/* item 2: mint -> sky gradient that blends into the photo */
.hero{
  position:relative;overflow:hidden;
  min-height:600px;display:flex;align-items:center;
  padding:0;
  background:linear-gradient(112deg,#EEF5FD 0%,#E8F1FB 30%,#DFECFA 58%,#D5E4F8 100%);
}

/* item 1: full-bleed photo panel, right ~56%, top to bottom, no radius, no margin */
.hero-media{
  position:absolute;top:0;right:0;bottom:0;width:56%;
  z-index:0;pointer-events:none;
}
.hero-media img{
  width:100%;height:100%;object-fit:cover;object-position:62% 28%;display:block;
  -webkit-mask-image:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,.28) 7%,rgba(0,0,0,.72) 16%,rgba(0,0,0,.96) 25%,#000 34%);
  mask-image:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,.28) 7%,rgba(0,0,0,.72) 16%,rgba(0,0,0,.96) 25%,#000 34%);
}

.hero-inner{
  position:relative;z-index:2;
  width:100%;max-width:1320px;margin:0 auto;padding:36px 40px 92px;
}
.hero-content{max-width:660px}

/* item 6: bigger, tighter headline; near-black line 1, teal italic lines 2-3 */
.hero h1{
  font-size:clamp(2.1rem,4.55vw,4.05rem);
  line-height:.99;margin:0 0 2px;max-width:none;color:var(--navy);
  letter-spacing:-.004em;text-wrap:initial;
}
.hero h1 .line-1{display:block;white-space:nowrap}
.hero h1 em{font-style:italic;color:var(--accent);display:block;margin-top:1px}
/* item 6: short, thick, hand-drawn swash tucked close under line 3 */
.hero-underline{
  display:block;width:196px;height:17px;margin:8px 0 22px;
  background:no-repeat left center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 196 17'><path d='M5 11.5C38 4.5 74 2.6 112 4.4c25 1.2 48 3.8 79 8.1' fill='none' stroke='%23025CAC' stroke-width='5.4' stroke-linecap='round'/></svg>");
}
.hero p.lead{font-size:.98rem;line-height:1.6;color:#57708C;max-width:54ch;margin:0 0 26px}
.page-hero p.lead{font-size:1.05rem;color:var(--muted);max-width:52ch}

/* item 10: calendar icon + two-line label; play-button ghost button */
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap;align-items:stretch}
.btn{
  display:inline-flex;align-items:center;gap:10px;padding:13px 24px;border-radius:999px;font-weight:700;
  font-size:.92rem;cursor:pointer;border:1.5px solid transparent;
}
.btn-primary{background:var(--accent);color:var(--accent-ink)}
.btn-primary:hover{background:var(--accent-dark);text-decoration:none}
.btn-stacked{gap:14px;padding:13px 30px 13px 24px}
.btn-stacked .btn-label{display:flex;flex-direction:column;gap:1px;line-height:1.2}
.btn-stacked .btn-label span{font-size:1rem;font-weight:700;display:inline-flex;align-items:center;gap:9px}
.btn-stacked .btn-label small{font-weight:400;font-size:.76rem;opacity:.88}
.btn-ghost{background:#fff;border-color:#fff;color:var(--navy);padding:12px 30px 12px 13px;gap:14px;font-size:1rem;
  box-shadow:0 3px 14px -6px rgba(15,42,58,.22)}
.btn-ghost:hover{text-decoration:none;box-shadow:0 6px 18px -6px rgba(15,42,58,.3)}
.play-icon{
  display:inline-flex;align-items:center;justify-content:center;flex:none;
  width:36px;height:36px;border-radius:50%;background:var(--navy);color:#fff;
}
.play-icon svg{width:11px;height:13px;margin-left:2px}

/* item 8: bigger, angled script accent with a teal swoosh under it */
.hero-script{
  position:absolute;top:9%;right:5.4%;z-index:3;
  font-family:"Caveat","Playfair Display",cursive;font-size:2.7rem;line-height:1.02;
  color:var(--navy);text-align:left;transform:rotate(-7deg);
  text-shadow:0 2px 14px rgba(255,255,255,.7);
}
.hero-script .script-swoosh{
  display:block;width:150px;height:16px;margin:2px 0 0 auto;
  background:no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 16'><path d='M4 11C34 4 72 2 116 6' fill='none' stroke='%234A9BE0' stroke-width='3.4' stroke-linecap='round'/><path d='M104 2l14 4-12 6' fill='none' stroke='%234A9BE0' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* item 7: bare circular badges + text directly on the photo, no pill containers */
.hero-icon-row{
  position:absolute;top:50%;right:4.2%;transform:translateY(-38%);
  z-index:3;display:flex;flex-direction:column;gap:28px;
}
.hero-icon-item{display:flex;align-items:center;gap:16px;background:none;box-shadow:none;padding:0}
.hero-icon-item .icon-circle{
  width:56px;height:56px;border-radius:50%;flex:none;
  background:#E9F2FC;border:4px solid #fff;color:var(--accent);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 14px -6px rgba(15,42,58,.25);
}
.hero-icon-item strong{
  display:block;font-size:1.02rem;color:var(--navy);font-weight:600;line-height:1.25;
  font-family:"Public Sans",sans-serif;
  text-shadow:0 1px 3px rgba(255,255,255,.95),0 2px 12px rgba(255,255,255,.85);
}
.hero-icon-item small{
  display:block;font-size:.74rem;color:#5F7490;font-weight:600;
  text-transform:uppercase;letter-spacing:.08em;margin-top:1px;
  text-shadow:0 1px 3px rgba(255,255,255,.95),0 2px 12px rgba(255,255,255,.9);
}

/* item 3: white organic wave sweeping across the hero bottom, rising to the right */
.hero-wave{
  position:absolute;left:0;right:0;bottom:-1px;z-index:4;
  width:100%;height:auto;display:block;pointer-events:none;
}

@media (max-width:1100px){
  .hero-media{width:52%}
  .hero-script{font-size:2.1rem;right:3%}
  .hero-icon-row{right:3%;gap:20px}
  .hero-icon-item strong{font-size:.94rem}
}
@media (max-width:900px){
  /* text overlaid on the photo, same approach as desktop - not photo-then-text stacked */
  .hero{
    min-height:470px;display:flex;flex-direction:column;justify-content:center;
    background:linear-gradient(160deg,#EEF5FD 0%,#E8F1FB 46%,#DCE9FA 100%);
  }
  .hero-media{position:absolute;top:0;right:0;bottom:0;width:62%;inset:0 0 0 auto}
  .hero-media img{
    object-position:52% 16%;
    -webkit-mask-image:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,.42) 28%,rgba(0,0,0,.88) 50%,#000 68%);
    mask-image:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,.42) 28%,rgba(0,0,0,.88) 50%,#000 68%);
  }
  .hero-inner{position:relative;z-index:2;order:1;padding:26px 20px 10px;width:100%}
  .hero-content{max-width:66%}
  .hero h1{font-size:clamp(1.55rem,6.4vw,2.2rem);max-width:none}
  .hero h1 .line-1{white-space:normal}
  .hero-underline{width:140px;height:13px;margin:6px 0 16px}
  .hero p.lead{font-size:.88rem;max-width:none;margin-bottom:18px}
  .hero-ctas{flex-direction:column;align-items:stretch;gap:11px}
  .hero-ctas .btn{justify-content:center}
  .hero-script{position:absolute;top:4%;right:4%;left:auto;bottom:auto;margin:0;font-size:1.3rem;z-index:3}
  .hero-script .script-swoosh{width:96px;height:12px}
  /* icon strip sits below the copy on its own light panel, like the reference */
  .hero-icon-row{
    position:relative;order:2;transform:none;z-index:2;
    display:grid;grid-template-columns:repeat(3,1fr);gap:10px;
    margin:18px 20px 22px;padding:14px 10px;
    background:rgba(255,255,255,.92);border-radius:14px;
    box-shadow:0 6px 20px -14px rgba(15,42,58,.35);
  }
  .hero-icon-item{flex-direction:column;align-items:flex-start;gap:7px}
  .hero-icon-item .icon-circle{width:38px;height:38px;border-width:3px}
  .hero-icon-item .icon-circle svg{width:18px;height:18px}
  .hero-icon-item strong{font-size:.78rem;line-height:1.2;text-shadow:none}
  .hero-icon-item small{font-size:.62rem;letter-spacing:.06em;text-shadow:none}
  .hero-wave{display:none}
}

section{padding:48px 0}
section.alt{background:var(--accent-soft)}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:26px}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:26px}
@media (max-width:820px){
  .grid-3,.grid-2{grid-template-columns:1fr}
  /* brand and hamburger stay on one row - the nav itself collapses behind the toggle */
  .header-inner{flex-direction:row;align-items:center;padding:13px 20px}
  nav.main-nav ul{gap:12px 18px}
}

.card{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  padding:22px;box-shadow:var(--shadow);
}
.card h3{margin-top:0}
.card ul{padding-left:1.1em;color:var(--muted);font-size:.92rem}
.card ul li{margin-bottom:.4em}

.steps{list-style:none;margin:30px 0 0;padding:0;counter-reset:step}
.steps li{
  counter-increment:step;position:relative;padding:0 0 30px 56px;
}
.steps li:not(:last-child)::after{
  content:"";position:absolute;left:21px;top:44px;bottom:0;width:2px;background:var(--line);
}
.steps li::before{
  content:counter(step);position:absolute;left:0;top:0;
  width:44px;height:44px;border-radius:50%;background:var(--accent-soft);color:var(--accent);
  display:flex;align-items:center;justify-content:center;font-weight:700;
  font-family:"Playfair Display",serif;font-size:1.15rem;z-index:1;
}
.steps h3{margin-bottom:5px}
.steps p{color:var(--muted);margin-bottom:0;font-size:.94rem}

.placeholder-asset{
  border:1.5px dashed var(--line);border-radius:var(--radius);padding:26px 22px;
  text-align:center;color:var(--muted);font-size:.85rem;background:var(--surface-2);
  display:flex;flex-direction:column;align-items:center;gap:10px;
}
.placeholder-asset::before{
  content:"";width:34px;height:34px;flex:none;opacity:.55;
  background:var(--muted);
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='3' y='5' width='18' height='14' rx='2'/><circle cx='8.5' cy='10.5' r='1.5'/><path d='M21 16l-5.5-5.5a2 2 0 0 0-2.8 0L4 19'/></svg>") center/contain no-repeat;
  mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'><rect x='3' y='5' width='18' height='14' rx='2'/><circle cx='8.5' cy='10.5' r='1.5'/><path d='M21 16l-5.5-5.5a2 2 0 0 0-2.8 0L4 19'/></svg>") center/contain no-repeat;
}

.flag,.note{
  background:var(--note-bg);border:1px solid var(--note-border);border-radius:var(--radius);
  padding:18px 20px;font-size:.88rem;color:var(--note-ink);margin:20px 0;line-height:1.55;
}
.flag strong{font-weight:700}

.faq-item{border-bottom:1px solid var(--line);padding:18px 0}
.faq-item h3{margin-bottom:6px}
.faq-item p{color:var(--muted);margin-bottom:0;font-size:.93rem}

.cta-band{
  background:var(--navy);color:var(--ground);border-radius:var(--radius);
  padding:32px 30px;display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:18px;margin-top:38px;
}
.cta-band h3{color:var(--ground);margin:0 0 4px}
.cta-band p{color:var(--ground);opacity:.78;margin:0;font-size:.9rem}
.cta-band .btn-primary{background:var(--accent)}

form.consult-form{display:grid;gap:14px;max-width:520px;margin-top:22px}
form.consult-form label{font-weight:600;font-size:.86rem;color:var(--ink);display:block;margin-bottom:5px}
form.consult-form input,form.consult-form textarea,form.consult-form select{
  width:100%;padding:10px 12px;border:1px solid var(--line);border-radius:9px;font-size:.94rem;
  font-family:inherit;background:var(--surface);color:var(--ink);
}
form.consult-form input:focus,form.consult-form textarea:focus{outline:2px solid var(--accent);outline-offset:1px}
form.consult-form .consent{display:flex;align-items:flex-start;gap:8px;font-size:.84rem;color:var(--muted)}
form.consult-form .consent input{width:auto;margin-top:3px}

/* ---- item 4: trust bar on white, circular mint badges, divider rules ---- */
.trust-bar{background:#fff}
.home-trust-bar{margin-top:-2px}
.trust-bar-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;
  padding:26px 40px 30px;max-width:1440px;margin:0 auto;
}
.trust-bar-item{display:flex;align-items:center;gap:14px;padding:2px 16px}
.trust-bar-item + .trust-bar-item{border-left:1px solid #E3EAF5}
.trust-bar-item .icon-circle{
  width:54px;height:54px;border-radius:50%;background:#E7F0FA;color:var(--accent);
  display:flex;align-items:center;justify-content:center;flex:none;
}
.trust-bar-item strong{display:block;font-size:.88rem;white-space:nowrap;color:var(--navy);font-weight:600;line-height:1.3;
  font-family:"Public Sans",sans-serif}
.trust-bar-item span{display:block;font-size:.73rem;color:#7D8FA8;font-weight:600;
  text-transform:uppercase;letter-spacing:.08em;margin-top:2px}
@media (max-width:1100px){
  .trust-bar-item{padding:2px 16px;gap:12px}
  .trust-bar-item strong{font-size:.9rem}
}
@media (max-width:900px){
  .trust-bar-grid{grid-template-columns:1fr 1fr;gap:20px 0;padding:22px 20px}
  .trust-bar-item:nth-child(3){border-left:none}
}
@media (max-width:560px){
  .trust-bar-grid{grid-template-columns:1fr}
  .trust-bar-item + .trust-bar-item{border-left:none}
}

.page-hero{position:relative;padding:48px 0 6px}
.page-hero::before{
  content:"";position:absolute;top:-30px;left:-120px;width:320px;height:320px;border-radius:50%;
  border:1.5px solid var(--accent);opacity:.1;z-index:-1;
}
.page-hero .eyebrow{
  display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.13em;
  text-transform:uppercase;color:var(--accent);margin-bottom:14px;
}
.eyebrow{
  display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.13em;
  text-transform:uppercase;color:var(--accent);margin-bottom:10px;
}

/* ================= 2026-09-17 design-target rebuild: below-the-hero home sections ================= */

/* ---- "How Invisalign works" journey teaser ---- */
.journey-teaser{background:var(--accent-soft)}
.journey-teaser-grid{display:grid;grid-template-columns:280px 1fr;gap:52px;align-items:center}
.journey-photo{position:relative;max-width:280px}
.journey-photo img{
  display:block;width:100%;height:auto;max-width:220px;border-radius:18px;
  box-shadow:var(--shadow);
}
.journey-script{
  position:absolute;top:-14px;right:-8px;z-index:2;
  font-family:"Caveat","Playfair Display",cursive;font-size:1.5rem;line-height:1.05;
  color:var(--navy);transform:rotate(6deg);text-align:left;
}
.journey-script .script-swoosh{
  display:block;width:74px;height:14px;margin:2px 0 0 8px;
  background:no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 74 14'><path d='M3 5c14 8 34 8 50 2' fill='none' stroke='%234A9BE0' stroke-width='3' stroke-linecap='round'/><path d='M46 4l9 2-6 6' fill='none' stroke='%234A9BE0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.journey-content h2{margin-top:0}
.mini-steps{list-style:none;margin:26px 0;padding:0;display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.mini-steps li{display:flex;flex-direction:column;gap:10px}
.mini-steps .icon-circle{
  width:44px;height:44px;border-radius:50%;background:var(--accent);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:700;
  font-family:"Playfair Display",serif;font-size:1.1rem;flex:none;
}
.mini-steps h3{margin:0 0 2px;font-size:1rem}
.mini-steps p{margin:0;color:var(--muted);font-size:.88rem}
@media (max-width:900px){
  .journey-teaser-grid{grid-template-columns:1fr;gap:28px}
  .journey-photo{max-width:200px;margin:0 auto}
  .mini-steps{grid-template-columns:1fr}
}

/* ---- "Am I a candidate?" photo-led cards ---- */
.candidate-section{text-align:center}
.candidate-section .container > p.lead{max-width:60ch;margin-left:auto;margin-right:auto}
.candidate-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-top:30px;text-align:left;
}
.candidate-card{
  background:var(--surface);border-radius:var(--radius);overflow:hidden;
  border:1px solid var(--line);box-shadow:var(--shadow);
}
.candidate-card img{display:block;width:100%;height:120px;object-fit:cover}
.candidate-card-body{padding:14px 16px 18px}
.candidate-card h3{margin:0 0 4px;font-size:.98rem}
.candidate-card p{margin:0;color:var(--muted);font-size:.84rem}
.candidate-cta{margin-top:30px;text-align:center}
@media (max-width:900px){
  .candidate-grid{grid-template-columns:1fr}
  .candidate-card{display:flex;align-items:center}
  .candidate-card img{width:88px;height:88px;flex:none}
  .candidate-card-body{padding:10px 16px}
}
@media (min-width:901px) and (max-width:1180px){
  .candidate-grid{grid-template-columns:repeat(3,1fr)}
}

/* ---- pending-real-asset band (relocated placeholder, same convention as before) ---- */
.pending-asset-section{background:var(--surface-2)}

/* ---- payment plans teaser ---- */
.payment-teaser-icons{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:28px 0}
.payment-teaser-icons .card{text-align:left;display:flex;gap:14px;align-items:flex-start}
.payment-teaser-icons .icon-circle{
  width:46px;height:46px;border-radius:50%;background:var(--accent-soft);color:var(--accent);
  display:flex;align-items:center;justify-content:center;flex:none;
}
.payment-teaser-icons h3{margin:0 0 4px;font-size:.96rem}
.payment-teaser-icons p{margin:0;color:var(--muted);font-size:.86rem}
@media (max-width:820px){.payment-teaser-icons{grid-template-columns:1fr}}

/* ---- FAQ accordion (faqs.html + home teaser) ---- */
.faq-accordion{margin-top:26px}
.faq-accordion-item{border-bottom:1px solid var(--line)}
.faq-toggle{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  background:none;border:none;cursor:pointer;text-align:left;
  padding:18px 4px;font-family:inherit;font-size:1rem;font-weight:700;color:var(--navy);
}
.faq-toggle:hover{color:var(--accent)}
.faq-icon{
  position:relative;flex:none;width:26px;height:26px;border-radius:50%;
  background:var(--accent-soft);color:var(--accent);
}
.faq-icon::before,.faq-icon::after{
  content:"";position:absolute;left:50%;top:50%;background:currentColor;
  transform:translate(-50%,-50%);transition:transform .18s ease,opacity .18s ease;
}
.faq-icon::before{width:11px;height:2px}
.faq-icon::after{width:2px;height:11px}
.faq-toggle[aria-expanded="true"] .faq-icon::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0}
.faq-panel{overflow:hidden;transition:max-height .22s ease}
.faq-panel.js-collapsed{max-height:0}
.faq-panel p{margin:0 4px 18px;color:var(--muted);font-size:.93rem;max-width:70ch}
.faq-teaser-link{margin-top:22px}

/* ---- bottom CTA banner (full-bleed photo + white overlay card) ---- */
.cta-banner{position:relative;overflow:hidden;padding:0;min-height:360px;display:flex;align-items:center}
.cta-banner-img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:82% 30%;z-index:0;
}
.cta-banner::after{
  content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(100deg,rgba(15,42,58,.32) 0%,rgba(15,42,58,.08) 45%,rgba(15,42,58,.32) 100%);
}
.cta-banner-inner{position:relative;z-index:2;width:100%;max-width:var(--maxw-wide);margin:0 auto;
  padding:56px 20px;display:flex;justify-content:center}
.cta-card{
  background:#fff;border-radius:var(--radius);box-shadow:0 30px 60px -20px rgba(15,42,58,.4);
  padding:36px 40px;max-width:460px;text-align:center;
}
.cta-card .eyebrow{margin-bottom:8px}
.cta-card h2{margin:0 0 10px}
.cta-card p{color:var(--muted);margin:0 0 22px}
.cta-script{
  position:absolute;z-index:2;top:8%;left:6%;
  font-family:"Caveat","Playfair Display",cursive;font-size:1.9rem;line-height:1.05;color:#fff;
  text-shadow:0 2px 10px rgba(15,42,58,.35);transform:rotate(-4deg);
}
@media (max-width:640px){
  .cta-banner{min-height:0}
  .cta-banner-inner{padding:40px 16px}
  .cta-card{padding:26px 22px}
  .cta-script{display:none}
}

/* ================= dark navy footer (2026-09-17 design-target rebuild) ================= */
footer.site-footer{
  background:var(--navy);border-top:none;color:#BCCAE0;
  padding:52px 0 0;margin-top:0;font-size:.88rem;
}
footer.site-footer .footer-top{
  display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:36px;padding-bottom:38px;
}
footer.site-footer .footer-brand .brand-name{color:#fff}
footer.site-footer .footer-brand .brand-swoosh{color:#7FB2E6}
footer.site-footer .footer-brand .brand-tagline{color:#93A7C4}
footer.site-footer .footer-brand p{margin:16px 0 18px;max-width:34ch;font-size:.87rem}
.footer-social{display:flex;gap:10px}
.social-icon{
  width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.08);
  display:inline-flex;align-items:center;justify-content:center;color:#fff;cursor:default;
}
footer.site-footer h4{color:#fff;font-size:.8rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.05em;margin:0 0 14px;font-family:"Public Sans",sans-serif}
footer.site-footer ul{list-style:none;margin:0;padding:0}
footer.site-footer li{margin-bottom:10px}
footer.site-footer a{color:#BCCAE0}
footer.site-footer a:hover{color:#fff}
footer.site-footer .footer-contact-pending{
  border:1.5px dashed rgba(255,255,255,.28);border-radius:12px;padding:14px 16px;
  font-size:.8rem;color:#93A7C4;line-height:1.55;background:rgba(255,255,255,.04);
}
footer.site-footer .footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);padding:18px 0 26px;
  font-size:.78rem;color:#93A7C4;
}
@media (max-width:820px){
  footer.site-footer .footer-top{grid-template-columns:1fr;gap:28px}
}
