:root {
  --navy: #0a2239;
  --navy-2: #123754;
  --ink: #172334;
  --ivory: #fbf8f2;
  --paper: #fffdf9;
  --gold: #c69b4b;
  --gold-light: #ecd7a8;
  --sky: #dfeaf0;
  --muted: #5c6874;
  --line: rgba(10, 34, 57, 0.14);
  --shadow: 0 24px 70px rgba(10, 34, 57, 0.12);
  --radius: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
h2 { margin-bottom: 18px; font-size: clamp(2.15rem, 4vw, 4rem); line-height: 1.04; }
h3 { margin-bottom: 10px; color: var(--navy); font-size: 1.18rem; line-height: 1.3; }
.section-intro { max-width: 650px; margin-bottom: 44px; color: var(--muted); font-size: 1.08rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.header-inner { min-height: 92px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; text-decoration: none; }
.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236,215,168,.65);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.05);
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: var(--serif); font-size: 1.05rem; }
.brand-copy small { margin-top: 5px; opacity: .72; font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 27px; }
.site-nav > a { font-size: .9rem; font-weight: 650; text-decoration: none; }
.site-nav > a:not(.button):hover { color: var(--gold-light); }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold);
  color: #0d2033;
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: #d5ad61; box-shadow: 0 14px 36px rgba(0,0,0,.18); }
.button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-ghost { border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.08); color: white; box-shadow: none; backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.16); }
.button-light { background: white; color: var(--navy); }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.36); border-radius: 50%; background: transparent; color: white; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy) url("assets/notary-hero.png") 62% center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,27,45,.98) 0%, rgba(8,31,51,.91) 33%, rgba(8,31,51,.38) 63%, rgba(8,31,51,.1) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 82px;
  background: var(--ivory);
  clip-path: polygon(0 74%, 100% 0, 100% 100%, 0 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 690px; padding: 170px 0 135px; }
