/* ==========================================================
   The Perfect Solution — site styles
   Mobile-first. Edit brand colors in :root below.
   ========================================================== */

:root {
  --espresso: #4B342A;
  --mocha: #806451;
  --caramel: #B88B68;
  --nude: #D8BFAE;
  --cream: #F8F1E8;
  --gold: #C2A46D;
  --gold-dark: #9E8352;   /* darker gold for accessible text/borders */
  --gold-light: #E3CD9A;
  --deep: #241812;        /* near-black espresso for premium dark sections */
  --gold-grad: linear-gradient(135deg, #E3CD9A 0%, #C2A46D 45%, #A98A52 100%);
  --white: #FFFDFB;
  --ink: #2E1F19;         /* body text */
  --muted: #6B5548;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 28px rgba(75, 52, 42, 0.10);
  --gutter: 20px;
  --max: 1120px;
  --tap: 48px; /* minimum tap target */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--espresso); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--espresso); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 7.5vw, 3.7rem); letter-spacing: -.01em; }
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--gold-dark); }
h2 { font-size: clamp(1.8rem, 5.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 4.2vw, 1.6rem); }
p { margin: 0 0 1em; }
.lead { font-size: 1.1rem; color: var(--muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: .75rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.center .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--gold); }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 56px 0; }
.section--tight { padding: 36px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--nude { background: var(--nude); }
.section--espresso { background: var(--espresso); color: var(--cream); }
.section--deep {
  background:
    radial-gradient(800px 420px at 90% 0%, rgba(194,164,109,.16), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(128,100,81,.35), transparent 60%),
    var(--deep);
  color: var(--nude);
}
.section--deep h1, .section--deep h2, .section--deep h3 { color: var(--cream); }
.section--deep .eyebrow { color: var(--gold); }
.section--deep .lead { color: var(--nude); }
.section--deep .card { background: rgba(255,253,251,.04); border-color: rgba(194,164,109,.28); color: var(--nude); box-shadow: none; }
.section--deep .card h3 { color: var(--cream); }
.section--deep .card__icon { background: var(--gold-grad); color: var(--deep); }
.section--deep .check-list li::before { background: var(--gold); }
.section--deep .promise { color: var(--cream); border-color: var(--gold); }
.section--deep .steps li { background: rgba(255,253,251,.04); border-color: rgba(194,164,109,.28); }
.section--deep .steps h3 { color: var(--cream); }
.section--deep .steps p { color: var(--nude); }
.section--deep .steps li::before { background: var(--gold-grad); color: var(--deep); }
.section--deep .trust div { background: transparent; border-color: rgba(194,164,109,.3); }
.section--deep .trust strong { color: var(--gold-light); }
.section--deep .trust span { color: var(--nude); }
.section--deep a:not(.btn) { color: var(--gold-light); }

/* gold ornament under centered headings */
.ornament { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0 auto 1.25rem; }
.ornament::before, .ornament::after { content: ""; width: 48px; height: 1px; background: var(--gold); }
.ornament span { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); display: block; }

/* luxury image panels: shows the photo when present, gold-toned panel until then */
.lux-img {
  position: relative; margin: 0; overflow: hidden; border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255,255,255,.35), transparent 40%),
    radial-gradient(500px 300px at 80% 20%, rgba(227,205,154,.9), transparent 60%),
    linear-gradient(135deg, #D8BFAE 0%, #B88B68 60%, #806451 100%);
  aspect-ratio: 16 / 10; box-shadow: 0 20px 50px rgba(36,24,18,.25);
}
.lux-img--wide { aspect-ratio: 16 / 10; }
.lux-img--square { aspect-ratio: 1; }
.lux-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.lux-img::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(194,164,109,.7); border-radius: calc(var(--radius) - 8px); pointer-events: none; }
.lux-img figcaption {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2;
  color: var(--cream); font-family: var(--font-display); font-size: 1.25rem; line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.lux-img figcaption small { display: block; font-family: var(--font-body); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.lux-img--photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 45%, rgba(36,24,18,.75) 100%); }

