:root {
  --ink: #071a2b;
  --ink-2: #0d2a42;
  --gold: #caa35b;
  --gold-light: #ead29f;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --muted: #5a6671;
  --line: rgba(7, 26, 43, .14);
  --success: #1a7a5a;
  --shadow: 0 22px 70px rgba(7, 26, 43, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: white;
  color: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  min-height: 128px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.brand { display: flex; gap: 1rem; align-items: center; text-decoration: none; }
.brand-logo {
  width: 92px;
  height: 94px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.28));
}
.brand strong { display: block; font-size: 1.16rem; letter-spacing: .17em; }
.brand small { display: block; margin-top: .12rem; opacity: .76; font-size: .78rem; letter-spacing: .08em; }

.desktop-contact { text-align: right; }
.desktop-contact a { display: block; color: white; font-weight: 700; font-size: 1.08rem; text-decoration: none; }
.availability { display: flex; align-items: center; justify-content: flex-end; gap: .45rem; font-size: .75rem; color: rgba(255,255,255,.76); }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: #6de0ae; box-shadow: 0 0 0 4px rgba(109,224,174,.12); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 205px max(24px, calc((100vw - 1180px) / 2)) 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .72fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 80% 25%, rgba(202,163,91,.16), transparent 26%),
    linear-gradient(135deg, rgba(7,26,43,.98), rgba(9,35,57,.95)),
    #071a2b;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -260px;
  border: 1px solid rgba(202,163,91,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(202,163,91,.035), 0 0 0 160px rgba(202,163,91,.025);
}
.hero-copy, .case-guide { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 1rem; color: var(--gold); font-weight: 700; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { max-width: 720px; margin-bottom: 1.4rem; font-size: clamp(2.75rem, 5vw, 5.25rem); font-weight: 600; letter-spacing: -.035em; }
.hero-lead { max-width: 690px; margin: 0 0 2rem; color: rgba(255,255,255,.76); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.button {
  min-height: 54px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .case-choice:focus-visible, input:focus-visible, select:focus-visible, a:focus-visible { outline: 3px solid #78c9ff; outline-offset: 3px; }
.button svg, .mobile-callbar svg { width: 20px; fill: currentColor; }
.button-primary { background: var(--gold); color: #102131; box-shadow: 0 10px 30px rgba(202,163,91,.22); }
.button-primary:hover { background: #d9b76f; box-shadow: 0 14px 36px rgba(202,163,91,.32); }
.button-secondary { border-color: rgba(255,255,255,.34); color: white; background: rgba(255,255,255,.04); }
.button-email { border-color: rgba(202,163,91,.62); color: var(--gold-light); background: rgba(202,163,91,.08); }
.button-email:hover { border-color: var(--gold); background: rgba(202,163,91,.15); }
.microcopy { margin: .7rem 0 1.7rem; color: rgba(255,255,255,.52); font-size: .78rem; }
.trust-row { padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .75rem 1.3rem; list-style: none; color: rgba(255,255,255,.72); font-size: .84rem; }
.trust-row span { margin-right: .25rem; color: var(--gold-light); }

.case-guide {
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.card-kicker { margin: 0 0 .35rem; color: var(--gold-light); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.case-guide h2 { margin-bottom: 1.3rem; font-family: "DM Sans", sans-serif; font-size: 1.35rem; }
.choice-grid { display: grid; gap: .55rem; }
.case-choice {
  width: 100%;
  padding: .78rem 1rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.035);
}
.case-choice:hover, .case-choice.is-active { border-color: var(--gold); color: white; background: rgba(202,163,91,.13); }
.guide-result { margin: 1.2rem 0 .9rem; padding: 1rem; border-left: 2px solid var(--gold); background: rgba(0,0,0,.11); }
.guide-result span { color: var(--gold-light); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.guide-result p { margin: .35rem 0 0; color: rgba(255,255,255,.73); font-size: .88rem; line-height: 1.5; }
.text-link { color: white; font-size: .88rem; font-weight: 700; text-underline-offset: 4px; }

.services { padding: 110px max(24px, calc((100vw - 1180px) / 2)); background: var(--paper); }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading h2, .contact h2 { margin-bottom: 1rem; font-size: clamp(2.1rem, 4vw, 3.65rem); letter-spacing: -.025em; }
.section-heading > p:last-child { max-width: 680px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { min-height: 245px; padding: 1.7rem; border: 1px solid var(--line); border-radius: 16px; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-number { color: var(--gold); font-weight: 700; font-size: .75rem; letter-spacing: .1em; }
.service-card h3 { margin: 3.1rem 0 .7rem; font-size: 1.18rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.process-strip { margin-top: 1rem; padding: 1.4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; border-radius: 16px; background: var(--cream); }
.process-strip div { padding-right: 1rem; border-right: 1px solid var(--line); }
.process-strip div:last-child { border-right: 0; }
.process-strip strong, .process-strip span { display: block; }
.process-strip strong { font-size: .86rem; }
.process-strip span { margin-top: .2rem; color: var(--muted); font-size: .78rem; line-height: 1.45; }

.contact {
  margin: 0 24px 24px;
  padding: 90px max(24px, calc((100vw - 1132px) / 2));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
  color: white;
  background: var(--ink);
  border-radius: 26px;
}
.contact-copy > p:not(.eyebrow):not(.languages) { color: rgba(255,255,255,.7); }
.phone-panel { margin: 1.7rem 0 1rem; padding: 1rem 1.2rem; display: block; border: 1px solid rgba(202,163,91,.45); border-radius: 14px; text-decoration: none; background: rgba(202,163,91,.08); }
.phone-panel span, .phone-panel small { display: block; color: rgba(255,255,255,.56); }
.phone-panel span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.phone-panel strong { display: block; margin: .2rem 0; color: var(--gold-light); font-size: clamp(1.45rem, 2.5vw, 2rem); }
.phone-panel small { font-size: .72rem; }
.languages { font-size: .77rem; color: rgba(255,255,255,.52); }

.callback-form { padding: clamp(24px, 4vw, 38px); color: var(--ink); background: white; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.24); }
.form-heading { margin-bottom: 1.4rem; display: flex; gap: .8rem; align-items: center; }
.form-heading strong, .form-heading small { display: block; }
.form-heading small { color: var(--muted); }
.lock { width: 34px; height: 34px; display: grid; place-items: center; color: var(--success); background: rgba(26,122,90,.1); border-radius: 50%; font-size: .65rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.callback-form label { display: block; margin-bottom: .8rem; font-weight: 600; font-size: .78rem; }
.callback-form input:not([type="checkbox"]), .callback-form select {
  width: 100%;
  height: 48px;
  margin-top: .35rem;
  padding: 0 .85rem;
  border: 1px solid rgba(7,26,43,.2);
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
}
.callback-form input:focus, .callback-form select:focus { border-color: var(--ink-2); }
.consent { display: grid !important; grid-template-columns: 18px 1fr; gap: .65rem; align-items: start; color: var(--muted); font-weight: 400 !important; line-height: 1.45; }
.consent input { width: 18px; height: 18px; margin: .1rem 0 0; accent-color: var(--ink); }
.consent a { color: var(--ink); text-underline-offset: 3px; }
.submit-button { width: 100%; border: 0; }
.privacy-note { margin: .75rem 0 0; color: #66717b; font-size: .68rem; line-height: 1.4; text-align: center; }
.form-status { min-height: 0; margin: .55rem 0 0; color: #a02a2a; font-size: .76rem; text-align: center; }

footer { padding: 1.4rem max(24px, calc((100vw - 1180px) / 2)) 2rem; display: flex; justify-content: space-between; gap: 1rem; color: #6b747d; font-size: .72rem; }
footer a { color: inherit; text-underline-offset: 3px; }
.footer-links { display: flex; gap: 1rem; }
.mobile-callbar { display: none; }

.legal-page { min-height: 100vh; background: var(--cream); }
.legal-topbar {
  min-height: 128px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: white;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.back-link { color: var(--gold-light); font-weight: 700; font-size: .86rem; text-underline-offset: 4px; }
.privacy-main { width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: 82px 0 70px; }
.privacy-heading { max-width: 780px; margin-bottom: 2.2rem; }
.privacy-heading h1 { margin-bottom: 1rem; color: var(--ink); font-size: clamp(2.7rem, 7vw, 5rem); }
.privacy-heading > p:not(.eyebrow):not(.legal-status) { color: var(--muted); font-size: 1.05rem; }
.legal-status { color: #737d86; font-size: .76rem; }
.privacy-content { padding: clamp(24px, 5vw, 56px); background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.privacy-content section { padding: 0 0 1.7rem; margin: 0 0 1.7rem; border-bottom: 1px solid var(--line); }
.privacy-content section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.privacy-content h2 { margin-bottom: .7rem; font-family: "DM Sans", system-ui, sans-serif; font-size: 1.25rem; }
.privacy-content p { margin: .7rem 0 0; color: var(--muted); }
.privacy-content a { color: #755a1f; font-weight: 600; text-underline-offset: 3px; overflow-wrap: anywhere; }
.privacy-content address { color: var(--muted); font-style: normal; }
.privacy-content address strong { color: var(--ink); }
.privacy-actions { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.legal-contact-button { border-color: var(--ink); color: var(--ink); background: transparent; }
.legal-contact-button:hover { color: white; background: var(--ink); }
.legal-footer { background: var(--ink); color: rgba(255,255,255,.65); }

@media (max-width: 900px) {
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 50px; padding-top: 175px; }
  .case-guide { max-width: 650px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 1.6rem; }
  .process-strip { grid-template-columns: 1fr; }
  .process-strip div { padding: 0 0 1rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-strip div:last-child { padding-bottom: 0; border-bottom: 0; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { padding-bottom: 82px; }
  body.legal-page { padding-bottom: 0; }
  .site-header { width: calc(100% - 32px); min-height: 108px; }
  .brand { gap: .7rem; }
  .brand-logo { width: 68px; height: 70px; }
  .brand strong { font-size: 1rem; letter-spacing: .14em; }
  .brand small { display: block; margin-top: .08rem; font-size: .65rem; letter-spacing: .055em; }
  .desktop-contact { display: none; }
  .hero { padding: 150px 18px 68px; gap: 38px; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.35rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; min-height: 56px; }
  .trust-row { display: grid; gap: .45rem; }
  .case-guide { padding: 22px; }
  .services { padding: 74px 18px; }
  .section-heading { margin-bottom: 2rem; }
  .service-grid { gap: .7rem; }
  .contact { margin: 0; padding: 70px 18px 26px; border-radius: 0; gap: 38px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  footer { padding: 1.4rem 18px 1.8rem; flex-direction: column; background: var(--ink); color: rgba(255,255,255,.5); }
  .legal-topbar { min-height: 108px; padding: 12px 18px; }
  .legal-topbar .brand small { display: none; }
  .back-link { max-width: 95px; text-align: right; line-height: 1.35; }
  .privacy-main { width: min(100% - 28px, 900px); padding: 56px 0 42px; }
  .privacy-content { padding: 24px 20px; border-radius: 16px; }
  .privacy-content h2 { font-size: 1.12rem; }
  .privacy-content p, .privacy-content address { font-size: .91rem; }
  .privacy-actions { display: grid; }
  .mobile-callbar {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 76px;
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: white;
    background: rgba(7,26,43,.98);
    border-top: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 -10px 35px rgba(0,0,0,.2);
  }
  .mobile-callbar small, .mobile-callbar strong { display: block; }
  .mobile-callbar small { color: rgba(255,255,255,.58); font-size: .66rem; }
  .mobile-callbar strong { font-size: .82rem; }
  .mobile-actions { display: flex; align-items: center; gap: 7px; }
  .mobile-callbar a { min-height: 48px; padding: 0 .75rem; display: inline-flex; align-items: center; gap: .35rem; border-radius: 999px; font-weight: 700; font-size: .76rem; text-decoration: none; }
  .mobile-callbar .mobile-email { color: white; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.32); }
  .mobile-callbar .mobile-phone { color: var(--ink); background: var(--gold); border: 1px solid var(--gold); }
}

@media (max-width: 360px) {
  .mobile-callbar { gap: 6px; }
  .mobile-callbar .mobile-email { width: 48px; padding: 0; justify-content: center; font-size: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}


/* SEO service links */
.service-card h3 a {
  color: inherit;
  text-decoration: none;
}
.service-card h3 a:hover,
.service-card h3 a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: .2em;
}
.service-link {
  display: inline-block;
  margin-top: .45rem;
  color: var(--ink-2);
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-underline-offset: .22em;
}
.process-strip a {
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-underline-offset: .2em;
}
