/* ============================================================
   Harmony Tax Services — Classic Trust design system
   Deep navy (#103859) + warm gold on white. Serif headings.
   ============================================================ */

:root {
  --navy: #103859;
  --navy-deep: #0b2a44;
  --navy-soft: #1c4f78;
  --gold: #c9a24e;
  --gold-bright: #dab35d;
  --gold-dark: #8c6a30;
  --bronze: #7c5a34;
  --ink: #202730;
  --muted: #566172;
  --line: #e6e3d9;
  --cream: #f8f6f0;
  --cream-2: #f2efe6;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(16, 56, 89, .07), 0 1px 2px rgba(16, 56, 89, .05);
  --shadow-md: 0 10px 30px rgba(16, 56, 89, .10);
  --shadow-lg: 0 24px 60px rgba(11, 42, 68, .16);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wrap: 1180px;
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.18;
  font-weight: 600;
  margin: 0 0 .5em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #e9edf5; }
.section--navy h2, .section--navy h3 { color: #fff; }

.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 62ch; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dark); margin: 0 0 16px;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--gold); display: inline-block; }
.center .kicker::after { content: ""; width: 28px; height: 2px; background: var(--gold); display: inline-block; }
.section--navy .kicker { color: var(--gold-bright); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 1rem; letter-spacing: .02em;
  padding: 15px 30px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  min-height: 52px; text-align: center;
}
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-bright); color: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.section--navy .btn--outline { color: #fff; border-color: rgba(255,255,255,.5); }
.section--navy .btn--outline:hover { background: #fff; color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.center .btn-row { justify-content: center; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; }

/* Top bar — navy, same background color as the logo */
.topbar { background: var(--navy); }
.topbar-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 16px; min-height: 96px;
}
.topbar-left { justify-self: start; }
.topbar-right { justify-self: end; display: flex; align-items: center; gap: 14px; }

.brand { justify-self: center; display: inline-flex; align-items: center; }
.brand:hover { color: var(--navy); }
.brand-logo { height: 66px; width: auto; display: block; }
.site-footer .brand-logo { height: 58px; border-radius: 6px; }
.brand-mark { width: 46px; height: 46px; flex: none; }

.topbar-phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; white-space: nowrap; }
.topbar-phone:hover { color: #fff; }
.topbar-phone svg { width: 18px; height: 18px; color: var(--gold-bright); }

.topbar-login {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  color: #eaf0f7; font-weight: 700; font-size: .92rem;
  border: 1.5px solid rgba(255,255,255,.35); border-radius: var(--radius);
  padding: 10px 16px; min-height: 44px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.topbar-login:hover { background: rgba(255,255,255,.12); color: #fff; border-color: var(--gold); }
.topbar-login svg { width: 16px; height: 16px; color: var(--gold-bright); }
.topbar-cta { min-height: 44px; padding: 11px 22px; }

/* Nav bar — white, underneath the top bar */
.nav { background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: center; gap: 36px; min-height: 54px; flex-wrap: wrap; }
.nav a.nav-link {
  font-weight: 600; font-size: 1rem; color: var(--navy); position: relative; padding: 15px 0;
}
.nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 8px; height: 2px; width: 0; background: var(--gold);
  transition: width .2s ease;
}
.nav a.nav-link:hover::after, .nav a.nav-link[aria-current="page"]::after { width: 100%; }
.nav a.nav-link[aria-current="page"] { color: var(--gold-dark); }

/* Drawer-only extras (mobile) */
.nav-cta, .nav-call, .nav-login { display: none; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px; margin: -10px;
  color: #fff;
}
.nav-toggle svg { width: 28px; height: 28px; display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--cream); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding: clamp(48px, 7vw, 92px) 0;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--gold-dark); font-style: italic; }
.hero-lead { font-size: 1.2rem; color: var(--muted); max-width: 52ch; margin-bottom: 28px; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; border-radius: 10px; box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 2; object-fit: cover;
}
.hero-media::after {
  content: ""; position: absolute; right: -18px; bottom: -18px; width: 62%; height: 62%;
  border: 2px solid var(--gold); border-radius: 10px; z-index: -1;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 30px; }
