/* ============================================================
   DATO MIGRATORIO — Shared Design System
   Deuny Espinal · Senior Paralegal · US Immigration Document Services
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&family=Public+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* — Color: warm cream base, deep navy primary, forest accent — */
  --cream:        #F6F3EC;
  --cream-deep:   #EFEADF;
  --paper:        #FCFBF8;
  --white:        #FFFFFF;

  --navy:         #14304F;   /* primary — the suit */
  --navy-700:     #1B3C61;
  --navy-600:     #244C77;
  --navy-ink:     #0E2138;

  --ink:          #1C2430;   /* body text */
  --ink-soft:     #4A5564;
  --ink-faint:    #6B7686;

  --green:        #1F5A43;   /* approval / trust accent */
  --green-600:    #277A57;
  --green-soft:   #E7EFE9;

  --gold:         #B0883C;   /* premium hairline accent (sparing) */
  --gold-soft:    #EFE6D2;

  --flag-red:     #9E2B25;   /* used VERY sparingly */

  --line:         #E2DCCF;   /* hairline on cream */
  --line-soft:    #ECE7DB;

  /* — Type — */
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:  'Public Sans', system-ui, -apple-system, sans-serif;

  /* — Shape — */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(20,48,79,.06), 0 1px 1px rgba(20,48,79,.04);
  --shadow-md: 0 8px 24px -10px rgba(20,48,79,.18), 0 2px 6px rgba(20,48,79,.06);
  --shadow-lg: 0 30px 60px -22px rgba(14,33,56,.34), 0 8px 20px -10px rgba(14,33,56,.18);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--navy); color: var(--cream); }

/* ── Layout helpers ───────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section-sm { padding-block: clamp(44px, 6vw, 80px); }

/* ── Type scale ───────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  white-space: nowrap;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.on-dark { color: #C7D3E0; }
.eyebrow.on-dark::before { background: var(--gold); }
.eyebrow.centered { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--navy-ink); line-height: 1.08; margin: 0; letter-spacing: -.01em; }
.display { font-size: clamp(40px, 6.2vw, 74px); line-height: 1.04; letter-spacing: -.02em; font-weight: 500; }
h2.title { font-size: clamp(30px, 4.4vw, 50px); }
h3 { font-size: clamp(21px, 2.4vw, 27px); }
.lead { font-size: clamp(18px, 2.1vw, 21px); color: var(--ink-soft); line-height: 1.62; font-weight: 400; }
.serif-em { font-family: var(--serif); font-style: italic; }

p { margin: 0 0 1em; text-wrap: pretty; }
.muted { color: var(--ink-soft); }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15.5px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
  letter-spacing: .005em;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--navy); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: #1C1304; }
.btn-gold:hover { background: #C29746; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-green { background: var(--green); color: #EAF3EE; }
.btn-green:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); background: var(--white); }
.btn-ghost.on-dark { color: var(--cream); border-color: rgba(255,255,255,.28); }
.btn-ghost.on-dark:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.btn-lg { padding: 17px 32px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ── Header / Nav ─────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand .mark {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--navy); color: var(--cream);
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), var(--shadow-sm);
  position: relative;
}
.brand .mark svg { width: 23px; height: 23px; }
.brand .word { line-height: 1.05; }
.brand .word b { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--navy-ink); display: block; letter-spacing: -.01em; line-height: 1.15; white-space: nowrap; }
.brand .word span { font-size: 10.5px; letter-spacing: .19em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; display: block; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  padding: 9px 12px; border-radius: 8px; transition: color .15s, background .15s; white-space: nowrap;
}
.nav-links a:hover { color: var(--navy-ink); background: var(--cream-deep); }
.nav-links a.active { color: var(--navy-ink); }
.nav-links a.active::after {
  content: ""; display: block; height: 2px; width: 18px; margin: 3px auto 0;
  background: var(--gold); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 12px; }

/* language toggle */
.lang-toggle {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 3px; background: var(--white);
  font-size: 12.5px; font-weight: 700; letter-spacing: .03em;
}
.lang-toggle button {
  border: none; background: transparent; color: var(--ink-faint);
  padding: 5px 11px; border-radius: 999px; transition: .15s;
}
.lang-toggle button.is-active { background: var(--navy); color: var(--cream); }

