

:root {
  --navy: #0f1b2e;
  --navy-soft: #16263f;
  --abyss: #f7f6f3;
  --slate-surface: #ffffff;
  --offwhite: #0a0e14;
  --muted-grey: #5b6472;
  --light: #f5f6f8;
  --muted-light: #9aa6b8;
  --action: #2e7dff;
  --action-bright: #6ca0ff;
  --gold: #a4741e;
  --gold-bright: #e8b75a;
  --hairline: #e2e5ea;

  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --nav-height: 64px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--offwhite);
  background: var(--slate-surface);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; margin: 0; line-height: 1.05; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

@media (max-width: 480px) {
  .wrap { padding: 0 28px; }
}

:focus-visible { outline: 2px solid var(--action); outline-offset: 2px; }

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

.eyebrow { font-size: 13px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--action); margin-bottom: 20px; }
.eyebrow.on-navy { color: var(--action-bright); }
.eyebrow.gold { color: var(--gold); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); filter: blur(6px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1), filter 0.7s cubic-bezier(.22,1,.36,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; border-radius: 8px; font-size: 15px; font-weight: 500; border: 1px solid transparent; transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, font-weight 0.3s ease; white-space: nowrap; }
.btn-action { background: var(--action); color: #fff; }
.btn-action:hover { transform: scale(1.03); box-shadow: 0 0 0 6px rgba(46,125,255,0.16); font-weight: 600; }
.btn-outline-action { background: transparent; border-color: var(--action-bright); color: var(--action-bright); }
.btn-outline-action:hover { transform: scale(1.03); background: rgba(108,160,255,0.08); box-shadow: 0 0 0 6px rgba(108,160,255,0.1); font-weight: 600; }
.btn-outline-action.on-light { border-color: var(--action); color: var(--action); }
.btn-cta { background: transparent; border-color: var(--action-bright); color: var(--action-bright); }
.btn-cta:hover { transform: scale(1.03); background: rgba(108,160,255,0.08); box-shadow: 0 0 0 6px rgba(108,160,255,0.1); font-weight: 600; }
.btn-sm { padding: 12px 20px; font-size: 13.5px; border-radius: 6px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-nav { background: var(--navy); border: 1.5px solid var(--action); color: #fff; }
.btn-nav:hover { background: var(--action); border-color: var(--action); transform: scale(1.03); box-shadow: 0 0 0 6px rgba(46,125,255,0.16); }

/* ---------- Navbar (constant dark glass) ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--nav-height);}
.glass-navy { background: rgba(15, 27, 46, 0.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo img { height: 45px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav ul a { font-size: 14px; font-weight: 500; color: var(--muted-light); transition: color 0.15s ease; }
.main-nav ul a:hover { color: var(--action); }
.main-nav ul a.active { color: var(--action); }
.nav-toggle { display: none; background: none; border: none; padding: 6px; color: #fff; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Services hover dropdown ---------- */
.main-nav ul li.has-dropdown { position: relative; }
.main-nav ul li.has-dropdown > a::after { content: "▾"; margin-left: 6px; font-size: 11px; color: var(--muted-light); }
.main-nav .dropdown {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--navy-soft); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
  padding: 8px; margin-top: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  list-style: none; z-index: 210;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.main-nav ul li.has-dropdown:hover .dropdown,
.main-nav ul li.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .dropdown li { margin: 0; }
.main-nav .dropdown a {
  display: block; padding: 10px 12px; font-size: 13.5px; border-radius: 6px; white-space: nowrap;
  color: var(--muted-light);
}
.main-nav .dropdown a:hover { background: rgba(46,125,255,0.12); color: var(--action-bright); }

@media (max-width: 860px) {
  .main-nav {
    position: fixed; inset: var(--nav-height) 0 auto 0; flex-direction: column; align-items: stretch;
    padding: 8px 24px 24px; gap: 16px; transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    background: rgba(15, 27, 46, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav ul a { display: block; padding: 10px 2px; }
  .main-nav .btn { width: 100%; text-align: center; margin-top: 8px; }
  .nav-toggle { display: block; }
  .main-nav .dropdown { display: none; }
}

/* Anchor targets scroll below the fixed nav */
.tax-card, .advisory-block { scroll-margin-top: calc(var(--nav-height) + 24px); }

/* ---------- Hero texture / glass utilities ---------- */
.hero-texture {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 600px at 85% 0%, rgba(46,125,255,0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 0% 100%, rgba(164,116,30,0.10), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 90px);
}
.glass-panel { background: rgba(255,255,255,0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }

/* ---------- Home hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-bg-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.16; mix-blend-mode: luminosity; }
.hero-bg-gradient { position: absolute; inset: 0; background: linear-gradient(0deg, var(--navy) 0%, rgba(15,27,46,0.65) 55%, rgba(15,27,46,0.35) 100%); }
.hero-content { position: relative; width: 100%; padding: 48px 0 128px; }
.hero h1 { color: var(--light); font-size: clamp(3rem, 8vw, 6.5rem); line-height: 0.95; letter-spacing: -0.025em; max-width: 16ch; }
.hero-lede { margin-top: 40px; font-size: 18px; line-height: 1.7; color: var(--muted-light); max-width: 42ch; font-family: var(--font-body); }
.hero-actions { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 16px; }

.promise-card { position: absolute; right: 24px; bottom: 64px; max-width: 300px; border-radius: 16px; padding: 26px 32px; display: none; }
@media (min-width: 1024px) { .promise-card { display: block; } }
.promise-card .eyebrow { font-size: 11px; margin-bottom: 8px; }
.promise-card p { font-family: var(--font-display); font-size: 30px; line-height: 1.2; color: var(--offwhite); }

/* ---------- Section shells ---------- */
.section-abyss { background: var(--abyss); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.section-navy { background: var(--navy); }
.section-pad { padding: 128px 0; }
.section-head h2 { max-width: 46ch; }
.section-abyss h2, .section-abyss .heading { color: var(--offwhite); font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.02em; line-height: 1.05; }
.section-navy h2, .section-navy .heading { color: var(--light); font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.02em; line-height: 1.05; }

/* ---------- Trust pillars ---------- */
.pillars { margin-top: 64px; display: grid; gap: 40px; grid-template-columns: repeat(3, 1fr); }
.pillar { border-top: 1px solid var(--hairline); padding-top: 24px; }
.pillar svg { width: 32px; height: 32px; color: var(--action); stroke-width: 1.5; margin-bottom: 16px; }
.pillar h3 { font-family: var(--font-body); font-weight: 600; font-size: 18px; margin-bottom: 10px; }
.pillar p { color: var(--muted-grey); font-size: 15px; line-height: 1.65; }
@media (max-width: 780px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- What I Do grid ---------- */
.do-grid { margin-top: 64px; display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .do-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .do-grid { grid-template-columns: 1fr; } }
.do-card { display: block; height: 100%; background: var(--navy-soft); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; transition: transform 0.3s ease, border-color 0.3s ease; }
.do-card:hover { transform: translateY(-4px); border-color: rgba(46,125,255,0.6); }
.do-card h3 { color: var(--light); font-size: 26px; margin-bottom: 14px; transition: color 0.2s ease; }
.do-card:hover h3 { color: var(--action-bright); }
.do-card p { color: var(--muted-light); font-size: 14.5px; line-height: 1.6; }
.do-card-explore { display: flex; height: 100%; align-items: center; justify-content: space-between; border-radius: 16px; padding: 32px; background: var(--action); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.do-card-explore:hover { transform: scale(1.02); box-shadow: 0 0 0 8px rgba(46,125,255,0.14); }
.do-card-explore span { font-family: var(--font-display); font-size: 26px; color: #fff; }
.do-card-explore svg { width: 22px; height: 22px; color: #fff; transition: transform 0.2s ease; }
.do-card-explore:hover svg { transform: translateX(4px); }

/* ---------- Closing CTA ---------- */
.cta-section { position: relative; overflow: hidden; text-align: center; padding: 128px 0; }
.cta-section .hero-texture { opacity: 0.6; }
.cta-section h2 { position: relative; color: var(--light); font-size: clamp(2.2rem, 6vw, 4.6rem); line-height: 1.05; }
.cta-section p { position: relative; margin: 32px auto 0; color: var(--muted-light); font-size: 17px; max-width: 42ch; line-height: 1.6; }
.cta-section .hero-actions { position: relative; justify-content: center; margin-top: 48px; }

/* ---------- Compliance badge (gold breath) ---------- */
.gold-breath { animation: goldBreath 5s ease-in-out infinite; }
@keyframes goldBreath { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.compliance-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 13px; }
.compliance-badge svg { width: 15px; height: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-surface); border-top: 1px solid var(--hairline); }
.footer-grid { padding: 96px 0 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand img { height: 24px; margin-bottom: 18px; }
.footer-brand p { color: var(--muted-grey); font-size: 14px; line-height: 1.6; max-width: 32ch; }
.footer-services { background: var(--abyss); border: 1px solid var(--hairline); border-radius: 16px; padding: 24px; }
.footer-services h4 { color: var(--action); }
.footer-col h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--offwhite); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: var(--muted-grey); }
.footer-col a:hover { color: var(--action); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; color: var(--muted-grey); }
.footer-contact svg { width: 16px; height: 16px; color: var(--action); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--hairline); padding: 24px 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; font-size: 13px; color: var(--muted-grey); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating chatbot ---------- */
.chat-toggle { position: fixed; right: 24px; bottom: 24px; z-index: 150; width: 54px; height: 54px; border-radius: 50%; background: var(--action); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0,0,0,0.28); border: none; transition: transform 0.2s ease; }
.chat-toggle:hover { transform: scale(1.08); }
.chat-toggle svg { width: 22px; height: 22px; }

.chat-panel { position: fixed; right: 24px; bottom: 90px; z-index: 160; width: min(384px, calc(100vw - 48px)); height: min(520px, 70vh); background: var(--navy); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; box-shadow: 0 30px 70px rgba(0,0,0,0.4); display: none; flex-direction: column; overflow: hidden; opacity: 0; transform: scale(0.96); transition: opacity 0.2s ease, transform 0.2s ease; }
.chat-panel.open { display: flex; opacity: 1; transform: scale(1); }
.chat-head { display: flex; align-items: center; gap: 10px; padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.chat-head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.chat-head h4 { color: var(--light); font-family: var(--font-body); font-weight: 600; font-size: 14px; flex: 1; }
.chat-head button { background: none; border: none; color: var(--muted-light); }
.chat-head button svg { width: 18px; height: 18px; }
.chat-body { flex: 1; overflow-y: auto; padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { font-size: 13.5px; line-height: 1.55; padding: 11px 14px; border-radius: 10px; max-width: 88%; }
.chat-msg.bot { background: var(--navy-soft); color: rgba(245,246,248,0.9); align-self: flex-start; }
.chat-msg.user { background: var(--action); color: #fff; align-self: flex-end; }
.chat-msg.typing { color: var(--muted-light); font-style: italic; }
.chat-input-row { display: flex; border-top: 1px solid rgba(255,255,255,0.08); }
.chat-input-row input { flex: 1; background: transparent; border: none; padding: 14px 16px; color: var(--light); font-size: 13.5px; font-family: inherit; }
.chat-input-row input::placeholder { color: var(--muted-light); }
.chat-input-row input:focus { outline: none; }
.chat-input-row button { background: none; border: none; color: var(--action-bright); padding: 0 16px; }
.chat-input-row button svg { width: 18px; height: 18px; }

/* ---------- Page header (Services/About/Contact) ---------- */
.page-head { padding: 96px 0 0; }
.page-head h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; max-width: 22ch; }
.page-head p { margin-top: 24px; font-size: 17px; color: var(--muted-grey); max-width: 46ch; line-height: 1.6; font-family: var(--font-body); }

/* ---------- Services page ---------- */
.tax-cards { margin-top: 64px; display: flex; flex-direction: column; gap: 24px; }
.tax-card { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; align-items: center; background: var(--slate-surface); border: 1px solid var(--hairline); border-radius: 24px; padding: 48px; transition: border-color 0.3s ease; }
.tax-card:hover { border-color: rgba(46,125,255,0.5); }
.tax-card:hover h3 { color: var(--action); }
.tax-card-text { grid-column: span 3; }
.tax-card-visual { grid-column: span 2; height: 176px; border-radius: 14px; overflow: hidden; position: relative; }
.tax-card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tax-card:hover .tax-card-visual img { transform: scale(1.05); }
.tax-card-num { font-family: var(--font-mono); font-size: 13px; color: var(--gold); display: block; margin-bottom: 16px; }
.tax-card svg.icon { width: 30px; height: 30px; color: var(--action); margin-bottom: 16px; }
.tax-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 24px; margin-bottom: 12px; transition: color 0.2s ease; }
.tax-card > .tax-card-text > p.summary { color: var(--muted-grey); font-size: 15px; line-height: 1.65; margin-bottom: 22px; }
.tax-card ul { margin-bottom: 26px; }
.tax-card ul li { font-size: 14px; color: var(--offwhite); padding-left: 22px; position: relative; margin-bottom: 9px; }
.tax-card ul li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--action); font-size: 12px; font-weight: 700; }
@media (max-width: 900px) {
  .tax-card { grid-template-columns: 1fr; padding: 32px; }
  .tax-card-text { grid-column: auto; }
  .tax-card-visual { grid-column: auto; order: -1; }
}

.advisory-block { margin-top: 96px; display: grid; grid-template-columns: 1fr 2fr; gap: 32px; align-items: center; background: var(--abyss); border: 1px solid var(--hairline); border-radius: 24px; padding: 40px; }
.advisory-visual { height: 160px; border-radius: 14px; overflow: hidden; }
.advisory-visual img { width: 100%; height: 100%; object-fit: cover; }
.advisory-block h3 { font-family: var(--font-body); font-weight: 600; font-size: 24px; margin: 12px 0 10px; }
.advisory-block .eyebrow { margin-bottom: 8px; }
.advisory-block p.summary { color: var(--muted-grey); font-size: 14.5px; line-height: 1.65; margin-bottom: 18px; }
.advisory-block ul li { font-size: 13.5px; color: var(--muted-grey); padding-left: 20px; position: relative; margin-bottom: 8px; }
.advisory-block ul li::before { content: "✓"; position: absolute; left: 0; color: var(--action); font-size: 11px; top: 1px; }
@media (max-width: 780px) { .advisory-block { grid-template-columns: 1fr; padding: 28px; } }

.center-cta { border-top: 1px solid var(--hairline); text-align: center; padding: 96px 0; }
.center-cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.center-cta p { color: var(--muted-grey); margin-bottom: 32px; }

/* ---------- About page ---------- */
.about-intro { padding: 96px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .about-intro { grid-template-columns: 1fr; gap: 40px; } }
.portrait-frame { border-radius: 24px; overflow: hidden; border: 1px solid var(--hairline); aspect-ratio: 4/5; position: relative; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-intro h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; margin-bottom: 24px; }
.about-intro .bio { color: var(--muted-grey); font-size: 16.5px; line-height: 1.7; }

.timeline-section { max-width: 820px; margin: 0 auto; padding: 112px 24px 0; }
.timeline-section h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 56px; }
.timeline { position: relative; border-left: 1px solid var(--hairline); padding-left: 32px; display: flex; flex-direction: column; gap: 48px; }
.timeline-item { position: relative; }
.timeline-item::before { content: ""; position: absolute; left: -41px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--action); }
.timeline-item .num { font-family: var(--font-mono); font-size: 12px; color: var(--gold); display: block; margin-bottom: 10px; }
.timeline-item h4 { font-family: var(--font-body); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.timeline-item p { color: var(--muted-grey); font-size: 14.5px; line-height: 1.6; }

.founder-note-wrap { max-width: 720px; margin: 112px auto 0; padding: 0 24px; }
.founder-note { background: var(--slate-surface); border: 1px solid var(--hairline); border-radius: 24px; padding: 56px; }
.founder-note .eyebrow { margin-bottom: 18px; }
.founder-note p.body { font-family: var(--font-body); font-size: 17px; line-height: 1.75; color: var(--offwhite); margin-bottom: 32px; }
.signature-svg { width: 200px; height: 60px; margin-bottom: 8px; }
.signature-svg path { fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; }
.founder-note .signoff { font-family: var(--font-display); font-size: 20px; }

.about-cta { max-width: 640px; margin: 96px auto 0; padding: 0 24px 112px; text-align: center; }

/* ---------- Contact page ---------- */
.contact-forms { margin-top: 64px; display: grid; grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
.form-card { background: var(--slate-surface); border: 1px solid var(--hairline); border-radius: 24px; padding: 40px; }
.form-card .tag { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; color: var(--action); }
.form-card h3 { font-size: 30px; margin-bottom: 8px; }
.form-card .subtitle { color: var(--muted-grey); font-size: 14px; margin-bottom: 28px; }

form.lead-form { display: grid; gap: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--offwhite); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--hairline); border-radius: 8px;
  font-family: inherit; font-size: 14.5px; color: var(--offwhite); background: var(--slate-surface);
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--action); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.form-status { font-size: 13.5px; padding: 12px 14px; border-radius: 8px; display: none; }
.form-status.show { display: block; }
.form-status.success { background: #e7f6ec; color: #1b7a3c; }
.form-status.error { background: #fbe9e7; color: #b23a2c; }
.success-block { text-align: center; padding: 40px 10px; }
.success-block svg { width: 48px; height: 48px; color: var(--action); margin: 0 auto 16px; }
.success-block h4 { font-size: 26px; margin-bottom: 12px; }
.success-block p { color: var(--muted-grey); font-size: 14px; max-width: 30ch; margin: 0 auto; line-height: 1.6; }

.contact-strip { margin-top: 80px; border-radius: 24px; overflow: hidden; border: 1px solid var(--hairline); position: relative; background: linear-gradient(155deg, var(--navy-soft), var(--navy)); }
.contact-strip-inner { position: relative; padding: 56px 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
@media (max-width: 780px) { .contact-strip-inner { grid-template-columns: 1fr; } }
.contact-strip-item svg { width: 22px; height: 22px; color: var(--action-bright); margin: 0 auto 12px; }
.contact-strip-item span { display: block; font-size: 14px; color: var(--light); font-weight: 500; }

/* ---------- 404 ---------- */
.notfound { min-height: calc(100vh - var(--nav-height)); display: flex; align-items: center; justify-content: center; text-align: center; background: var(--navy); padding: 48px 24px; }
.notfound .big { font-family: var(--font-display); font-size: clamp(6rem, 20vw, 12rem); color: rgba(245,246,248,0.16); line-height: 1; }
.notfound h1 { color: var(--light); font-size: 28px; margin-top: 8px; }
.notfound p { color: var(--muted-light); margin-top: 12px; font-size: 15px; }