:root {
  --navy: #2f3e55;
  --blue: #749ecf;
  --rust: #c35430;
  --gold: #ecad48;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --ink: #1f2935;
  --muted: #667085;
  --line: rgba(47, 62, 85, .14);
  --radius: 28px;
  --shadow: 0 24px 80px rgba(47, 62, 85, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.topbar { background: var(--navy); color: #fff; font-size: 12px; letter-spacing: .04em; }
.topbar-inner { min-height: 34px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar a { font-weight: 800; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,253,248,.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(47,62,85,.07); }
.nav-wrap { min-height: 86px; display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 28px; }
.brand img { width: 116px; height: 72px; object-fit: contain; object-position: left center; }
nav { display: flex; justify-content: center; gap: 34px; font-size: 14px; font-weight: 700; color: #45536a; }
nav a:hover { color: var(--rust); }

.btn { min-height: 50px; padding: 0 22px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 850; border: 1px solid transparent; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 44px; padding-inline: 18px; font-size: 13px; }
.btn-dark { background: var(--navy); color: white; }
.btn-rust { background: var(--rust); color: white; box-shadow: 0 12px 28px rgba(195,84,48,.22); }
.btn-outline { border-color: rgba(47,62,85,.3); background: rgba(255,255,255,.5); }

.hero { background: radial-gradient(circle at 18% 10%, rgba(116,158,207,.18), transparent 30%), linear-gradient(180deg, var(--paper), #f8f5ef); padding: 76px 0 64px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 16px; color: var(--rust); font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow.light { color: #e9b26c; }
h1, h2, h3 { margin: 0; color: var(--navy); letter-spacing: -.04em; line-height: .98; }
h1 { font-size: clamp(54px, 7.4vw, 92px); max-width: 760px; }
h1 span { color: var(--rust); }
h2 { font-size: clamp(40px, 5vw, 64px); }
h3 { font-size: 31px; }
.hero-lead { max-width: 670px; margin: 28px 0 30px; font-size: 20px; color: #526075; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { margin-top: 44px; padding-top: 25px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); max-width: 640px; }
.trust-row div { display: grid; gap: 2px; padding-right: 14px; }
.trust-row strong { color: var(--navy); font-size: 15px; }
.trust-row span { color: var(--muted); font-size: 12px; }

.hero-card { position: relative; min-height: 610px; border-radius: 38px; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 44px; overflow: hidden; box-shadow: var(--shadow); isolation: isolate; }
.hero-card::before { content: ""; position: absolute; inset: 8% -24% auto auto; width: 390px; height: 390px; border-radius: 50%; border: 76px solid rgba(116,158,207,.09); z-index: -1; }
.hero-card::after { content: ""; position: absolute; left: -60px; bottom: -140px; width: 340px; height: 340px; background: var(--rust); border-radius: 50%; opacity: .13; z-index: -1; }
.hero-card img { width: min(78%, 410px); filter: drop-shadow(0 18px 45px rgba(0,0,0,.15)); }
.hero-card-topline { position: absolute; top: 30px; left: 34px; right: 34px; color: rgba(255,255,255,.68); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; text-align: center; }
.hero-card-copy { color: white; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; font-weight: 800; margin-top: 12px; font-size: 14px; }
.hero-card-copy p { margin: 0; }
.hero-card-copy span { color: var(--gold); }
.wave { position: absolute; height: 34px; width: 120%; border: 4px solid var(--blue); border-color: var(--blue) transparent transparent transparent; border-radius: 50%; opacity: .22; bottom: 50px; left: -10%; }
.wave-two { bottom: 29px; left: 2%; opacity: .11; border-color: var(--gold) transparent transparent transparent; }

.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid article { min-height: 138px; padding: 32px 26px; display: flex; gap: 18px; border-right: 1px solid var(--line); align-items: flex-start; }
.proof-grid article:last-child { border-right: 0; }
.proof-grid article > span { color: var(--rust); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.proof-grid strong { color: var(--navy); display: block; margin-bottom: 5px; }
.proof-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.section { padding: 108px 0; }
.section-heading { margin-bottom: 48px; }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }
.split-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 18px; }
.centered { text-align: center; }
.centered .eyebrow { margin-inline: auto; }

.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { background: rgba(255,255,255,.7); border: 1px solid rgba(47,62,85,.09); border-radius: var(--radius); padding: 34px; min-height: 420px; display: flex; flex-direction: column; align-items: flex-start; }
.service-card.featured { background: var(--navy); color: white; border: 0; box-shadow: var(--shadow); }
.service-card.featured h3, .service-card.featured .service-kicker { color: white; }
.service-card.featured p { color: rgba(255,255,255,.75); }
.service-card.featured a { color: var(--gold); }
.service-icon { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; background: rgba(116,158,207,.16); color: var(--navy); font-weight: 950; margin-bottom: 42px; }
.featured .service-icon { background: rgba(255,255,255,.12); color: white; }
.service-kicker { margin: 0 0 10px; color: var(--rust); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.service-card p:not(.service-kicker) { color: var(--muted); font-size: 15px; }
.service-card a { margin-top: auto; font-weight: 850; color: var(--rust); }
.secondary-services { margin-top: 24px; border-radius: 18px; background: rgba(255,255,255,.62); padding: 18px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: #59667a; font-size: 14px; }
.secondary-services span { color: var(--navy); font-weight: 900; }
.secondary-services p { margin: 0; }
.secondary-services i { font-style: normal; color: var(--rust); }

.family { background: var(--navy); color: white; overflow: hidden; }
.family-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: stretch; }
.family-visual { position: relative; min-height: 560px; border-radius: 34px; overflow: hidden; display: grid; place-items: center; background: linear-gradient(145deg, var(--blue), #456889); }
.family-visual::before, .family-visual::after { content: ""; position: absolute; border-radius: 50%; border: 70px solid rgba(255,255,255,.09); width: 320px; height: 320px; }
.family-visual::before { right: -130px; top: -120px; }
.family-visual::after { left: -170px; bottom: -150px; border-color: rgba(236,173,72,.14); }
.family-mark { width: 180px; height: 180px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); display: grid; place-items: center; font-size: 58px; font-weight: 950; letter-spacing: -.08em; color: white; }
.family-note { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 14px 16px; border-radius: 14px; background: rgba(25,39,56,.56); backdrop-filter: blur(8px); font-size: 12px; color: rgba(255,255,255,.72); }
.family-copy h2 { color: white; }
.large-copy { margin: 28px 0 35px; font-size: 20px; color: rgba(255,255,255,.72); max-width: 700px; }
.values-list { display: grid; gap: 0; }
.values-list > div { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); }
.values-list > div:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.values-list span { color: var(--gold); font-weight: 900; font-size: 12px; }
.values-list p { margin: 0; color: rgba(255,255,255,.72); }
.values-list strong { color: white; }

.arrival { background: #edf2f8; }
.arrival-card { background: white; border-radius: 36px; padding: 62px 72px; display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: center; box-shadow: var(--shadow); }
.arrival-card > div:first-child > p:last-child { color: var(--muted); max-width: 650px; font-size: 18px; }
.phone-ui { width: 290px; min-height: 410px; justify-self: end; border: 10px solid #1d2633; border-radius: 42px; padding: 40px 18px 20px; background: #f8fafc; position: relative; box-shadow: 0 28px 65px rgba(47,62,85,.18); }
.phone-notch { position: absolute; top: 9px; left: 50%; width: 90px; height: 18px; transform: translateX(-50%); background: #1d2633; border-radius: 999px; }
.msg-label { display: block; text-align: center; font-size: 11px; font-weight: 900; color: var(--navy); margin-bottom: 36px; }
.message { background: white; border: 1px solid rgba(47,62,85,.08); border-radius: 16px 16px 16px 5px; padding: 14px 15px; font-size: 14px; box-shadow: 0 8px 20px rgba(47,62,85,.06); }
.arrival-time { margin-top: 62px; text-align: center; display: grid; }
.arrival-time strong { font-size: 45px; line-height: 1; color: var(--rust); }
.arrival-time span { color: var(--muted); font-size: 11px; margin-top: 5px; }

.reviews { background: white; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-grid figure { margin: 0; background: var(--cream); border-radius: 26px; padding: 32px; min-height: 290px; display: flex; flex-direction: column; justify-content: space-between; }
.review-grid blockquote { margin: 0; color: var(--navy); font-size: 18px; font-weight: 700; line-height: 1.55; letter-spacing: -.01em; }
.review-grid figcaption { margin-top: 30px; color: var(--rust); font-size: 12px; font-weight: 900; }
.review-note { margin: 18px 0 0; color: #9198a3; font-size: 11px; text-align: center; }

.area { background: #f4f7f9; }
.area-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.area-grid > div:first-child > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.text-link { display: inline-block; margin-top: 12px; color: var(--rust); font-weight: 900; }
.area-map { min-height: 470px; position: relative; border-radius: 34px; background: linear-gradient(135deg, #dae5ed, #eef3f5); overflow: hidden; border: 1px solid rgba(47,62,85,.08); }
.coast-line { position: absolute; left: -18%; top: -8%; width: 70%; height: 120%; border-radius: 48%; background: var(--blue); transform: rotate(9deg); opacity: .8; }
.coast-line::after { content: ""; position: absolute; left: 70%; top: 0; width: 35%; height: 100%; border-radius: 50%; background: #eaf0f2; }
.dot { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--rust); border: 3px solid white; box-shadow: 0 4px 14px rgba(47,62,85,.2); z-index: 2; }
.label { position: absolute; z-index: 2; color: var(--navy); font-size: 12px; background: rgba(255,255,255,.9); padding: 6px 8px; border-radius: 8px; }
.dot-1 { top: 18%; left: 58%; }.label-1 { top: 13%; left: 61%; }
.dot-2 { top: 43%; left: 47%; }.label-2 { top: 38%; left: 50%; }
.dot-3 { top: 67%; left: 40%; }.label-3 { top: 62%; left: 43%; }
.dot-4 { top: 82%; left: 34%; }.label-4 { top: 77%; left: 37%; }

.contact { background: var(--cream); padding-top: 72px; }
.contact-card { border-radius: 36px; background: var(--rust); color: white; padding: 60px 68px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.contact-card h2 { color: white; }
.contact-card > div:first-child > p:last-child { color: rgba(255,255,255,.78); font-size: 17px; max-width: 500px; }
.contact-actions { display: grid; gap: 10px; }
.contact-link { width: 100%; border: 0; border-radius: 16px; background: rgba(255,255,255,.12); color: white; padding: 15px 18px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: .2s ease; }
.contact-link:hover { background: rgba(255,255,255,.2); transform: translateX(3px); }
.contact-link span { font-size: 11px; text-transform: uppercase; letter-spacing: .11em; opacity: .7; }
.contact-link strong { font-size: 15px; }

footer { background: var(--navy); color: white; padding: 42px 0 84px; }
.footer-grid { display: grid; grid-template-columns: 120px 1fr auto auto; gap: 34px; align-items: center; }
.footer-grid img { width: 92px; filter: drop-shadow(0 8px 15px rgba(0,0,0,.1)); }
.footer-grid strong { font-size: 14px; }
.footer-grid p { margin: 3px 0; color: rgba(255,255,255,.55); font-size: 11px; }
.footer-grid > div:nth-child(3) { display: grid; gap: 4px; font-size: 12px; color: rgba(255,255,255,.76); }
.footer-credit { font-size: 11px; color: rgba(255,255,255,.48); }
.footer-credit span { color: white; font-weight: 800; }
.mobile-cta { display: none; }

@media (max-width: 900px) {
  .site-header { position: relative; }
  .nav-wrap { grid-template-columns: 1fr auto; min-height: 74px; }
  .brand img { width: 98px; height: 60px; }
  nav { display: none; }
  .hero { padding-top: 48px; }
  .hero-grid, .family-grid, .area-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-card { min-height: 520px; }
  .proof-grid, .service-grid, .review-grid { grid-template-columns: 1fr; }
  .proof-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid article:last-child { border-bottom: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-card { min-height: 350px; }
  .arrival-card { grid-template-columns: 1fr; padding: 44px; gap: 40px; }
  .phone-ui { justify-self: center; }
  .contact-card { grid-template-columns: 1fr; gap: 35px; }
  .footer-grid { grid-template-columns: 90px 1fr; }
  .footer-grid > div:nth-child(3), .footer-credit { grid-column: 2; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .topbar-inner { min-height: 38px; font-size: 10px; }
  .topbar-inner span { max-width: 62%; }
  .btn-small { display: none; }
  .nav-wrap { grid-template-columns: 1fr; }
  .hero { padding: 38px 0 36px; }
  h1 { font-size: 54px; }
  h2 { font-size: 40px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .trust-row { margin-top: 34px; }
  .trust-row span { font-size: 10px; }
  .hero-card { min-height: 440px; padding: 28px; border-radius: 28px; }
  .hero-card img { width: 90%; }
  .section { padding: 72px 0; }
  .service-card { padding: 28px; }
  .family-visual { min-height: 400px; }
  .arrival-card { padding: 30px 22px; border-radius: 26px; }
  .phone-ui { width: 255px; min-height: 380px; }
  .area-map { min-height: 350px; }
  .contact-card { padding: 36px 24px; border-radius: 26px; }
  .contact-link { align-items: flex-start; flex-direction: column; gap: 4px; }
  footer { padding-bottom: 102px; }
  .footer-grid { grid-template-columns: 72px 1fr; gap: 20px; }
  .footer-grid img { width: 68px; }
  .mobile-cta { position: fixed; z-index: 30; left: 10px; right: 10px; bottom: 10px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 8px; padding: 8px; border-radius: 18px; background: rgba(31,41,53,.92); backdrop-filter: blur(12px); box-shadow: 0 12px 35px rgba(0,0,0,.22); }
  .mobile-cta a { min-height: 48px; border-radius: 12px; display: grid; place-items: center; color: white; font-size: 13px; font-weight: 900; }
  .mobile-cta a:first-child { background: var(--rust); }
  .mobile-cta a:last-child { background: rgba(255,255,255,.12); }
}
