:root {
  --sea: #3FA9C4; --sea-deep: #1F6F86; --orange: #EB8844; --orange-deep: #D6742F; --sand: #FBF7F1; --ink: #222; --ink-soft: #4E5658; --line: #E6E1D8; --max: 1120px;
  font-family: Montserrat, ui-sans-serif, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); line-height: 1.6; font-size: 17px; }
img { max-width: 100%; display: block; }
a { color: var(--sea-deep); }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
.skip { position: absolute; left: -999px; top: 0; background: #fff; padding: 0.5rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 1rem; padding: 0.6rem 1.25rem; }
.logo img { height: 48px; width: auto; }
.nav-toggle { margin-left: auto; background: var(--sea-deep); color: #fff; border: 1px solid var(--sea-deep); border-radius: 999px; padding: 0.5rem 0.9rem; font: inherit; font-weight: 600; cursor: pointer; }
.nav-toggle:hover { background: #185A6D; border-color: #185A6D; }
.site-nav { display: none; }
.site-nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; padding: 0.5rem 1.25rem 1rem; }
.site-nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem; padding: 0.5rem 0; }
.site-nav a[aria-current="page"] { color: var(--orange-deep); }
.shop-link { display: none; }
@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; gap: 1.4rem; margin-left: auto; }
  .site-nav a { padding: 0; }
  .shop-link { display: inline-flex; margin-left: 1rem; }
}

.button { display: inline-flex; align-items: center; justify-content: center; padding: 0.8rem 1.4rem; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em; text-transform: uppercase; border: 2px solid transparent; cursor: pointer; font-family: inherit; }
.button-solid { background: var(--orange); color: #fff; }
.button-solid:hover { background: var(--orange-deep); }
.button-ghost { border-color: var(--orange); color: var(--orange-deep); background: #fff; }
.button-ghost:hover { background: var(--sand); }

.hero { position: relative; min-height: 62vh; display: grid; align-items: end; background: var(--sea-deep); color: #fff; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,40,55,0.05) 30%, rgba(10,40,55,0.75) 100%); }
.hero-text { position: relative; z-index: 1; max-width: var(--max); width: 100%; margin: 0 auto; padding: 4rem 1.25rem 2.5rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.75rem; font-weight: 700; margin: 0 0 0.6rem; color: #FFD7B5; }
.hero .lede { max-width: 38rem; font-size: clamp(1.05rem, 1.8vw, 1.3rem); margin: 0; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem; }
.section.alt { max-width: none; background: var(--sand); padding-left: max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem)); padding-right: max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem)); }
.section.band { max-width: none; background: var(--sea); color: #fff; padding-top: 2rem; padding-bottom: 2rem; }
.intro { max-width: 46rem; }
.intro p, .split p, .steps p, .card p { color: var(--ink-soft); }
.band .stats { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 760px) { .band .stats { grid-template-columns: repeat(4, 1fr); } }
.stats strong { display: block; font-size: 1.8rem; line-height: 1.1; }
.stats span { font-size: 0.9rem; opacity: 0.92; }
.center { text-align: center; }

.cards { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin-top: 2rem; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(4, 1fr); } }
.card { text-decoration: none; color: inherit; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card h3 { margin: 1rem 1rem 0.3rem; }
.card p { margin: 0 1rem 1rem; font-size: 0.95rem; }
.card:hover { border-color: var(--sea); }

.split { display: grid; gap: 2rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 820px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse img { order: 2; } }
.split img { border-radius: 16px; aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

.steps { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: 1.25rem; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.steps img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.steps h3 { margin: 1rem 1rem 0.3rem; counter-increment: step; }
.steps h3::before { content: counter(step) ". "; color: var(--orange-deep); }
.steps p { margin: 0 1rem 1rem; font-size: 0.95rem; }
ul.plain { padding-left: 1.2rem; color: var(--ink-soft); }
ul.plain li { margin-bottom: 0.4rem; }

.interest { max-width: 40rem; display: grid; gap: 1rem; margin-top: 1.5rem; }
.interest label { display: grid; gap: 0.35rem; font-weight: 600; font-size: 0.9rem; }
.interest .row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .interest .row { grid-template-columns: 1fr 1fr; } }
.interest input, .interest select, .interest textarea { font: inherit; font-weight: 400; padding: 0.75rem 0.9rem; border: 1px solid #CFD6D4; border-radius: 10px; background: #fff; width: 100%; }
.interest .button { justify-self: start; }
.small { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }

.site-footer { background: #142B33; color: rgba(255,255,255,0.86); padding: 3rem 1.25rem 2rem; }
.foot-grid { max-width: var(--max); margin: 0 auto; display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 820px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer img { height: 44px; width: auto; margin-bottom: 0.8rem; filter: brightness(0) invert(1); }
.site-footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.6rem; }
.site-footer a { display: block; color: rgba(255,255,255,0.86); text-decoration: none; padding: 0.2rem 0; font-size: 0.95rem; }
.site-footer a:hover { color: #fff; }
.site-footer p { font-size: 0.95rem; }
.entity { max-width: var(--max); margin: 2rem auto 0; font-size: 0.8rem; opacity: 0.75; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1rem; }
