/* Regency Leads shared base. Approved identity, September 2026.
   Forest carries structure, gold is reserved for the crown and small accents,
   cream is the ground. Playfair Display for headings, Source Sans 3 for text. */

@font-face{font-family:"Source Sans 3";src:url("assets/source-sans-3-latin.woff2") format("woff2");font-weight:200 900;font-display:swap}
@font-face{font-family:"Playfair Display";src:url("assets/playfair-display-latin.woff2") format("woff2");font-weight:400 900;font-display:swap}

:root{
  --forest:#114944;
  --forest-hover:#0d3c38;
  --forest-deep:#0b3431;
  --forest-night:#082a27;
  --gold:#d8a455;
  --gold-text:#b4832f;
  --cream:#f6f4f1;
  --cream-deep:#efece6;
  --paper:#fcfbf9;
  --ink:#17201e;
  --muted:#586a65;
  --faint:#8a9995;
  --line:rgba(17,73,68,.16);
  --line-soft:rgba(17,73,68,.09);
  --on-dark:#f6f4f1;
  --on-dark-muted:#b6c6c1;
  --on-dark-line:rgba(246,244,241,.14);
  --serif:"Playfair Display",Georgia,"Times New Roman",serif;
  --sans:"Source Sans 3","Source Sans Pro",-apple-system,"Segoe UI",Helvetica,Arial,sans-serif;
  --r-card:14px;
  --r-control:8px;
  --shadow:0 18px 40px -20px rgba(17,73,68,.28),0 2px 6px -2px rgba(17,73,68,.08);
  --ease:cubic-bezier(.2,.7,.2,1);
  --wrap:1120px;
  color-scheme:light;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--sans);font-size:17px;line-height:1.55;color:var(--ink);background:var(--cream);-webkit-font-smoothing:antialiased;font-variant-numeric:lining-nums proportional-nums}
img{max-width:100%;display:block}
a{color:var(--forest);text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px;text-decoration-color:rgba(17,73,68,.4)}
a:hover{text-decoration-color:currentColor}
button{font:inherit;color:inherit}
::selection{background:rgba(216,164,85,.35);color:var(--ink)}
:focus-visible{outline:2px solid var(--forest);outline-offset:3px;border-radius:4px}
.dark :focus-visible,.dark:focus-visible{outline-color:var(--gold)}
[hidden]{display:none!important}

h1,h2,h3{font-family:var(--serif);font-weight:500;color:var(--forest);letter-spacing:-.012em;text-wrap:balance}
h1{font-size:clamp(38px,5vw,54px);line-height:1.08}
h2{font-size:clamp(28px,3.4vw,38px);line-height:1.15}
h3{font-size:22px;line-height:1.25}
p{max-width:62ch}
.lead{font-size:19px;color:var(--muted);line-height:1.5}
.small{font-size:14px;color:var(--muted)}
.wrap{width:min(var(--wrap),calc(100% - 48px));margin-inline:auto}

.skip-link{position:absolute;top:-80px;left:16px;background:var(--paper);color:var(--forest);padding:10px 14px;border-radius:var(--r-control);z-index:20}
.skip-link:focus{top:12px}