/* gold-framed portrait */
.portrait { position: relative; margin: 0; }
.portrait img { border-radius: var(--radius); box-shadow: 0 24px 60px rgba(36,24,18,.45); width: 100%; }
.portrait::before { content: ""; position: absolute; inset: -12px -12px 12px 12px; border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.portrait::after { content: ""; position: absolute; right: -8px; bottom: -8px; width: 44%; height: 44%; background: var(--gold-grad); border-radius: var(--radius); z-index: -2; opacity: .9; }
.portrait__badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  background: rgba(36,24,18,.85); backdrop-filter: blur(6px); color: var(--cream);
  border: 1px solid rgba(194,164,109,.6); border-radius: 12px; padding: 10px 14px; font-size: .85rem; line-height: 1.3;
}
.portrait__badge strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-light); }

/* stat band */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stats div { padding: 18px 12px; text-align: center; border: 1px solid rgba(194,164,109,.35); border-radius: var(--radius-sm); }
.stats strong { display: block; font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--gold-light); margin-bottom: 6px; }
.stats span { font-size: .85rem; color: var(--nude); }

.section--deep .pill-list li { background: transparent; border-color: rgba(194,164,109,.5); color: var(--cream); }
.section--deep .divider { background: rgba(194,164,109,.3); }
.section--deep .btn--outline { color: var(--cream); border-color: var(--gold); }
.section--deep .btn--outline:hover { background: var(--gold); color: var(--deep); }
.section--espresso h2, .section--espresso h3 { color: var(--cream); }
.section--espresso .eyebrow { color: var(--gold); }
.center { text-align: center; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 1000;
  background: var(--espresso); color: var(--cream); padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: var(--tap); padding: 12px 22px;
  border-radius: 999px; border: 2px solid transparent;
  font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  width: 100%;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary { background: var(--espresso); color: var(--cream); }
.btn--primary:hover { background: var(--mocha); }
.btn--gold { background: var(--gold-grad); color: var(--deep); box-shadow: 0 8px 24px rgba(194,164,109,.35); }
.btn--gold:hover { filter: brightness(1.06); }
.btn--outline { background: transparent; color: var(--espresso); border-color: var(--espresso); }
.btn--outline:hover { background: var(--espresso); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--espresso); }
.btn--light:hover { background: var(--nude); }
.btn-row { display: flex; flex-direction: column; gap: 12px; margin-top: 1.5rem; }
:focus-visible { outline: 3px solid var(--gold-dark); outline-offset: 3px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 241, 232, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(194,164,109,.45);
}
.site-header .brand__text { color: var(--espresso); }
.site-header .brand__text small { color: var(--gold-dark); }
.site-header .nav-toggle { color: var(--espresso); }
.nav-actions { display: none; align-items: center; gap: 10px; }
.btn--portal { border-color: var(--espresso); color: var(--espresso); background: transparent; }
.btn--portal:hover { background: var(--espresso); color: var(--cream); }
.site-header .nav-desktop-cta { background: var(--gold-grad); color: var(--deep); width: auto; }
.site-header .nav-desktop-cta:hover { filter: brightness(1.06); }
.nav-bar { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; min-height: var(--tap); }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__text { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--espresso); line-height: 1.05; }
.brand__text small { display: block; font-family: var(--font-body); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-top: 3px; }