.trust-row span { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--navy); font-size: .98rem; }
.trust-row svg { width: 20px; height: 20px; color: var(--gold-dark); flex: none; }

/* ---------- Feature strip ---------- */
.strip { background: var(--navy); color: #dfe5f0; }
.strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 40px 24px; }
.strip-item { display: flex; gap: 16px; align-items: flex-start; }
.strip-item svg { width: 30px; height: 30px; color: var(--gold-bright); flex: none; margin-top: 2px; }
.strip-item h3 { color: #fff; margin: 0 0 4px; font-size: 1.15rem; }
.strip-item p { margin: 0; color: #b9c4d8; font-size: .96rem; }

/* ---------- Section head ---------- */
.section-head { max-width: 68ch; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Services grid ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #dcd6c6; }
.card-icon {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream-2); color: var(--gold-dark); margin-bottom: 18px;
}
.card-icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 0; font-size: 1rem; }
.card ul { margin: 14px 0 0; padding: 0; list-style: none; }
.card ul li { position: relative; padding-left: 22px; margin-bottom: 6px; color: var(--muted); font-size: .96rem; }
.card ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* Service detail (services page) */
.svc { scroll-margin-top: 100px; }
.svc-form { font-family: var(--serif); font-size: .95rem; font-weight: 600; color: var(--gold-dark); letter-spacing: .04em; }

/* ---------- Split / alternating feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split + .split { margin-top: clamp(48px, 7vw, 88px); }
.split img { border-radius: 10px; box-shadow: var(--shadow-md); aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.split--rev .split-media { order: 2; }
.check-list { list-style: none; margin: 20px 0 0; padding: 0; }
.check-list li { position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--ink); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { text-align: left; }
.step-num {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--gold-dark);
  width: 56px; height: 56px; border: 2px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Local band ---------- */
.local { position: relative; color: #fff; overflow: hidden; }
.local-bg { position: absolute; inset: 0; z-index: 0; }
.local-bg img { width: 100%; height: 100%; object-fit: cover; }
.local-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,42,68,.93) 0%, rgba(11,42,68,.80) 55%, rgba(11,42,68,.58) 100%); }
.local .wrap { position: relative; z-index: 1; }
.local h2 { color: #fff; }
.local p { color: #d6ddea; }
.local .area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.local .area-tags span { border: 1px solid rgba(255,255,255,.28); border-radius: 40px; padding: 7px 16px; font-size: .92rem; font-weight: 600; }

/* ---------- Area / cities grid ---------- */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.area-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px; box-shadow: var(--shadow-sm);
}
.area-card h3 { font-size: 1.15rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.area-card h3 svg { width: 18px; height: 18px; color: var(--gold-dark); flex: none; }
.area-card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--navy);
  padding: 26px 44px 26px 0; position: relative; display: block; line-height: 1.35;
}
.faq-q::after {
  content: ""; position: absolute; right: 6px; top: 30px; width: 16px; height: 16px;
  background: var(--gold-dark);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 5v14M5 12h14' stroke='white' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 5v14M5 12h14' stroke='white' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .25s ease; transform-origin: center;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 44px 26px 0; color: var(--muted); }
