:root {
  --ink: #233333;
  --soft: #5a7070;
  --line: #d7eaea;
  --pri: #0f8b8d;
  --pri-deep: #0a686a;
  --acc: #f5a623;
  --mist: #edf8f8;
  --paper: #ffffff;
  --r: 18px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--paper); line-height: 1.65; }
img { max-width: 100%; }
a { color: var(--pri); text-decoration: none; }
a:hover { color: var(--pri-deep); }
h1, h2, h3 { font-family: 'Unbounded', serif; line-height: 1.22; font-weight: 600; }
h1 { font-size: clamp(30px, 4vw, 45px); }
h2 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 14px; }
h3 { font-size: 19px; margin-bottom: 8px; }
.inner { max-width: 1150px; margin: 0 auto; padding: 0 22px; }

.head-line { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 900; }
.head-line .inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 600; font-size: 18px; }
.logo-badge { background: var(--pri); color: #fff; border-radius: var(--r); padding: 4px 8px; font-size: 13px; letter-spacing: 1px; }
.logo-text em { color: var(--pri); font-style: normal; }
.main-nav ul { display: flex; gap: 2px; list-style: none; align-items: center; }
.main-nav a { color: var(--ink); font-size: 15px; padding: 8px 12px; border-radius: 40px; }
.main-nav a:hover { background: var(--mist); color: var(--pri-deep); }
.cta-link { background: var(--acc); color: var(--ink) !important; font-weight: 600; margin-left: 8px; }
.cta-link:hover { filter: brightness(.95); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; background: var(--ink); margin: 5px 0; }

.lead-zone { position: relative; background-size: cover; background-position: center; padding: 62px 0 88px; }
.lead-zone::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,20,28,.55), rgba(12,20,28,.4)); }
.lead-zone .inner { position: relative; }
.hero-text { color: #fff; max-width: 700px; text-align: left; }
.hero-text h1 { color: #fff; margin-bottom: 10px; }
.opener-sub { font-size: 16.5px; opacity: .92; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.chip { border: 1.5px solid rgba(255,255,255,.7); color: #fff; border-radius: 40px; padding: 4px 13px; font-size: 13px; }
.chip-strong { background: var(--acc); border-color: var(--acc); color: var(--ink); font-weight: 600; }

.booking-belt { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.booking-belt .inner { max-width: 1080px; }

.crumb-trail { background: var(--mist); border-bottom: 1px solid var(--line); font-size: 13.5px; padding: 9px 0; }
.crumb-trail ol { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; }
.crumb-trail li + li::before { content: "/"; color: var(--soft); margin-right: 8px; }
.crumb-trail a { font-weight: 500; }
.crumb-trail li:last-child span { color: var(--soft); }

.zone { padding: 52px 0; }
.section-tint { background: var(--mist); }
.zone-head { margin-bottom: 20px; }
.text-flow { max-width: 74ch; }
.text-flow p { margin-bottom: 14px; }
.text-flow ul, .text-flow ol { margin: 0 0 14px 22px; }
.text-flow li { margin-bottom: 6px; }
.text-flow table { border-collapse: collapse; width: 100%; margin: 6px 0 16px; }
.text-flow th, .text-flow td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; font-size: 15px; }
.text-flow th { background: var(--mist); }

.point-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.point { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.card-badge { width: 40px; height: 40px; border-radius: var(--r); background: var(--mist); color: var(--pri); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin-bottom: 12px; }

.qa-item { border-bottom: 1px solid var(--line); }
.qa-q { padding: 15px 34px 15px 2px; cursor: pointer; font-weight: 500; position: relative; }
.qa-q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--pri); }
.qa-item.open .qa-q::after { content: "-"; }
.q-body { display: none; padding: 0 2px 15px; color: var(--soft); }
.qa-item.open .q-body { display: block; }

.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.voice-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.review-stars { color: var(--acc); letter-spacing: 2px; margin-bottom: 6px; }
.voice-meta { font-size: 13.5px; color: var(--soft); margin-top: 10px; }

.ask-form { max-width: 620px; }
.ask-form label { display: block; font-weight: 500; font-size: 14.5px; margin: 14px 0 5px; }
.ask-form input[type=text], .ask-form input[type=email], .ask-form input[type=tel],
.ask-form select, .ask-form textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--r); font-family: inherit; font-size: 15px; }
.ask-form textarea { min-height: 120px; resize: vertical; }
.btn-go { display: inline-block; background: var(--pri); color: #fff; border: 0; border-radius: 40px; padding: 12px 26px; font-family: inherit; font-size: 15.5px; font-weight: 600; cursor: pointer; margin-top: 16px; }
.btn-go:hover { background: var(--pri-deep); }
.ok-note { background: var(--mist); border: 1px solid var(--line); color: var(--pri-deep); border-radius: var(--r); padding: 13px 15px; margin-bottom: 14px; font-weight: 500; }
.nv-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.star-pick { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.star-pick input { display: none; }
.star-pick label { font-size: 28px; color: var(--line); cursor: pointer; }
.star-pick label:hover, .star-pick label:hover ~ label, .star-pick input:checked ~ label { color: var(--acc); }

.geo-frame { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); line-height: 0; margin: 14px 0; }

.site-footer { background: var(--ink); color: #ccd5d1; margin-top: 40px; }
.site-footer .inner { padding-top: 44px; }
.ground-grid { display: grid; grid-template-columns: 2fr 1.2fr; gap: 36px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-mark { color: #fff; font-weight: 600; font-size: 17px; margin-bottom: 10px; }
.footer-mark em { color: var(--acc); font-style: normal; }
.ground-note { font-size: 14px; line-height: 1.6; }
.pay-area { margin-top: 14px; }
.pay-area-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .6px; opacity: .7; margin-bottom: 7px; }
.card-row { display: flex; gap: 8px; }
.card-tile { width: 48px; height: 31px; background: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; padding: 3px; }
.card-tile-cash { font-size: 11px; font-weight: 700; color: var(--pri); }
.foot-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 7px; font-size: 14.5px; }
.foot-col a { color: #ccd5d1; }
.foot-col a:hover { color: #fff; }
.reach-list li { line-height: 1.5; }
.base-line { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; font-size: 13.5px; flex-wrap: wrap; gap: 8px; }
.small-links { display: flex; gap: 16px; }

@media (max-width: 900px) {
  .lead-zone .inner { grid-template-columns: 1fr; }
  .intro-photo { min-height: 220px; order: -1; }
  .main-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px 20px; z-index: 950; }
  .main-nav.show { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav a { color: var(--ink); }
  .menu-toggle { display: block; }
  .ground-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .ground-grid { grid-template-columns: 1fr; } }