.nav-toggle {
  width: var(--tap); height: var(--tap); border: 0; background: transparent; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: var(--espresso);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 24px; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--cream);
  border-bottom: 1px solid rgba(194,164,109,.45);
  box-shadow: var(--shadow);
  padding: 8px var(--gutter) 20px;
}
.nav-menu.is-open { display: block; }
.nav-menu ul { list-style: none; margin: 0; padding: 0; }
.nav-menu li a {
  display: flex; align-items: center; min-height: 52px; padding: 0 6px;
  text-decoration: none; font-weight: 500; color: var(--espresso);
  border-bottom: 1px solid rgba(194,164,109,.3);
}
.nav-menu li a[aria-current="page"] { color: var(--gold-dark); font-weight: 600; }
.nav-menu .nav-cta { margin-top: 14px; background: var(--gold-grad); color: var(--deep); }
.nav-menu .nav-portal { margin-top: 10px; }
.nav-menu .nav-contact { display: flex; gap: 10px; margin-top: 14px; }
.nav-menu .nav-contact a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: var(--tap); border: 1px solid rgba(194,164,109,.6); border-radius: 999px; text-decoration: none; color: var(--espresso); font-weight: 500; font-size: .95rem; }
.nav-menu .nav-contact svg { width: 18px; height: 18px; color: var(--gold-dark); }
.nav-desktop-cta { display: inline-flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 48px 0 0;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(216,191,174,.55), transparent 60%),
    var(--cream);
  color: var(--ink);
}
.hero h1 { color: var(--espresso); margin-bottom: .5em; }
.hero h1 em { color: var(--gold-dark); }
.hero .eyebrow { color: var(--gold-dark); }
.hero .lead { font-size: 1.15rem; color: var(--muted); }
.hero__note { display: flex; gap: 10px; align-items: flex-start; margin-top: 1.5rem; font-size: .95rem; color: var(--muted); }
.hero__note svg { flex: none; width: 22px; height: 22px; margin-top: 2px; color: var(--gold-dark); }
.hero .btn--outline { color: var(--espresso); border-color: var(--espresso); }
.hero__art { position: relative; margin: 44px 0 0; padding: 36px 24px 44px; }
.hero__art::before {
  content: ""; position: absolute; inset: 0 calc(-1 * var(--gutter)); z-index: 0;
  background:
    radial-gradient(600px 360px at 100% 0%, rgba(194,164,109,.25), transparent 60%),
    var(--deep);
}
.hero__art .portrait { position: relative; z-index: 1; max-width: 400px; margin: 0 auto 8px; }
.hero__art .portrait::after { right: -6px; bottom: -6px; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.card {
  background: var(--white);
  border: 1px solid rgba(75, 52, 42, .10);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 2px 10px rgba(75, 52, 42, .05);
}
.card h3 { margin-top: .35rem; }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--nude); color: var(--espresso);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.card__icon svg { width: 24px; height: 24px; }
.card p:last-child { margin-bottom: 0; }
.card--link { text-decoration: none; color: inherit; display: block; }
.card--link:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.card .more { color: var(--gold-dark); font-weight: 600; }

/* ---------- Pills / lists ---------- */
.pill-list { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list li {
  background: var(--white); border: 1px solid var(--nude); color: var(--espresso);
  padding: 9px 14px; border-radius: 999px; font-size: .95rem;
}
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li { position: relative; padding-left: 32px; margin-bottom: 12px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/70% no-repeat, linear-gradient(#000 0 0);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/70% no-repeat, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.section--espresso .check-list li::before { background: var(--gold); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 16px; }
.steps li { position: relative; padding: 20px 20px 20px 70px; background: var(--white); border-radius: var(--radius); border: 1px solid rgba(75, 52, 42, .10); }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 18px; top: 18px; width: 38px; height: 38px; border-radius: 50%;
  background: var(--espresso); color: var(--gold);
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.steps h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.steps p { margin: 0; color: var(--muted); }

/* ---------- Quote / promise ---------- */
.promise {
  border-left: 4px solid var(--gold);
  padding: 6px 0 6px 20px; margin: 1.5rem 0;
  font-family: var(--font-display); font-size: 1.45rem; line-height: 1.35; color: var(--espresso);
}
.section--espresso .promise { color: var(--cream); }

/* ---------- FAQ ---------- */
.faq details { background: var(--white); border: 1px solid rgba(75, 52, 42, .10); border-radius: var(--radius-sm); margin-bottom: 12px; }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 52px 18px 20px; min-height: var(--tap);
  font-weight: 600; color: var(--espresso); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--nude); color: var(--espresso);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 20px 18px; color: var(--muted); }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.form label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 6px; color: var(--espresso); }