.faq-a-inner p { margin: 0 0 .8em; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ---------- CTA banner ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy-deep), var(--navy)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cdd6e6; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-info .info-item svg { width: 24px; height: 24px; color: var(--gold-dark); flex: none; margin-top: 4px; }
.contact-info .info-item h3 { font-size: 1.1rem; margin: 0 0 3px; }
.contact-info .info-item a, .contact-info .info-item p { margin: 0; color: var(--muted); font-weight: 600; }
.contact-info .info-item a:hover { color: var(--gold-dark); }
.login-callout {
  margin-top: 8px; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px;
}
.login-callout h3 { font-size: 1.1rem; margin: 0 0 6px; }
.login-callout p { color: var(--muted); font-size: .95rem; margin: 0 0 14px; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 7px; font-size: .95rem; }
.field label .req { color: var(--gold-dark); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius); background: #fdfdfb;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,78,.22); background: #fff;
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .86rem; color: var(--muted); margin: 4px 0 20px; }
.form-status { display: none; padding: 14px 16px; border-radius: var(--radius); margin-bottom: 18px; font-weight: 600; }
.form-status.show { display: block; }
.form-status.ok { background: #edf6ee; color: #1f6b34; border: 1px solid #cfe6d3; }
.form-status.err { background: #fbeeee; color: #a12b2b; border: 1px solid #efcfcf; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #b7c1d6; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--gold-bright); }
.footer-brand p { margin-top: 16px; font-size: .95rem; color: #9fabc4; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin: 6px 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #b7c1d6; font-size: .97rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; color: #dfe5f0; font-weight: 600; margin-bottom: 12px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-bright); flex: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: .88rem; color: #8b98b4;
}
.footer-bottom a { color: #b7c1d6; }
.footer-bottom a:hover { color: var(--gold-bright); }
.footer-mark { display: inline-flex; align-items: center; gap: 10px; }
.disclaimer { font-size: .82rem; color: #7c89a6; max-width: 90ch; margin-top: 10px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--navy); color: #fff; padding: clamp(52px, 8vw, 84px) 0; position: relative; }
.page-hero::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--bronze), var(--gold-bright)); }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #cdd6e6; max-width: 60ch; margin: 0; font-size: 1.15rem; }
.crumbs { font-size: .88rem; color: #9fb0cf; margin-bottom: 18px; }
.crumbs a { color: #cbd6ea; } .crumbs a:hover { color: var(--gold-bright); }
.crumbs span { color: var(--gold-bright); }

/* ---------- Prose (about) ---------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.4em; }
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--navy);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 12px 18px; z-index: 200; border-radius: 0 0 6px 0; }
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; max-width: 560px; }
  .strip .wrap { grid-template-columns: 1fr; gap: 22px; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split--rev .split-media { order: -1; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }

  .topbar-inner { min-height: 74px; }
  .brand-logo { height: 50px; }
  .topbar-phone, .topbar-login, .topbar-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 74px 0 auto 0; background: #fff; box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-inner { flex-direction: column; align-items: stretch; gap: 0; padding: 6px 0 14px; min-height: 0; }
  .nav a.nav-link { padding: 15px 24px; border-bottom: 1px solid var(--cream-2); font-size: 1.08rem; }
  .nav a.nav-link::after { display: none; }
  .nav .btn { margin: 14px 24px 4px; }
  .nav-cta { display: inline-flex; margin: 16px 24px 8px; }
  .nav-call {
    display: block; padding: 15px 24px; font-weight: 700; color: var(--navy);
    border-bottom: 1px solid var(--cream-2); font-size: 1.08rem;
  }
  .nav-call svg { width: 18px; height: 18px; vertical-align: -3px; margin-right: 8px; color: var(--gold-dark); }
  .nav-login {
    display: block; padding: 15px 24px; font-weight: 700; color: var(--navy);
    border-bottom: 1px solid var(--cream-2); font-size: 1.08rem;
  }
  .nav-login svg { width: 18px; height: 18px; vertical-align: -3px; margin-right: 8px; color: var(--gold-dark); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--3, .grid--2, .steps, .area-grid, .footer-grid, .field-row { grid-template-columns: 1fr; }
  .brand-name { font-size: 1.18rem; }
  .brand-sub { letter-spacing: .2em; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-logo { height: 46px; }
  .site-footer .brand-logo { height: 52px; }
  .hero-media::after { display: none; }
  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 440px) {
  .topbar-inner { gap: 8px; }
  .brand-logo { height: 44px; }
}

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