.availability { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 28px; font-size: .86rem; font-weight: 700; }
.availability::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #76d39b; box-shadow: 0 0 0 6px rgba(118,211,155,.12); }
.hero h1 { margin-bottom: 24px; max-width: 680px; font-size: clamp(3rem, 6.5vw, 6.2rem); line-height: .95; text-wrap: balance; }
.hero-copy { max-width: 600px; margin-bottom: 34px; color: rgba(255,255,255,.8); font-size: clamp(1.05rem, 2vw, 1.23rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 38px; }
.hero-details { display: flex; flex-wrap: wrap; gap: 11px 27px; color: rgba(255,255,255,.72); font-size: .86rem; }
.hero-details span { display: inline-flex; align-items: center; gap: 8px; }
.hero-details svg { width: 16px; height: 16px; fill: none; stroke: var(--gold-light); stroke-width: 1.8; }

.trust-strip { padding: 16px 0 70px; }
.trust-inner { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.6); box-shadow: 0 18px 60px rgba(10,34,57,.06); }
.trust-item { min-height: 118px; display: flex; align-items: center; gap: 17px; padding: 26px 30px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item svg { width: 28px; height: 28px; flex: 0 0 auto; fill: none; stroke: var(--gold); stroke-width: 1.55; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { color: var(--navy); font-family: var(--serif); font-size: 1.14rem; }
.trust-item span { margin-top: 3px; color: var(--muted); font-size: .84rem; }

.services { padding: 85px 0 110px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading > div { max-width: 710px; }
.text-link { margin-bottom: 50px; color: var(--navy); font-weight: 800; text-decoration-color: var(--gold); text-underline-offset: 7px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 310px; padding: 34px 29px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 0 12px 40px rgba(10,34,57,.05); transition: transform .25s ease, box-shadow .25s ease, border .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(198,155,75,.48); box-shadow: var(--shadow); }
.service-card:nth-child(even) { transform: translateY(26px); }
.service-card:nth-child(even):hover { transform: translateY(19px); }
.icon-wrap { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 48px; border-radius: 16px; background: var(--sky); color: var(--navy); }
.icon-wrap svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

.process { padding: 120px 0; color: white; background: var(--navy); }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.process h2 { max-width: 500px; }
.process-intro { color: rgba(255,255,255,.67); }
.process-call { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-light); font-weight: 800; text-decoration: none; }
.steps { position: relative; }
.steps::before { content: ""; position: absolute; top: 45px; bottom: 45px; left: 23px; width: 1px; background: linear-gradient(var(--gold), rgba(198,155,75,.12)); }
.step { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 18px 0; }
.step-number { position: relative; z-index: 1; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(236,215,168,.55); border-radius: 50%; background: var(--navy); color: var(--gold-light); font-family: var(--serif); font-weight: 700; }
.step h3 { margin: 2px 0 7px; color: white; }
.step p { margin-bottom: 0; color: rgba(255,255,255,.62); }

.apostille { padding: 120px 0; }
.apostille-card { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; padding: 70px; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: var(--paper); box-shadow: var(--shadow); }
.apostille-card::after { content: "A"; position: absolute; right: -20px; bottom: -150px; color: rgba(198,155,75,.08); font-family: var(--serif); font-size: 28rem; line-height: 1; }
.apostille-card > * { position: relative; z-index: 1; }
.apostille-list { display: grid; gap: 15px; align-content: center; }
.apostille-list div { display: flex; gap: 13px; align-items: flex-start; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.apostille-list svg { width: 21px; height: 21px; margin-top: 2px; flex: 0 0 auto; fill: none; stroke: var(--gold); stroke-width: 2; }
.apostille-list span { color: var(--muted); }

.why { padding: 90px 0 120px; }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.why-copy { position: sticky; top: 40px; align-self: start; }
.feature-list { display: grid; gap: 12px; }
.feature { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 24px; border-bottom: 1px solid var(--line); }
.feature-number { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.feature h3 { margin-bottom: 6px; }
.feature p { margin: 0; color: var(--muted); }

.testimonials { padding: 110px 0; background: #eef3f5; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.quote-card { margin: 0; padding: 42px; border-radius: var(--radius); background: white; box-shadow: 0 15px 45px rgba(10,34,57,.07); }
.stars { margin-bottom: 24px; color: var(--gold); letter-spacing: .12em; font-size: .86rem; }
.quote-card blockquote { margin: 0 0 28px; color: var(--navy); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.42; }
.quote-card figcaption { display: grid; }
.quote-card figcaption span { color: var(--muted); font-size: .82rem; }

.faq { padding: 120px 0; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 25px 48px 25px 0; cursor: pointer; list-style: none; color: var(--navy); font-size: 1.05rem; font-weight: 800; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 18px; color: var(--gold); font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { max-width: 720px; padding: 0 45px 24px 0; color: var(--muted); }

.cta-section { padding: 20px 0 110px; }
.cta-card { position: relative; padding: 75px; overflow: hidden; border-radius: 34px; color: white; background: linear-gradient(135deg, #123754, #071b2e); }
.cta-card::after { content: ""; position: absolute; width: 380px; height: 380px; right: -110px; top: -190px; border: 1px solid rgba(236,215,168,.34); border-radius: 50%; box-shadow: 0 0 0 46px rgba(236,215,168,.05), 0 0 0 92px rgba(236,215,168,.03); }
.cta-card h2 { max-width: 720px; }
.cta-card p { max-width: 650px; margin-bottom: 30px; color: rgba(255,255,255,.7); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.site-footer { padding: 64px 0 28px; color: rgba(255,255,255,.7); background: #061726; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 60px; padding-bottom: 48px; }
.footer-brand { max-width: 340px; }
.footer-brand .brand { color: white; }
.footer-brand p { margin-top: 22px; color: rgba(255,255,255,.55); }
.footer-column strong { display: block; margin-bottom: 16px; color: white; font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a, .footer-column span { display: block; margin: 8px 0; color: rgba(255,255,255,.62); text-decoration: none; }
.footer-column a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.11); font-size: .76rem; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.service-card:nth-child(2).reveal { transition-delay: .08s; }
.service-card:nth-child(3).reveal { transition-delay: .16s; }
.service-card:nth-child(4).reveal { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .menu-button { display: grid; place-items: center; }
  .site-nav { position: absolute; top: 77px; left: 20px; right: 20px; display: none; align-items: stretch; padding: 20px; border-radius: 18px; background: rgba(6,23,38,.98); box-shadow: var(--shadow); }
  .site-nav.open { display: grid; gap: 7px; }
  .site-nav > a { padding: 11px; }
  .site-nav .button { margin-top: 5px; }
  .hero { min-height: 730px; background-position: 68% center; }
  .hero::before { background: linear-gradient(90deg, rgba(6,27,45,.98) 0%, rgba(8,31,51,.88) 55%, rgba(8,31,51,.36) 100%); }
  .hero-content { max-width: 650px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .why-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-copy { position: static; }
  .apostille-card { grid-template-columns: 1fr; gap: 35px; padding: 55px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 78px; }
  .brand-copy small { display: none; }
  .hero { min-height: 720px; background-position: 69% center; }
  .hero::before { background: linear-gradient(90deg, rgba(6,27,45,.97), rgba(8,31,51,.82)); }
  .hero-content { padding: 135px 0 115px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .hero-actions .button { flex: 1 1 100%; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { min-height: auto; padding: 21px 24px; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .services, .process, .apostille, .why, .testimonials, .faq { padding: 82px 0; }
  .section-heading { align-items: flex-start; }
  .text-link { display: none; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(even), .service-card:nth-child(even):hover { min-height: 0; transform: none; }
  .service-card .icon-wrap { margin-bottom: 30px; }
  .process-grid { gap: 36px; }
  .apostille-card { padding: 36px 27px; border-radius: 25px; }
  .feature { grid-template-columns: 40px 1fr; padding: 22px 0; }
  .quote-card { padding: 31px 26px; }
  .faq-grid { gap: 30px; }
  .cta-card { padding: 50px 28px; border-radius: 25px; }
  .cta-actions .button { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { display: grid; }
}