.nav-toggle { display: none; background: none; border: none; padding: 8px; color: var(--navy-ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* mobile drawer */
.mobile-menu { display: none; }

/* sticky-header anchor offset so #targets aren't hidden under the header */
section[id], article[id], div[id] { scroll-margin-top: 92px; }

@media (max-width: 1080px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu {
    display: block; position: fixed; inset: 76px 0 auto 0; z-index: 99;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter) 28px;
    max-height: calc(100dvh - 76px); overflow-y: auto;
    transform: translateY(-120%); transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-md);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { display: block; font-size: 18px; font-weight: 500; padding: 14px 4px; border-bottom: 1px solid var(--line-soft); color: var(--navy-ink); }
  .mobile-menu .btn { margin-top: 18px; width: 100%; }
}

/* ── Cards & chips ───────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--navy-700);
  background: var(--white); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px;
}
.chip svg { width: 15px; height: 15px; color: var(--green-600); }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-soft); }

/* icon badge */
.ico {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--green-soft); color: var(--green);
  border: 1px solid color-mix(in srgb, var(--green) 14%, transparent);
}
.ico svg { width: 25px; height: 25px; }
.ico.navy { background: color-mix(in srgb, var(--navy) 8%, var(--white)); color: var(--navy); border-color: color-mix(in srgb, var(--navy) 14%, transparent); }
.ico.gold { background: var(--gold-soft); color: var(--gold); border-color: color-mix(in srgb, var(--gold) 22%, transparent); }

/* ── Dark band ───────────────────────────────── */
.band-navy {
  background:
    radial-gradient(110% 75% at 50% -8%, #1e4773 0%, rgba(30,71,115,0) 55%),
    linear-gradient(180deg, #163659 0%, var(--navy-ink) 62%);
  color: #DCE4ED; position: relative; overflow: hidden;
}
.band-navy h1, .band-navy h2, .band-navy h3, .band-navy h4 { color: var(--white); }
.band-navy .lead { color: #B7C4D2; }
/* crisp top hairline for a finished edge */
.band-navy::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14) 50%, transparent);
  pointer-events: none;
}
.band-cream { background: var(--cream-deep); }

/* subtle starfield/texture for navy bands */
.stars-bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,.15) 1.1px, transparent 1.7px),
    radial-gradient(rgba(255,255,255,.08) 1px, transparent 1.5px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
  -webkit-mask-image: radial-gradient(125% 95% at 50% 0%, #000 30%, transparent 78%);
          mask-image: radial-gradient(125% 95% at 50% 0%, #000 30%, transparent 78%);
}

/* ── Image placeholder ───────────────────────── */
.ph {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, var(--cream-deep) 0 11px, var(--cream) 11px 22px);
  border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-faint);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; letter-spacing: .04em;
  text-align: center; padding: 18px;
}

