@font-face { font-family: "Manrope"; src: url("assets/fonts/manrope-regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("assets/fonts/manrope-medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("assets/fonts/manrope-bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Lora"; src: url("assets/fonts/lora-semibold.ttf") format("truetype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Satisfy"; src: url("assets/fonts/satisfy-regular.ttf") format("truetype"); font-display: swap; }

:root {
  --navy: #032340;
  --navy-deep: #02162b;
  --navy-mid: #073152;
  --gold: #ddb141;
  --blue: #74aee2;
  --paper: #f7f4ec;
  --white: #f9f9f7;
  --ink: #122435;
  --muted: #62717d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Manrope", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.hero {
  min-height: 780px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 75% 18%, rgba(36, 85, 121, 0.32), transparent 38%), linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 82%);
}

.site-header { height: 116px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; position: relative; z-index: 5; }
.brand { display: inline-flex; align-items: center; gap: 14px; width: max-content; }
.brand img { width: 69px; height: 69px; object-fit: contain; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-words strong { font: 600 29px/1 "Lora", Georgia, serif; letter-spacing: 0.035em; }
.brand-words small { color: var(--blue); font-size: 10px; letter-spacing: 0.32em; margin-top: 8px; }
.region-meta { color: var(--blue); font-size: 15px; letter-spacing: 0.22em; }
.region-meta { justify-self: center; }
.header-actions { justify-self: end; display: flex; gap: 10px; }

.button {
  min-height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.button-outline { border: 1px solid var(--gold); color: var(--white); background: rgba(2, 22, 43, 0.25); }
.button-outline:hover { background: rgba(221, 177, 65, 0.12); }
.button-gold { color: var(--navy-deep); background: var(--gold); }
.button-gold:hover { background: #ebc354; }

.hero-content { position: relative; z-index: 3; padding-top: 92px; padding-bottom: 120px; }
.eyebrow { margin: 0 0 24px; color: var(--blue); font-weight: 700; font-size: 13px; letter-spacing: 0.16em; }
.hero h1 { margin: 0; font-size: clamp(66px, 7vw, 106px); line-height: 0.91; letter-spacing: -0.06em; font-weight: 700; }
.hero h1 span, .hero h1 em { display: block; font-style: normal; }
.hero h1 em { color: var(--gold); margin-top: 14px; }
.script-line { margin: 30px 0 0; color: var(--blue); font: 40px/1.2 "Satisfy", cursive; }
.hero-copy { margin-top: 35px; }
.hero-copy h2 { margin: 0 0 8px; font-size: 21px; }
.hero-copy p { margin: 0; color: #cbd8e1; font-size: 16px; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; }
.hero-actions span { color: var(--blue); font-size: 13px; }
.hero-watermark { position: absolute; width: min(48vw, 630px); height: min(48vw, 630px); right: 3vw; top: 185px; opacity: 0.045; z-index: 1; }
.hero-watermark img { width: 100%; height: 100%; }
.route-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.route { position: absolute; width: 70vw; height: 220px; right: -14vw; bottom: -120px; border-top: 1px solid var(--gold); border-radius: 50%; transform: rotate(-9deg); opacity: 0.8; }
.route-two { right: -5vw; bottom: -155px; border-color: var(--blue); transform: rotate(-13deg); }
.route-three { right: -30vw; bottom: -85px; width: 75vw; height: 430px; transform: rotate(10deg); }

.section { padding-block: 112px; }
.intro { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 110px; align-items: end; }
.gold-text { color: #ae8216; }
.section-heading h2, .personal-copy h2, .contact-intro h2 { margin: 0; font-size: clamp(38px, 4vw, 62px); line-height: 1.06; letter-spacing: -0.045em; }
.intro-copy p, .personal-copy > p:last-child, .contact-intro > p { color: var(--muted); font-size: 17px; line-height: 1.75; margin: 0 0 16px; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-bottom: 92px; align-items: stretch; }
.service-card { min-height: 350px; padding: 28px; border-radius: 28px; color: var(--white); background: linear-gradient(155deg, var(--navy-mid), var(--navy-deep)); display: flex; flex-direction: column; border: 1px solid rgba(116, 174, 226, 0.12); }
.service-topline { display: flex; justify-content: space-between; color: var(--gold); font-weight: 700; font-size: 13px; }
.line-icon { font-size: 27px; line-height: 1; font-weight: 400; }
.service-card h3 { margin: 42px 0 16px; font-size: 23px; text-transform: uppercase; letter-spacing: -0.02em; }
.service-card p { margin: 0; color: #c9d7e1; line-height: 1.7; font-size: 15px; }
.service-card small { color: var(--blue); line-height: 1.6; padding-top: 28px; margin-top: auto; border-top: 1px solid rgba(116, 174, 226, 0.34); }

.trust-section { color: var(--white); background: radial-gradient(circle at 20% 30%, rgba(42, 92, 129, 0.28), transparent 40%), var(--navy-deep); padding-block: 118px; }
.trust-grid { display: grid; grid-template-columns: 1fr 0.78fr; gap: 140px; align-items: center; }
.trust-statement h2 { margin: 0; font-size: clamp(58px, 6vw, 92px); line-height: 0.95; letter-spacing: -0.055em; }
.trust-statement h2 span { color: var(--gold); }
.trust-statement .script-line { font-size: 34px; }
.trust-copy { border-left: 1px solid rgba(116, 174, 226, 0.65); padding-left: 54px; }
.trust-copy h3 { margin: 0 0 20px; font-size: 31px; }
.trust-copy > p { color: #cbd7e0; line-height: 1.75; font-size: 16px; }
.trust-copy ul { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 13px; }
.trust-copy li { display: flex; gap: 11px; align-items: center; }
.trust-copy li b { color: var(--gold); }

.personal { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 130px; align-items: center; }
.personal-label { min-height: 290px; border-radius: 28px; background: var(--navy); color: var(--white); display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; position: relative; overflow: hidden; }
.personal-label::after { content: ""; position: absolute; width: 320px; height: 150px; border-top: 1px solid var(--gold); border-radius: 50%; right: -90px; top: 40px; transform: rotate(-14deg); }
.personal-label span { font-size: 30px; font-weight: 700; }
.personal-label small { color: var(--gold); margin-top: 8px; letter-spacing: 0.12em; }
.personal-copy > p:last-child { max-width: 720px; margin-top: 28px; text-align: justify; hyphens: auto; text-wrap: pretty; }

.contact-section { padding-block: 110px; color: var(--white); background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 120px; align-items: start; }
.contact-intro > p { color: #cbd7e0; margin-top: 26px; }
.contact-links { margin-top: 36px; display: grid; gap: 15px; }
.contact-links a { display: flex; align-items: center; gap: 13px; color: var(--white); }
.contact-links svg { color: var(--gold); }
.contact-form { background: var(--white); color: var(--ink); padding: 38px; border-radius: 28px; display: grid; gap: 22px; }
.contact-form label { display: grid; gap: 8px; font-size: 13px; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; border-radius: 14px; border: 1px solid #ccd3d8; background: #fff; padding: 13px 15px; color: var(--ink); resize: vertical; }
.contact-form .website-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .privacy-check { display: flex; grid-template-columns: none; flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 400; line-height: 1.5; }
.contact-form .privacy-check input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--navy); }
.contact-form .privacy-check a { color: var(--navy-mid); text-decoration: underline; }
.form-button { width: 100%; }
.contact-form > small { color: var(--muted); line-height: 1.5; text-align: center; }

footer { color: var(--white); background: var(--navy-deep); padding: 65px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; }
.footer-brand img { width: 58px; height: 58px; }
.footer-brand .brand-words strong { font-size: 24px; }
.footer-inner > p { margin: 0; text-transform: uppercase; font-size: 14px; font-weight: 700; line-height: 1.7; }
.footer-inner > p span { color: var(--blue); text-transform: none; font: 21px "Satisfy", cursive; }
.footer-inner nav { display: flex; gap: 22px; font-size: 13px; color: #cbd7e0; }
.footer-inner nav a:hover { color: var(--gold); }
.footer-bottom { color: #8799a8; border-top: 1px solid rgba(116, 174, 226, 0.15); margin-top: 45px; padding-top: 25px; font-size: 12px; }

.result-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; color: var(--white); background: radial-gradient(circle at 75% 18%, rgba(36, 85, 121, 0.32), transparent 38%), linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 82%); }
.result-card { width: min(620px, 100%); padding: clamp(34px, 7vw, 70px); border: 1px solid rgba(221, 177, 65, 0.45); border-radius: 28px; background: rgba(2, 22, 43, 0.76); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22); }
.result-card > img { width: 82px; height: 82px; margin-bottom: 30px; }
.result-card h1 { margin: 0 0 18px; font-size: clamp(40px, 7vw, 66px); line-height: 1; letter-spacing: -0.045em; }
.result-card > p:not(.eyebrow) { color: #cbd7e0; line-height: 1.7; margin: 0 0 34px; }

.legal-page { background: var(--paper); }
.legal-header { color: var(--white); background: var(--navy-deep); }
.legal-header .shell { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.legal-back { color: var(--blue); font-size: 14px; }
.legal-main { padding-block: 92px 120px; }
.legal-main > h1 { margin: 0; max-width: 850px; font-size: clamp(52px, 7vw, 88px); line-height: .95; letter-spacing: -.055em; color: var(--navy-deep); }
.legal-updated { margin: 22px 0 72px; color: var(--muted); }
.legal-main section { max-width: 850px; padding: 34px 0; border-top: 1px solid rgba(3, 35, 64, .15); }
.legal-main section h2 { margin: 0 0 15px; color: var(--navy); font-size: 24px; }
.legal-main section p { margin: 0 0 14px; color: #445867; font-size: 16px; line-height: 1.75; }
.legal-main section a { color: #8d6710; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .shell { width: min(100% - 34px, 720px); }
  .site-header { grid-template-columns: 1fr auto; height: 100px; }
  .region-meta { display: none; }
  .brand img { width: 54px; height: 54px; }
  .brand-words strong { font-size: 23px; }
  .hero-content { padding-top: 70px; }
  .hero h1 { font-size: clamp(54px, 11vw, 78px); }
  .hero-watermark { width: 70vw; height: 70vw; right: -22vw; top: 270px; }
  .intro, .trust-grid, .personal, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(2) { min-height: 330px; transform: none; }
  .trust-copy { border-left: 0; border-top: 1px solid rgba(116, 174, 226, 0.65); padding: 38px 0 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner nav { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .hero { min-height: 760px; }
  .site-header { height: 88px; }
  .header-cta { min-height: 44px; padding-inline: 16px; font-size: 12px; }
  .header-actions { gap: 7px; }
  .site-header .brand-words { display: none; }
  .header-cta { padding-inline: 12px; font-size: 10px; white-space: nowrap; }
  .brand { gap: 9px; }
  .brand img { width: 43px; height: 43px; }
  .brand-words strong { font-size: 18px; }
  .brand-words small { font-size: 7px; margin-top: 5px; }
  .hero-content { padding-top: 68px; }
  .hero h1 { font-size: clamp(45px, 13.1vw, 61px); letter-spacing: -0.065em; }
  .script-line { font-size: 31px; }
  .hero-copy h2 { font-size: 18px; }
  .hero-copy p { font-size: 14px; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-actions span { max-width: 290px; line-height: 1.5; }
  .section, .trust-section, .contact-section { padding-block: 82px; }
  .section-heading h2, .personal-copy h2, .contact-intro h2 { font-size: 39px; }
  .services { padding-bottom: 82px; }
  .service-card { padding: 28px; }
  .trust-statement h2 { font-size: 54px; }
  .personal-label { min-height: 240px; }
  .contact-form { padding: 25px; }
  .footer-inner > p { margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
