:root {
  --navy: #0b1d3b;
  --navy-2: #122a54;
  --gold: #b99449;
  --gold-soft: #dcc28f;
  --beige: #f6f1e8;
  --ivory: #fffdfa;
  --ink: #16243d;
  --muted: #5d6878;
  --line: rgba(11, 29, 59, 0.12);
  --shadow-soft: 0 16px 44px rgba(11, 29, 59, 0.08);
  --shadow-strong: 0 22px 54px rgba(11, 29, 59, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(circle at top right, rgba(185,148,73,0.08), transparent 28%),
    linear-gradient(180deg, #fcf9f3 0%, var(--ivory) 24%, #faf6ef 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--navy);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,253,250,0.88);
  border-bottom: 1px solid rgba(11, 29, 59, 0.08);
}
.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(11,29,59,0.16);
}
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--navy);
}
.brand-sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11,29,59,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  display: block;
}

.section { padding: 5.2rem 0; }
.section-soft { background: linear-gradient(180deg, rgba(246,241,232,0.85), rgba(255,253,250,0.9)); }
.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: rgba(255,255,255,0.92);
}
.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark .step { color: inherit; }

.eyebrow {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
}

h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--navy);
}
h1 { font-size: clamp(3rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 4rem); }
h3 { font-size: 1.55rem; }
p { margin: 0; }
.lede {
  margin-top: 1.1rem;
  max-width: 42rem;
  font-size: 1.14rem;
  color: var(--muted);
}
.lede-small,
.section-heading p,
.info-card p,
.process-card p,
.contact-card dd,
.helper,
.notice-box p,
.faq-list p,
.site-footer p,
.trust-strip p,
.content-panel p,
.microcopy { color: var(--muted); }
.section-dark .section-heading p,
.section-dark .process-card p,
.section-dark .light-text p { color: rgba(255,255,255,0.82); }

.hero { padding-top: 4.2rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy { padding-right: 0.5rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin: 1.7rem 0 1.35rem;
}
.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}
.trust-list li::before {
  content: "•";
  color: var(--gold);
  margin-right: 0.45rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
  cursor: pointer;
}
.button:hover { text-decoration: none; }
.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
details summary:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(185,148,73,0.34);
  outline-offset: 2px;
}
.button-primary {
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-soft);
}
.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
}
.button-secondary {
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  border-color: rgba(11,29,59,0.14);
}

.frame,
.frame-soft,
.info-card,
.process-card,
.form-card,
.contact-card,
.faq-list details {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.frame { overflow: hidden; }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-soft { padding: 2rem; background: linear-gradient(180deg, rgba(255,253,250,0.98), rgba(246,241,232,0.9)); }
.hero-media {
  min-height: 560px;
  aspect-ratio: 4 / 3;
  background: #f3ece4;
  border: 1px solid rgba(11, 29, 59, 0.08);
  box-shadow: 0 24px 60px rgba(11, 29, 59, 0.08);
}
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 64% 38%;
  transform: scale(1.015);
}
.tall-media { min-height: 520px; }

.trust-strip {
  background: linear-gradient(180deg, var(--navy) 0%, #0f2448 100%);
  color: rgba(255,255,255,0.92);
  padding: 1.2rem 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.trust-strip-grid > div {
  padding: 1rem 1.1rem;
}
.trust-title {
  color: var(--gold-soft) !important;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.section-heading { margin-bottom: 1.7rem; }
.section-heading.narrow { max-width: 46rem; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }

.cards-4,
.cards-3,
.split-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
}
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.split-grid,
.contact-grid { grid-template-columns: 1fr 0.96fr; align-items: center; }

.info-card,
.process-card { padding: 1.5rem; }
.info-card h3,
.process-card h3 { margin-bottom: 0.55rem; }
.info-card { border-top: 3px solid rgba(185,148,73,0.7); }
.process-card {
  background: rgba(255,255,255,0.96);
  color: var(--ink);
}
.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(185,148,73,0.12);
  color: var(--gold) !important;
  font-weight: 800;
}

.micro-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.micro-list p {
  position: relative;
  padding-left: 1.1rem;
}
.micro-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.form-shell {
  display: grid;
  gap: 1.35rem;
}
.form-card { padding: 1.55rem; }
.required-note {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
#intake-form {
  display: grid;
  gap: 1.15rem;
}
.field-group {
  display: grid;
  gap: 0.45rem;
}
.field-group label,
.field-group legend {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
}
.required { color: #8b2f2f; }
.optional { color: var(--muted); font-weight: 500; }
input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11,29,59,0.15);
  background: #fff;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
input::placeholder,
textarea::placeholder { color: #8b94a3; }
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185,148,73,0.12);
  outline: none;
}
textarea { resize: vertical; min-height: 150px; }
input[type="file"] {
  padding: 0.85rem;
  background: rgba(255,253,250,0.9);
}
.helper { font-size: 0.92rem; }
.error {
  min-height: 1em;
  font-size: 0.9rem;
  color: #9a2f34;
}
.is-invalid {
  border-color: #b14b4b !important;
  box-shadow: 0 0 0 4px rgba(177,75,75,0.12) !important;
}
.two-up {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.choice-grid.compact { grid-template-columns: repeat(3, 1fr); }
.choice-grid label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(11,29,59,0.13);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: white;
  font-weight: 600;
}
.choice-grid input { width: auto; margin: 0; }
.notice-box {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,253,250,0.95), rgba(246,241,232,0.85));
  border: 1px solid rgba(11,29,59,0.1);
}
.form-actions { display: grid; gap: 0.75rem; }
.microcopy { font-size: 0.92rem; }
.form-status {
  display: none;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(11,29,59,0.05);
  border: 1px solid rgba(11,29,59,0.12);
  color: var(--ink);
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: rgba(11,29,59,0.06);
  border-color: rgba(11,29,59,0.16);
}
.form-status.is-error {
  background: rgba(177,75,75,0.08);
  border-color: rgba(177,75,75,0.18);
}

.faq-shell { display: grid; gap: 1.2rem; }
.faq-list { display: grid; gap: 0.9rem; }
details { padding: 1rem 1.2rem; }
details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}
details summary::-webkit-details-marker { display: none; }
details p { margin-top: 0.7rem; }

.contact-card { padding: 1.6rem; }
.contact-card dl { display: grid; gap: 1rem; margin: 0; }
.contact-card dt {
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--navy);
}
.contact-card dd { margin: 0.15rem 0 0; font-weight: 600; }

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.92);
  padding: 2.2rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1.4rem;
}
.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: white !important;
  margin-bottom: 0.35rem;
}
.footer-label {
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-soft) !important;
  margin-bottom: 0.5rem;
}
.footer-spanish { margin-top: 0.55rem; }

@media (max-width: 1080px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid,
  .split-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-media {
    min-height: 460px;
    aspect-ratio: 16 / 10;
  }
  .hero-media img { object-position: 62% 40%; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: rgba(255,253,250,0.98);
    border-bottom: 1px solid rgba(11,29,59,0.08);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.is-open { display: flex; }
  .trust-strip-grid,
  .cards-3,
  .two-up,
  .choice-grid,
  .choice-grid.compact,
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 1.25rem)); }
  .section { padding: 3.5rem 0; }
  .hero { padding-top: 3.2rem; }
  .hero-media,
  .tall-media { min-height: 320px; }
  .hero-media { aspect-ratio: 5 / 4; }
  .hero-media img { object-position: 60% 42%; }
  .frame-soft,
  .form-card,
  .contact-card,
  .info-card,
  .process-card,
  details { border-radius: 22px; }
}