/* ── Footer ──────────────────────────────────── */
.site-footer { background: var(--navy-ink); color: #AEBCCB; padding-block: clamp(56px, 7vw, 88px) 36px; }
.site-footer h4 { color: var(--white); font-family: var(--sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.site-footer a { color: #AEBCCB; font-size: 15px; padding: 5px 0; transition: color .15s; }
.site-footer a:hover { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr; gap: 40px; }
.disclaimer {
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md);
  background: rgba(255,255,255,.035); padding: 20px 22px;
  font-size: 13px; line-height: 1.62; color: #93A2B3;
}
.disclaimer b { color: #C9D4DF; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #8595A6; }

@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 420px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Reveal on scroll ──────────────────────────
   NOTE: kept always-visible. Some embedded preview iframes freeze
   CSS transitions/animations on offscreen frames, which would trap
   fade-in content at opacity:0. Visible-by-default is bulletproof. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ── Utilities ───────────────────────────────── */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.stack-sm > * + * { margin-top: 10px; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.flag-rule { height: 3px; width: 56px; border-radius: 3px; background: linear-gradient(90deg, var(--navy) 0 33%, var(--white) 33% 66%, var(--flag-red) 66% 100%); }

@media (max-width: 940px) { .g-4 { grid-template-columns: repeat(2, 1fr); } .g-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

/* lang visibility handled by JS swapping textContent; helper for block-level */
[data-en], [data-es] { }

/* ============================================================
   HOME / SHARED PAGE COMPONENTS
   ============================================================ */

/* ── Hero ── */
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 38px; flex-wrap: wrap; }
.ht-item { display: flex; flex-direction: column; line-height: 1.3; }
.ht-item b { font-size: 16px; color: var(--navy-ink); font-weight: 700; }
.ht-item span { font-size: 13.5px; color: var(--ink-faint); }
.ht-div { width: 1px; height: 34px; background: var(--line); }

.hero-portrait { position: relative; }
.portrait-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--navy-ink); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-frame::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  border-radius: inherit; pointer-events: none;
}
.portrait-flag {
  position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: linear-gradient(90deg, var(--navy) 0 33.3%, #f4f1ea 33.3% 66.6%, var(--flag-red) 66.6% 100%);
}
.portrait-card {
  position: absolute; left: 22px; bottom: 26px; right: 22px;
  display: flex; align-items: center; gap: 14px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 14px; padding: 13px 16px; box-shadow: var(--shadow-md);
}
.pc-avatar {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--navy); color: var(--cream);
  display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 17px;
  letter-spacing: .02em;
}
.portrait-card strong { display: block; font-family: var(--serif); font-size: 18px; color: var(--navy-ink); font-weight: 600; line-height: 1.1; }
.portrait-card span { font-size: 13px; color: var(--ink-soft); }
.pc-badge { margin-left: auto; color: var(--green-600); flex-shrink: 0; }
.pc-badge svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 480px; }
}

/* ── Trust strip ── */
.trust-strip { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.ts-label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.ts-items { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.ts-items span { font-family: var(--serif); font-size: clamp(16px,2vw,19px); color: var(--navy-700); font-weight: 500; }
.ts-items i { color: var(--gold); font-style: normal; }

/* ── Section heads ── */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.sec-head > div { max-width: 30ch; }
.sec-head-sub { max-width: 42ch; font-size: 16.5px; line-height: 1.62; }
@media (max-width: 760px) { .sec-head { flex-direction: column; align-items: flex-start; gap: 14px; } }

/* ── Service cards ── */
.svc { display: flex; flex-direction: column; position: relative; }
.svc h3 { margin-top: 20px; }
.svc p { margin-top: 12px; margin-bottom: 18px; font-size: 15.5px; line-height: 1.6; }
.svc-tag {
  margin-top: auto; align-self: flex-start;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; font-weight: 600;
  letter-spacing: .06em; color: var(--navy-700);
  background: color-mix(in srgb, var(--navy) 6%, var(--white)); border: 1px solid var(--line);
  padding: 5px 11px; border-radius: 6px;
}

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,2.4vw,30px); margin-top: 56px; align-items: start; }
.step { position: relative; padding-top: 26px; border-top: 2px solid rgba(255,255,255,.18); display: flex; flex-direction: column; }
.step-n { font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--gold); letter-spacing: .1em; }
.step h3 { color: #fff; margin-top: 12px; font-size: 21px; line-height: 1.2; min-height: 2.4em; }
.step p { color: #AEBED0; font-size: 15px; line-height: 1.6; margin-top: 12px; margin-bottom: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 30px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; gap: 0; } .step { padding-block: 24px; } .step h3 { min-height: 0; } }

/* ── Founder ── */
.founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px,5vw,72px); align-items: center; }
.founder-media { display: flex; flex-direction: column; align-items: flex-start; }
.portrait-frame.alt { max-width: 360px; aspect-ratio: 4/5; }
.quote { margin: 22px 0 0; position: relative; padding-left: 0; }
.quote .q-mark { font-family: var(--serif); font-size: 70px; line-height: 0; color: var(--gold); position: absolute; top: 28px; left: -6px; opacity: .35; }
.quote p { font-family: var(--serif); font-size: clamp(21px,2.6vw,29px); line-height: 1.4; color: var(--navy-ink); font-weight: 400; font-style: italic; margin: 0; }
.founder-sign { margin-top: 28px; }
.founder-sign strong { font-family: var(--serif); font-size: 21px; color: var(--navy-ink); font-weight: 600; display: block; }
.founder-sign span { font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 820px) { .founder-grid { grid-template-columns: 1fr; } .founder-media { align-items: center; } }

/* ── Why ── */
.why { padding: 4px; }
.why h3 { margin-top: 20px; font-size: 22px; }
.why p { margin-top: 12px; font-size: 15.5px; line-height: 1.6; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px,5vw,64px); align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq { border-bottom: 1px solid var(--line); }
.faq:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--serif); font-size: clamp(18px,2vw,21px); font-weight: 500; color: var(--navy-ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; background: var(--green-600); border-radius: 2px; transition: transform .25s ease; }
.faq summary i::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq summary i::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq[open] summary i::after { transform: scaleY(0); }
.faq p { padding: 0 4px 24px; margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.65; max-width: 60ch; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } }

/* ── CTA band ── */
.cta-band { text-align: center; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.detail-list { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,3vw,40px) clamp(40px,6vw,90px); }
.detail { padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.detail-head { display: flex; align-items: flex-start; gap: 18px; }
.detail-form {
  display: inline-block; font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em; color: var(--gold);
  margin-bottom: 8px;
}
.detail-head h2 { font-size: clamp(23px,2.6vw,29px); }
.detail-desc { margin-top: 18px; color: var(--ink-soft); font-size: 16px; line-height: 1.62; max-width: 52ch; }
.checks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.checks li { position: relative; padding-left: 30px; font-size: 15px; color: var(--ink); line-height: 1.45; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F5A43' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat,
    var(--green-soft);
}

@media (max-width: 800px) { .detail-list { grid-template-columns: 1fr; gap: 0; } .detail { padding-block: 30px; } .detail:first-child { padding-top: 0; } }

/* pricing */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.price-cards { display: grid; gap: 14px; }
.price-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); padding: 18px 20px;
}
.price-card .ico { width: 42px; height: 42px; border-radius: 10px; }
.price-card .ico svg { width: 20px; height: 20px; }
.price-card strong { display: block; color: #fff; font-family: var(--serif); font-weight: 600; font-size: 18px; }
.price-card span { font-size: 14px; color: #AEBED0; }
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px,5vw,72px); align-items: center; }
.about-hero .portrait-frame { max-width: 440px; margin-left: auto; }
.about-stats { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.about-stats div { display: flex; flex-direction: column; }
.about-stats b { font-family: var(--serif); font-size: 19px; color: var(--navy-ink); font-weight: 600; }
.about-stats span { font-size: 13.5px; color: var(--ink-faint); }
@media (max-width: 860px) { .about-hero { grid-template-columns: 1fr; } .about-hero .portrait-frame { margin: 0; max-width: 420px; } }

.story .title { margin-top: 4px; max-width: 18ch; }
.story-body { margin-top: 28px; }
.story-body p { font-size: clamp(17px,1.9vw,19px); line-height: 1.72; color: var(--ink); }
.story-body p:first-letter { }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px,6vw,80px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }

.contact-methods { display: grid; gap: 12px; margin-top: 36px; }
.cmethod {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--paper); transition: border-color .18s, transform .18s, box-shadow .18s;
}
a.cmethod:hover { border-color: var(--navy-600); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cmethod .ico { width: 44px; height: 44px; border-radius: 11px; }
.cmethod .ico svg { width: 21px; height: 21px; }
.cmethod b { display: block; font-size: 15.5px; color: var(--navy-ink); font-weight: 600; }
.cmethod i { font-style: normal; font-size: 14px; color: var(--ink-soft); }
.cmethod.static { cursor: default; }

.hours-note { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: var(--ink-soft); font-size: 14.5px; }
.hours-note svg { width: 18px; height: 18px; color: var(--green-600); flex-shrink: 0; }

/* form card */
.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px,3vw,40px); box-shadow: var(--shadow-md);
}
.form-title { font-size: clamp(22px,2.6vw,28px); }
.form-sub { color: var(--ink-soft); font-size: 15px; margin: 8px 0 26px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-ink); margin-bottom: 7px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 14px; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--navy) 12%, transparent);
}
.field input.invalid, .field select.invalid, .field textarea.invalid {
  border-color: var(--flag-red); box-shadow: 0 0 0 4px color-mix(in srgb, var(--flag-red) 12%, transparent);
}
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5564' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px;
}

.field-pref { margin: 4px 0 22px; }
.pref-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-ink); margin-bottom: 9px; }
.pref-opts { display: flex; gap: 10px; }
.pref { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1.5px solid var(--line); border-radius: 10px; padding: 11px; cursor: pointer; font-size: 15px; font-weight: 500;
  transition: border-color .15s, background .15s; }
.pref input { accent-color: var(--navy); }
.pref:has(input:checked) { border-color: var(--navy); background: color-mix(in srgb, var(--navy) 5%, var(--white)); color: var(--navy-ink); font-weight: 600; }

.form-fine { font-size: 12.5px; color: var(--ink-faint); line-height: 1.5; margin: 14px 0 0; }

/* success */
.form-success { text-align: center; padding: 18px 8px; }
.success-mark { width: 64px; height: 64px; border-radius: 50%; background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; margin: 0 auto 22px; }
.success-mark svg { width: 30px; height: 30px; }
.form-success h2 { font-size: 26px; }
.form-success p { color: var(--ink-soft); font-size: 15.5px; max-width: 42ch; margin: 14px auto 22px; line-height: 1.6; }

/* reassurance strip */
.reassure { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.re-item { display: flex; align-items: center; gap: 12px; color: #DCE4ED; font-size: 15px; font-weight: 500; }
.re-item svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }
@media (max-width: 820px) { .reassure { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 460px) { .reassure { grid-template-columns: 1fr; } }