.form .hint { display: block; font-weight: 400; color: var(--muted); font-size: .85rem; }
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form select, .form textarea {
  width: 100%; font: inherit; font-size: 16px; /* 16px prevents iOS zoom */
  padding: 13px 14px; min-height: var(--tap);
  border: 1.5px solid var(--nude); border-radius: var(--radius-sm); background: var(--white); color: var(--ink);
}
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--gold-dark); outline: 3px solid rgba(194, 164, 109, .35); outline-offset: 0; }
.form fieldset { border: 0; padding: 0; margin: 0; }
.form legend { font-weight: 600; color: var(--espresso); margin-bottom: 8px; padding: 0; }
.form .choice { display: flex; align-items: center; gap: 12px; min-height: var(--tap); padding: 6px 0; font-weight: 400; }
.form .choice input { width: 22px; height: 22px; accent-color: var(--espresso); flex: none; }
.form { min-width: 0; }
.form .fine a { display: inline-block; padding: 11px 0; }
.form .fine { font-size: .85rem; color: var(--muted); }
.hidden-field { position: absolute; left: -9999px; }

/* ---------- Contact block ---------- */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.contact-list a {
  overflow-wrap: anywhere; min-width: 0;
  display: flex; align-items: center; gap: 14px; min-height: 56px;
  background: var(--white); border: 1px solid rgba(75, 52, 42, .10); border-radius: var(--radius-sm);
  padding: 10px 16px; text-decoration: none; color: var(--espresso); font-weight: 500;
}
.contact-list svg { width: 22px; height: 22px; color: var(--gold-dark); flex: none; }
.contact-list a:hover { border-color: var(--gold); }

/* ---------- Trust bar ---------- */
.trust { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.trust div { text-align: center; padding: 16px 8px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid rgba(75, 52, 42, .08); }
.trust strong { display: block; font-family: var(--font-display); font-size: 1.35rem; color: var(--espresso); }
.trust span { font-size: .85rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); border-top: 1px solid rgba(194,164,109,.35); color: var(--nude); padding: 48px 0 120px; font-size: .95rem; }
.site-footer a { color: var(--cream); overflow-wrap: anywhere; }
.site-footer .brand__text { color: var(--cream); }
.site-footer .brand__text small { color: var(--gold); }
.footer-grid { display: grid; gap: 28px; }
.footer-grid h4 { color: var(--gold); font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li a { display: inline-flex; align-items: center; min-height: 40px; text-decoration: none; }
.footer-grid li a:hover { color: var(--gold); }
.social { display: flex; gap: 10px; flex-wrap: wrap; }
.social a { width: var(--tap); height: var(--tap); border-radius: 50%; border: 1px solid rgba(248, 241, 232, .25); display: inline-flex; align-items: center; justify-content: center; }
.social a:hover { background: var(--mocha); }
.social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(248, 241, 232, .15); margin-top: 32px; padding-top: 20px; font-size: .85rem; color: var(--nude); }
.footer-bottom p { margin-bottom: .5em; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(36, 24, 18, .94); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(194,164,109,.4);
  display: flex; gap: 10px;
}
.sticky-cta .btn { width: auto; padding-left: 14px; padding-right: 14px; white-space: nowrap; font-size: .95rem; }
.sticky-cta .btn--primary { flex: 1 1 auto; }
.sticky-cta .btn--primary { background: var(--gold-grad); color: var(--deep); }
.sticky-cta .btn--outline { flex: 0 0 auto; color: var(--cream); border-color: var(--gold); }
.sticky-cta .btn--outline svg { width: 22px; height: 22px; }

.lux-grid { display: grid; gap: 18px; }