/* Header */
.site-header{height:76px;display:flex;align-items:center;border-bottom:1px solid var(--line-soft)}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;gap:24px}
.logo img{width:176px;height:auto}
.header-note{font-size:14px;color:var(--muted)}
.site-nav{display:flex;align-items:center;gap:28px}
.site-nav a{color:var(--muted);text-decoration:none;font-size:16px;font-weight:500;transition:color .15s var(--ease)}
.site-nav a:hover{color:var(--forest)}
.nav-actions{display:flex;align-items:center;gap:16px}
.menu-button{display:none;font:inherit;font-weight:600;background:transparent;border:1px solid var(--line);border-radius:var(--r-control);min-height:40px;padding:0 14px;cursor:pointer;color:var(--forest)}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:48px;padding:0 22px;border-radius:var(--r-control);background:var(--forest);color:var(--on-dark);font-weight:600;font-size:16px;text-decoration:none;border:0;cursor:pointer;white-space:nowrap;transition:background .15s var(--ease),transform .15s var(--ease)}
.btn:hover{background:var(--forest-hover);transform:translateY(-1px)}
.btn:active{transform:translateY(0) scale(.99)}
.btn svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.btn-small{min-height:42px;padding:0 18px;font-size:15px}
.btn-quiet{background:transparent;color:var(--forest);border:1px solid var(--line)}
.btn-quiet:hover{background:var(--paper);border-color:var(--forest)}
.btn-gold{background:var(--gold);color:var(--ink)}
.btn-gold:hover{background:#e0b066}

/* Section heads */
.section{padding:72px 0}
.section-head{max-width:640px;margin-bottom:32px}
.section-head h2{margin-bottom:10px}
.section-head p{color:var(--muted);font-size:18px}

/* FAQ */
.faq-section{padding:72px 0 80px;border-top:1px solid var(--line-soft)}
.faq-layout{display:grid;grid-template-columns:minmax(240px,4fr) minmax(0,8fr);gap:56px;align-items:start}
.faq-intro{position:sticky;top:32px}
.faq-intro h2{margin-bottom:12px}
.faq-intro p{color:var(--muted);font-size:17px;margin-bottom:22px}
.faq-nav{list-style:none;display:grid;gap:4px;border-left:1px solid var(--line)}
.faq-nav a{display:block;padding:8px 16px;color:var(--muted);text-decoration:none;font-size:16px;margin-left:-1px;border-left:2px solid transparent;transition:color .15s var(--ease),border-color .15s var(--ease)}
.faq-nav a:hover,.faq-nav a[aria-current="true"]{color:var(--forest);border-left-color:var(--forest)}
.faq-group+.faq-group{margin-top:40px}
.faq-group-title{font-family:var(--serif);font-size:20px;color:var(--forest);padding-bottom:10px;border-bottom:1px solid var(--line)}
details.faq{border-bottom:1px solid var(--line-soft)}
details.faq summary{list-style:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:20px;padding:18px 0;font-weight:600;font-size:18px;line-height:1.35;color:var(--ink);transition:color .15s var(--ease)}
details.faq summary::-webkit-details-marker{display:none}
details.faq summary:hover{color:var(--forest)}
.faq-icon{width:16px;height:16px;flex:none;stroke:var(--forest);stroke-width:1.8;stroke-linecap:round;fill:none;transition:transform .25s var(--ease)}
details.faq[open] .faq-icon{transform:rotate(45deg)}
.faq-a{padding:0 0 22px;max-width:62ch;color:var(--ink);display:grid;gap:12px}
.faq-a p{font-size:17px;line-height:1.55}
.faq-video{aspect-ratio:16/9;border-radius:var(--r-control);overflow:hidden;background:var(--forest-night);margin-bottom:6px}
.faq-video iframe{width:100%;height:100%;border:0;display:block}

/* Footer */
.site-footer{padding:56px 0 40px}
.footer-move{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:24px;align-items:center;padding:28px 32px;background:var(--paper);border-radius:var(--r-card);box-shadow:var(--shadow);margin-bottom:48px}
.footer-move h3{font-size:22px;margin-bottom:4px}
.footer-move p{color:var(--muted);font-size:16px}
.footer-move svg{width:36px;height:36px;stroke:var(--forest);fill:none;stroke-width:1.4;stroke-linecap:round;stroke-linejoin:round}
.footer-row{display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap;padding-top:24px;border-top:1px solid var(--line-soft)}
.footer-row img{width:150px;height:auto}
.footer-row p{font-size:14px;color:var(--muted)}



@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{transition:none!important;animation:none!important}
  html{scroll-behavior:auto}
}

/* Responsive (shared) */
@media (max-width:980px){
  .faq-layout{grid-template-columns:1fr;gap:32px}
  .faq-intro{position:static}
  .faq-nav{display:flex;flex-wrap:wrap;gap:8px;border:0}
  .faq-nav a{border:1px solid var(--line);border-radius:999px;padding:6px 14px;margin:0;font-size:15px}
  .faq-nav a[aria-current="true"]{border-color:var(--forest);background:var(--paper)}
}
@media (max-width:640px){
body{font-size:16px}
  .wrap{width:calc(100% - 32px)}
  .site-header{height:64px}
  .logo img{width:150px}
  .header-note{display:none}
  .btn{min-height:46px}
  .section{padding:56px 0}
  .faq-section{padding:56px 0}
  details.faq summary{font-size:17px;padding:16px 0}
  .footer-move{grid-template-columns:1fr;padding:22px}
  .footer-move svg{display:none}
}
