:root {
  --bg: #f8fbfa;
  --surface: #ffffff;
  --ink: #102a2a;
  --muted: #5b6f72;
  --teal: #0f766e;
  --teal-dark: #115e59;
  --cyan: #155e75;
  --sand: #f2e9d8;
  --line: #dce8e6;
  --shadow: 0 24px 70px rgba(16, 42, 42, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; gap: 24px; justify-content: space-between; padding: 14px clamp(18px, 5vw, 72px); background: rgba(248, 251, 250, .92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(220, 232, 230, .8); }
.brand img { width: 220px; max-width: 48vw; display: block; }
nav { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 700; color: #355153; }
nav a:hover { color: var(--teal); }
.button { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: 14px 20px; background: var(--teal); color: #fff; font-weight: 800; cursor: pointer; box-shadow: 0 12px 28px rgba(15, 118, 110, .22); transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-1px); background: var(--teal-dark); box-shadow: 0 16px 34px rgba(15, 118, 110, .26); }
.button-small { padding: 10px 15px; font-size: 14px; }
.button-secondary { background: #fff; color: var(--teal); border: 1px solid var(--line); box-shadow: none; }
.button-secondary:hover { background: #edf8f6; color: var(--teal-dark); }
main { overflow: hidden; }
.section, .hero { padding: clamp(62px, 8vw, 105px) clamp(18px, 5vw, 72px); }
.section-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr); gap: clamp(32px, 7vw, 86px); align-items: center; }
.hero { min-height: 680px; background: radial-gradient(circle at 88% 20%, rgba(20, 184, 166, .18), transparent 30%), linear-gradient(135deg, #ffffff 0%, #effaf8 48%, #f8fbfa 100%); }
.eyebrow { margin: 0 0 10px; color: var(--teal); text-transform: uppercase; letter-spacing: .14em; font-weight: 900; font-size: 13px; }
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(44px, 7vw, 82px); letter-spacing: -0.055em; max-width: 850px; }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.04em; }
h3 { font-size: 20px; letter-spacing: -0.02em; }
p { margin: 16px 0 0; color: var(--muted); }
.lead { font-size: clamp(19px, 2vw, 24px); color: #294447; max-width: 760px; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-card { position: relative; overflow: hidden; padding: clamp(26px, 4vw, 42px); border-radius: 34px; background: #fff; box-shadow: var(--shadow); border: 1px solid rgba(220, 232, 230, .85); }
.hero-card:before { content: ''; position: absolute; inset: auto -40px -80px auto; width: 230px; height: 230px; border-radius: 999px; background: rgba(15, 118, 110, .1); }
.hero-card h2 { font-size: clamp(28px, 4vw, 44px); }
.hero-card ul { padding: 0; list-style: none; margin: 24px 0 0; display: grid; gap: 12px; }
.hero-card li { display: flex; gap: 10px; align-items: flex-start; font-weight: 800; }
.hero-card li:before { content: '✓'; color: var(--teal); font-weight: 900; }
.wind-lines { display: grid; gap: 12px; margin-bottom: 34px; }
.wind-lines span { display: block; height: 8px; border-radius: 999px; background: linear-gradient(90deg, rgba(15, 118, 110, .08), rgba(15, 118, 110, .82)); }
.wind-lines span:nth-child(1) { width: 78%; }
.wind-lines span:nth-child(2) { width: 100%; }
.wind-lines span:nth-child(3) { width: 56%; }
.notice { margin: -36px clamp(18px, 5vw, 72px) 0; padding: 22px 26px; border-radius: 22px; background: var(--sand); color: #493c27; border: 1px solid #ead9b9; box-shadow: 0 12px 34px rgba(89, 72, 37, .08); }
.notice strong { color: #2c2418; }
.section-heading { max-width: 820px; margin-bottom: 32px; }
.section-heading p:last-child { font-size: 18px; }
.cards { display: grid; gap: 18px; }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .step, .booking-card, .callout-list div { background: var(--surface); border: 1px solid var(--line); border-radius: 26px; padding: 24px; box-shadow: 0 12px 35px rgba(16, 42, 42, .06); }
.card h3, .step h3 { margin-bottom: 8px; }
.split { display: grid; grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr); gap: clamp(28px, 6vw, 74px); align-items: start; }
.callout-list { display: grid; gap: 14px; }
.callout-list div { display: grid; gap: 8px; }
.callout-list strong { font-size: 18px; }
.callout-list span { color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.step span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 999px; background: #e4f6f3; color: var(--teal); font-weight: 900; margin-bottom: 18px; }
.checklist { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.checklist li { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px 18px 16px 46px; position: relative; font-weight: 700; color: #294447; }
.checklist li:before { content: '✓'; position: absolute; left: 18px; top: 15px; color: var(--teal); font-weight: 900; }
.muted { color: var(--muted); }
.service-area { background: linear-gradient(135deg, #0f766e, #155e75); color: #fff; }
.service-area .eyebrow, .service-area p { color: rgba(255,255,255,.82); }
.service-area h2 { color: #fff; }
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.area-tags span { background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.26); color: #fff; border-radius: 999px; padding: 10px 15px; font-weight: 800; }
.contact-section { display: grid; grid-template-columns: .78fr 1fr; gap: clamp(28px, 6vw, 70px); background: #ffffff; }
.booking-card { margin-top: 28px; background: #f4fbfa; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding: clamp(22px, 4vw, 34px); background: #f8fbfa; border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 7px; font-weight: 800; color: #294447; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid #cbdedb; background: #fff; color: var(--ink); border-radius: 14px; padding: 12px 14px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(15, 118, 110, .11); }
.full { grid-column: 1 / -1; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-message { grid-column: 1 / -1; padding: 13px 16px; border-radius: 14px; margin: 0; font-weight: 700; }
.form-message.success { background: #dcfce7; color: #166534; }
.form-message.error { background: #fee2e2; color: #991b1b; }
footer { padding: 42px clamp(18px, 5vw, 72px); background: #0c2425; color: #fff; }
footer img { width: 220px; filter: brightness(0) invert(1); opacity: .96; }
footer p { color: rgba(255,255,255,.74); }
@media (max-width: 1060px) {
  nav { display: none; }
  .section-grid, .split, .contact-section { grid-template-columns: 1fr; }
  .cards.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .site-header { align-items: flex-start; }
  .button-small { display: none; }
  .brand img { width: 190px; }
  .hero { min-height: auto; }
  .cards.four, .steps, .checklist, .contact-form { grid-template-columns: 1fr; }
  .section, .hero { padding-top: 56px; padding-bottom: 56px; }
}