/* ---------- Portal callout ---------- */
.portal-box { display: flex; gap: 14px; align-items: flex-start; background: var(--deep); color: var(--nude); border: 1px solid rgba(194,164,109,.5); border-radius: var(--radius); padding: 20px; }
.portal-box svg { width: 26px; height: 26px; color: var(--gold); flex: none; margin-top: 2px; }
.portal-box strong { display: block; color: var(--cream); font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 4px; }
.portal-box p { margin: 0 0 12px; font-size: .95rem; }
.portal-box .btn { width: auto; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1.5rem; }
.split > * + * { margin-top: 36px; }
.divider { height: 1px; background: rgba(75, 52, 42, .12); margin: 32px 0; }
.notice { background: var(--white); border: 1px solid var(--nude); border-radius: var(--radius-sm); padding: 16px 18px; font-size: .95rem; color: var(--muted); }
.page-title { padding: 48px 0 24px; }
.page-title h1 { margin-bottom: .3em; }

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

/* ==========================================================
   Tablet (≥ 640px)
   ========================================================== */
@media (min-width: 640px) {
  :root { --gutter: 28px; }
  .btn { width: auto; }
  .btn-row { flex-direction: row; flex-wrap: wrap; }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(4, 1fr); }
  .lux-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
}

/* ==========================================================
   Desktop (≥ 960px)
   ========================================================== */
@media (min-width: 960px) {
  .hero .container, .container { max-width: var(--max); }
  :root { --gutter: 32px; }
  body { font-size: 18px; }
  .nav-toggle { display: none; }
  .nav-menu {
    display: block; position: static; background: transparent; border: 0; box-shadow: none; padding: 0;
  }
  .nav-menu ul { display: flex; gap: 4px; align-items: center; }
  .nav-menu li a { border: 0; min-height: var(--tap); padding: 0 14px; border-radius: 999px; white-space: nowrap; }
  .nav-menu { order: 2; margin-left: auto; }
  .nav-desktop-cta { white-space: nowrap; }
  .btn--portal { white-space: nowrap; }
  .brand__text small { white-space: nowrap; }
  .nav-menu li a:hover { background: rgba(194,164,109,.18); }
  .nav-menu .nav-cta, .nav-menu .nav-portal, .nav-menu .nav-contact { display: none; }
  .nav-desktop-cta { display: inline-flex; }
  .hero { padding: 0; }
  .hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
  .hero__text { padding: 96px 0 104px; }
  .hero__art { margin: 0; padding: 72px 0 72px 48px; align-self: stretch; display: flex; align-items: center; }
  .hero__art::before { inset: 0 -100vw 0 0; }
  .hero__art .portrait { max-width: 400px; margin: 0; width: 100%; }
  .nav-actions { display: inline-flex; order: 3; gap: 8px; }
  .nav-bar { gap: 8px; }
  .nav-menu li a { padding: 0 10px; font-size: .95rem; }
  .nav-menu { margin-left: 4px; }
  .site-header .btn { padding-left: 14px; padding-right: 14px; font-size: .92rem; }
  .site-header .brand__text small { display: none; }
  .site-header .brand__text { white-space: nowrap; font-size: 1.1rem; }
  .nav-menu li:first-child { display: none; } /* logo is the Home link on desktop */
  .btn--portal__long { display: none; }
  .nav-menu li a { padding: 0 9px; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .lux-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .lux-img { aspect-ratio: 4 / 5; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .split > * + * { margin-top: 0; }
  .sticky-cta { display: none; }
  .site-footer { padding-bottom: 48px; }
  .section { padding: 88px 0; }
}

/* ==========================================================
   Wide desktop (≥ 1400px)
   ========================================================== */
@media (min-width: 1400px) {
  :root { --max: 1200px; }
  .site-header .brand__text small { display: block; }
  .nav-menu li a { padding: 0 14px; font-size: 1rem; }
  .site-header .btn { padding-left: 20px; padding-right: 20px; font-size: 1rem; }
  .btn--portal__long { display: inline; }
  .nav-menu li:first-child { display: block; }
  body { font-size: 18px; }
  .hero__text { padding: 112px 0 120px; }
}
