
:root {
  --bg: #f3f7f6;
  --bg2: #e4eeeb;
  --wash: #d0e0db;
  --surface: #ffffff;
  --accent: #1f4f46;
  --accent2: #3a7a6c;
  --text: #12201d;
  --muted: #556861;
  --line: rgba(18,32,29,.14);
  --overlay: rgba(8,20,18,.54);
  --btn-text: #ffffff;
  --display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Outfit", "Helvetica Neue", sans-serif;
  --wrap: min(1240px, calc(100% - clamp(1.25rem, 4vw, 3rem)));
  --rail: min(1320px, 100%);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--wash) 45%, var(--bg) 100%);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  pointer-events: none;
  position: fixed; inset: 0; z-index: 80; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
.wrap { width: var(--wrap); margin: 0 auto; }

/* —— Header: transparent over hero, solid after —— */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .35s ease, border-color .35s ease, color .35s ease, box-shadow .35s ease;
  border-bottom: 1px solid transparent;
  color: #f4f7f8;
}
.site-header .inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto auto;
  align-items: center;
  column-gap: clamp(1rem, 2.5vw, 2.25rem);
  row-gap: 0;
  padding: .95rem 0;
}
.site-header .brand { color: inherit; grid-column: 1; }
.site-header .nav {
  grid-column: 2;
  justify-self: end;
  color: color-mix(in srgb, #fff 78%, transparent);
}
.site-header .header-actions { grid-column: 3; justify-self: end; }
.site-header .nav a:hover,
.site-header .nav a.active { color: #fff; }
.site-header .nav a.active::after { background: #fff; }
.site-header .nav-toggle { color: #fff; border-color: color-mix(in srgb, #fff 35%, transparent); }
.site-header .btn.header-cta {
  background: #fff; color: var(--text);
}
.site-header.is-solid,
.site-header.nav-open,
body.is-home .site-header.nav-open {
  background: rgba(245, 247, 249, .97);
  background: color-mix(in srgb, var(--bg) 97%, transparent);
  backdrop-filter: blur(18px) saturate(1.15);
  border-bottom-color: var(--line);
  color: var(--text);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--text) 8%, transparent);
}
.site-header.is-solid .nav,
.site-header.nav-open .nav,
body.is-home .site-header.nav-open .nav { color: var(--muted); }
.site-header.is-solid .nav a:hover,
.site-header.is-solid .nav a.active,
.site-header.nav-open .nav a:hover,
.site-header.nav-open .nav a.active,
body.is-home .site-header.nav-open .nav a:hover,
body.is-home .site-header.nav-open .nav a.active { color: var(--text); }
.site-header.is-solid .nav a.active::after,
.site-header.nav-open .nav a.active::after { background: var(--accent); }
.site-header.is-solid .nav-toggle,
.site-header.nav-open .nav-toggle,
body.is-home .site-header.nav-open .nav-toggle { color: var(--text); border-color: var(--line); }
.site-header.is-solid .btn.header-cta,
.site-header.nav-open .btn.header-cta {
  background: var(--accent); color: var(--btn-text);
}
body.is-home .site-header.nav-open .nav a {
  color: var(--text);
  border-bottom-color: var(--line);
}
body.is-home .site-header.nav-open .nav a.active { color: var(--accent); }
body:not(.is-home) .site-header {
  position: sticky;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  color: var(--text);
}
body:not(.is-home) .site-header .nav { color: var(--muted); }
body:not(.is-home) .site-header .nav a:hover,
body:not(.is-home) .site-header .nav a.active { color: var(--text); }
body:not(.is-home) .site-header .nav a.active::after { background: var(--accent); }
body:not(.is-home) .site-header .nav-toggle { color: var(--text); border-color: var(--line); }
body:not(.is-home) .site-header .btn.header-cta {
  background: var(--accent); color: var(--btn-text);
}
body.nav-open { overflow: hidden; }

.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  /* Body font for nav brand — avoids display-webfont LCP on the header label */
  font-family: var(--sans);
  font-weight: 400; font-size: clamp(.95rem, 1.8vw, 1.15rem); letter-spacing: -.015em;
  min-width: 0; z-index: 1; max-width: 100%;
}
/* On the transparent home header, logo-only — brand wordmark in the hero H1 owns LCP */
body.is-home .site-header:not(.is-solid) .brand-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.brand img {
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex: 0 0 auto;
  box-shadow: 0 0 0 1px color-mix(in srgb, currentColor 18%, transparent);
}
.brand-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav {
  display: flex; flex-wrap: nowrap; align-items: center;
  gap: 0 clamp(.85rem, 1.6vw, 1.45rem);
  font-size: .72rem; font-weight: 650; letter-spacing: .11em; text-transform: uppercase;
}
.nav a {
  position: relative; padding: .45rem 0; white-space: nowrap;
  transition: color .2s ease;
}
.nav a.active { color: inherit; }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .1rem;
  height: 2px; border-radius: 1px;
}
.header-actions {
  display: inline-flex; align-items: center; gap: .55rem; flex: 0 0 auto;
}
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 0;
  border: 1px solid; background: transparent;
  cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.nav-toggle-bars {
  display: block; width: 18px; height: 1.5px; background: currentColor; position: relative;
  transition: background .2s ease;
}
.nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: currentColor;
  transition: transform .25s ease, top .25s ease;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.site-header.nav-open .nav-toggle-bars { background: transparent; }
.site-header.nav-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.site-header.nav-open .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }
.header-cta {
  display: inline-flex; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .85rem 1.15rem; min-height: 44px; white-space: nowrap;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem; padding: 1rem 1.55rem; border-radius: 0;
  background: var(--accent); color: var(--btn-text); font-weight: 650;
  border: 0; cursor: pointer;
  transition: transform .3s cubic-bezier(.22,1,.36,1), background .25s ease, color .25s ease, border-color .25s ease;
  min-height: 48px; font: inherit; letter-spacing: .04em;
}
.btn:hover { transform: translateY(-2px); }
.btn.secondary {
  background: transparent; color: var(--text);
  border: 1px solid color-mix(in srgb, var(--text) 30%, transparent);
}
.btn.ghost {
  background: transparent; color: #fff;
  border: 1px solid color-mix(in srgb, #fff 55%, transparent);
}
.btn.linkish {
  background: transparent; color: inherit; border: 0; padding: 0; min-height: 0;
  text-decoration: underline; text-underline-offset: 4px; letter-spacing: .02em;
}

/* —— Hero: one composition —— */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: grid; align-items: end; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-media picture {
  position: absolute; inset: 0; display: block; width: 100%; height: 100%;
}
.hero-media .hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  /* Delay Ken Burns until after first paint so the hero can win LCP vs brand text */
  animation: drift 26s ease-in-out 1s infinite alternate;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.12) 48%, rgba(0,0,0,.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, transparent 38%, rgba(0,0,0,.55) 100%);
}
@keyframes drift {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to { transform: scale(1.12) translate3d(-1.2%, -1.5%, 0); }
}
.hero-copy {
  position: relative; z-index: 1;
  padding: 0 0 clamp(3.25rem, 9vh, 5.75rem);
  max-width: 52rem; color: #f7fafb;
}
.hero-kicker {
  display: block; margin: 0 0 1rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: color-mix(in srgb, #fff 72%, transparent);
}
.hero h1 {
  /* System serif for LCP — webfont render-delay was 3–5s on the brand H1 */
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9.5vw, 7.2rem);
  line-height: .92; margin: 0 0 1.1rem;
  letter-spacing: -.035em; font-weight: 600;
  max-width: 11ch;
}
.hero h1 .brand-line {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
}
.hero p {
  color: color-mix(in srgb, #fff 86%, transparent);
  font-size: clamp(1.05rem, 2vw, 1.25rem); margin: 0 0 1.75rem;
  max-width: 28rem; line-height: 1.4; font-weight: 400;
}
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.25rem; }

/* —— Sections —— */
.section { padding: clamp(4.5rem, 10vw, 7.5rem) 0; }
.section.tight { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-head {
  display: grid; gap: 1rem; margin-bottom: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  max-width: 40rem;
}
.section-head.row {
  grid-template-columns: 1fr auto;
  align-items: end; max-width: none; gap: 1.5rem;
}
.section h1, .section h2, .page-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: 0;
  letter-spacing: -.025em; line-height: 1.02; font-weight: 600;
}
.section .lead {
  color: var(--muted); margin: 0; font-size: 1.08rem; max-width: 34rem; line-height: 1.55;
}
.eyebrow {
  display: block; margin: 0 0 .55rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
}

/* Fleet: equal choose-from tile grid (no horizontal scroll) */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.paddle-section {
  padding-top: clamp(2rem, 5vw, 3.25rem);
}
.paddle-fleet {
  gap: .85rem;
}
.paddle-fleet .fleet-item {
  aspect-ratio: 5/4;
}
.paddle-section-head .lead {
  max-width: 38rem;
}
.fleet-item picture,
.craft picture,
.craft-hero-media picture {
  display: block; width: 100%; height: 100%;
}
.fleet-item {
  position: relative; display: block; overflow: hidden; color: #fff;
  aspect-ratio: 4/5; min-height: 0;
}
.fleet-item .media, .fleet-item > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.fleet-item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.fleet-item:hover img { transform: scale(1.04); }
.fleet-item .cap {
  position: absolute; inset: auto 0 0 0;
  padding: 1.05rem .9rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.82) 100%);
}
.fleet-item h3 {
  margin: 0; font-family: var(--display); font-size: clamp(1.15rem, 2.4vw, 1.45rem); font-weight: 600;
}
.fleet-item .meta { font-size: .8rem; opacity: .85; margin: .15rem 0 .2rem; }
.fleet-item .price {
  font-size: .8rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.6), 0 0 16px rgba(0,0,0,.4);
}
/* Legacy sale-page rail: stack as a small grid too */
.fleet-rail {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem;
}

/* Process timeline */
.process {
  display: grid; gap: 0; border-top: 1px solid var(--line);
}
.process-step {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: 1.25rem;
  padding: 1.65rem 0; border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.process-step .num {
  font-family: var(--display); font-size: 1.65rem; color: var(--accent);
  letter-spacing: -.02em; font-weight: 600;
}
.process-step h3 {
  margin: 0 0 .35rem; font-family: var(--display); font-size: 1.45rem; font-weight: 600;
}
.process-step p { margin: 0; color: var(--muted); max-width: 36rem; }

/* Guest testimonials — quote list, not cards */
.testimonials {
  display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: .5rem;
}
.testimonial {
  margin: 0; padding: 1.65rem 0; border-bottom: 1px solid var(--line);
  display: grid; gap: .85rem;
}
.testimonial blockquote { margin: 0; }
.testimonial blockquote p {
  margin: 0; max-width: 40rem;
  font-family: var(--display); font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500; line-height: 1.35; letter-spacing: -.01em;
}
.testimonial figcaption {
  display: flex; flex-wrap: wrap; gap: .35rem .85rem; align-items: baseline;
  font-size: .9rem; color: var(--muted);
}
.testimonial-author { font-weight: 700; color: var(--text); }
.testimonial-loc { font-style: normal; }

/* Split moment band */
.moment {
  display: grid; grid-template-columns: 1.15fr 1fr; min-height: min(72vh, 620px);
  background: var(--text); color: #f4f7f8;
}
.moment-media {
  position: relative; min-height: 280px; overflow: hidden;
  background-size: cover; background-position: center;
}
.moment-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 40%, color-mix(in srgb, var(--text) 35%, transparent));
}
.moment-copy {
  display: grid; align-content: center; gap: 1rem;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem);
}
.moment-copy h2 {
  font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0; letter-spacing: -.02em; line-height: 1.05; color: #fff;
}
.moment-copy p { margin: 0; color: color-mix(in srgb, #fff 78%, transparent); max-width: 28rem; font-size: 1.05rem; }
.moment .btn { background: #fff; color: var(--text); }
.moment .btn.ghost { background: transparent; color: #fff; border-color: color-mix(in srgb, #fff 45%, transparent); }

.seo-block {
  border-top: 1px solid var(--line);
  padding-top: 2.75rem; margin-top: .25rem;
}
.seo-block h2 { font-size: clamp(1.45rem, 2.8vw, 1.9rem); margin-bottom: .85rem; }

/* Generic grids (inner pages) — image-led, no boxed cards */
.grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.craft { display: grid; gap: .85rem; color: inherit; }
.craft img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.craft .body { padding: 0; }
.craft h3 { margin: 0 0 .2rem; font-family: var(--display); font-size: 1.35rem; }
.craft p { margin: 0 0 .4rem; color: var(--muted); font-size: .95rem; }
.craft .meta { color: var(--muted); font-size: .88rem; margin-bottom: .25rem; }
.price { color: var(--accent); font-weight: 700; }
.meta-line { color: var(--accent); font-size: .88rem; font-weight: 650; margin: 0 0 .5rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  padding: .65rem .85rem calc(.65rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  gap: .6rem;
}
.mobile-bar .btn { flex: 1; }
.mobile-bar .btn[hidden] { display: none !important; }
body.is-book .mobile-bar-book { display: none !important; }
body:not(.is-book) .mobile-bar-continue { display: none !important; }
body.is-book .mobile-bar-continue[hidden] { display: none !important; }
body.is-book .mobile-bar-continue:not([hidden]) { display: inline-flex; }

table.pricing { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: .95rem; }
table.pricing th, table.pricing td {
  text-align: left; padding: .95rem .35rem;
  border-bottom: 1px solid var(--line);
}
table.pricing th {
  color: var(--muted); font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.faq details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq summary { cursor: pointer; font-weight: 650; font-size: 1.05rem; font-family: var(--display); }
.faq p { color: var(--muted); margin: .65rem 0 0; }

.book-title { font-size: clamp(1.85rem, 4vw, 2.75rem); margin: 0 0 .35rem; }
.book-lead { margin: 0 0 .55rem; max-width: 34rem; }
.book-dock { margin: 0 0 1.1rem; }
.maps-dir {
  font-weight: 650; color: var(--accent);
  text-decoration: underline; text-underline-offset: 3px;
}
.dock-nap .maps-dir { white-space: nowrap; }
.dock-map {
  margin: 1.35rem 0 0; max-width: 42rem;
}
.dock-map iframe {
  display: block; width: 100%; height: min(22rem, 58vw);
  border: 1px solid var(--line); background: var(--wash);
}
.site-footer .maps-dir {
  color: inherit; font-weight: 500; text-decoration: underline;
  text-underline-offset: 2px;
}
.book-error {
  margin: 0 0 1rem; padding: .85rem .9rem;
  border: 1px solid color-mix(in srgb, #b42318 45%, var(--line));
  background: color-mix(in srgb, #b42318 8%, var(--surface));
  color: var(--text); font-size: .92rem;
}
.book-error[hidden] { display: none !important; }
.book-contact { display: grid; gap: 1rem; }
.contact-form { display: grid; gap: 1rem; max-width: 32rem; margin: 1.25rem 0 0; }
.contact-form label { display: grid; gap: .35rem; font-weight: 650; font-size: .92rem; }
.contact-form input, .contact-form textarea {
  font: inherit; font-weight: 500; padding: .7rem .8rem;
  border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--text);
}
.contact-form textarea { min-height: 9rem; resize: vertical; }
.contact-honey { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.contact-form-status { margin: 0; padding: .75rem .85rem; border-radius: 8px; font-size: .92rem; }
.contact-form-status.is-ok { border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line)); }
.contact-form-status.is-err {
  border: 1px solid color-mix(in srgb, #b42318 45%, var(--line));
  background: color-mix(in srgb, #b42318 8%, var(--surface));
}
.contact-form-status[hidden] { display: none !important; }
.book-waiver {
  padding: .95rem 1rem; border: 1px solid var(--line);
  background: color-mix(in srgb, var(--wash) 55%, transparent);
}
.book-waiver[hidden] { display: none !important; }
.book-meta:empty { display: none; }
.book-extras {
  border: 1px solid var(--line); padding: .95rem 1rem;
  background: color-mix(in srgb, var(--wash) 55%, transparent);
  display: grid; gap: .65rem;
}
.book-extras[hidden] { display: none !important; }
.book-extras-title {
  margin: 0; font-weight: 650; color: var(--text);
  font-family: var(--display); font-size: 1.05rem;
}
.book-extras #addons-box { display: grid; gap: .65rem; }
.estimate-line { margin: 0; }

.book-form {
  display: grid; gap: 1rem; max-width: 46rem;
  padding: 1.75rem 0 0; border-top: 1px solid var(--line);
  background: transparent;
}
.book-form label { display: grid; gap: .35rem; font-size: .88rem; color: var(--muted); letter-spacing: .02em; }
.book-form label.check { grid-template-columns: auto 1fr; align-items: center; gap: .65rem; color: var(--text); }
.book-form label.check span, .book-form #waiver-label { color: var(--text); }
.book-form label[hidden], #addons-box[hidden] { display: none !important; }
.book-form input, .book-form select {
  padding: .9rem .85rem; border-radius: 0; border: 1px solid var(--line);
  background: var(--surface); color: var(--text); font: inherit;
  min-height: 50px; width: 100%; font-size: 16px;
}
.book-form input[type=checkbox] { width: auto; min-height: 0; }
.book-steps {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin: 0 0 1.5rem;
  border-bottom: 1px solid var(--line);
}
.book-step-tab {
  display: grid; gap: .15rem; padding: 1rem .75rem 1.1rem; text-align: left;
  border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px;
  color: var(--muted); font-size: .72rem; background: transparent;
  letter-spacing: .08em; text-transform: uppercase; min-width: 0; cursor: pointer;
  font: inherit; width: 100%;
}
.book-step-tab strong {
  display: block; color: var(--text); font-size: clamp(.95rem, 2.4vw, 1.05rem);
  letter-spacing: 0; text-transform: none; font-family: var(--display);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.book-step-tab.active { border-bottom-color: var(--accent); color: var(--accent); }
.book-step-tab.active strong { color: var(--accent); }
.book-step-tab.done strong { color: var(--text); }
.book-panel[hidden] { display: none !important; }
.book-nav { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: .35rem; }
.cal-head {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: .75rem;
}
.cal-head h3 { margin: 0; font-size: 1.25rem; font-family: var(--display); }
.cal-head button {
  min-width: 44px; min-height: 44px; border-radius: 0; border: 1px solid var(--line);
  background: transparent; color: var(--text); font: inherit; cursor: pointer;
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .35rem; margin-bottom: 1rem; }
.cal-dow {
  text-align: center; font-size: .68rem; color: var(--muted); padding: .25rem 0;
  text-transform: uppercase; letter-spacing: .08em;
}
.cal-day {
  aspect-ratio: 1; border-radius: 0; border: 1px solid transparent;
  background: color-mix(in srgb, var(--wash) 70%, #fff); color: var(--text);
  font: inherit; font-size: .95rem; cursor: pointer; min-height: 40px;
}
.cal-day:hover:not(:disabled) { border-color: color-mix(in srgb, var(--accent) 55%, transparent); }
.cal-day.selected {
  background: var(--accent); color: var(--btn-text);
}
.cal-day:disabled, .cal-day.muted { opacity: .35; cursor: not-allowed; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr)); gap: .5rem; }
.slot-btn {
  min-height: 44px; border-radius: 0; border: 1px solid var(--line);
  background: var(--surface); color: var(--text); font: inherit; cursor: pointer; padding: .55rem .4rem;
}
.slot-btn:hover:not(:disabled) { border-color: var(--accent); }
.slot-btn.selected { background: var(--accent); color: var(--btn-text); border-color: var(--accent); }
.slot-btn:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.pay-summary {
  display: grid; gap: .45rem; padding: 1.25rem 0 0;
  border-top: 1px solid var(--line); color: var(--text);
}
.pay-head strong { color: var(--accent); font-size: 1.2rem; }
.pay-meta { color: var(--muted); font-size: .95rem; }
.pay-lines {
  display: grid; gap: .4rem; margin-top: .55rem;
  padding-top: .85rem; border-top: 1px solid var(--line);
}
.pay-row, .pay-total, .pay-dock {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
}
.pay-row { color: var(--text); font-size: 1rem; }
.pay-total {
  margin-top: .35rem; padding-top: .85rem; border-top: 1px solid var(--line);
  font-size: 1.25rem; font-weight: 700; font-family: var(--display);
}
.pay-total span:last-child { color: var(--accent); }
.pay-dock { color: var(--muted); font-size: .95rem; }
.note { color: var(--muted); font-size: .92rem; }

.site-footer {
  margin-top: 0; padding: clamp(3rem, 7vw, 4.5rem) 0 5.75rem;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: .92rem;
  background: color-mix(in srgb, var(--wash) 65%, var(--bg));
}
.foot-grid {
  display: grid; gap: 2rem; grid-template-columns: 1.4fr 1fr;
}
.site-footer strong {
  display: block; color: var(--text); font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .65rem; letter-spacing: -.02em;
}
.foot-links {
  display: flex; flex-wrap: wrap; gap: .55rem 1.1rem; margin-top: .35rem;
  font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
}
.foot-links a:hover { color: var(--text); }

.reveal { opacity: 0; transform: translateY(22px); animation: up .95s cubic-bezier(.22,1,.36,1) forwards; }
.reveal.d2 { animation-delay: .16s; }
.reveal.d3 { animation-delay: .3s; }
@keyframes up { to { opacity: 1; transform: none; } }

.prose { color: var(--muted); max-width: 42rem; line-height: 1.8; }
.prose p { margin: 0 0 1rem; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { margin: 0 0 1rem; padding-left: 1.15rem; }
.crumbs { font-size: .8rem; color: var(--muted); margin: 0 0 1.25rem; letter-spacing: .04em; text-transform: uppercase; }
.crumbs a:hover { color: var(--text); }
.kw { display: flex; flex-wrap: wrap; gap: .5rem .85rem; margin: 1.25rem 0 0; font-size: .88rem; color: var(--muted); }
.kw a { border-bottom: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); }
.area-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.area-list a {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1.1rem 0; color: var(--text);
  border-bottom: 1px solid var(--line);
  font-family: var(--display); font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}
.area-list a::after { content: "→"; font-family: var(--sans); font-size: 1rem; color: var(--accent); }
.area-list a:hover { color: var(--accent); }

.craft-hero {
  position: relative; display: grid; align-items: end;
  min-height: 100svh; min-height: 100vh;
  overflow: hidden; background: #0c1418;
}
.craft-hero-media {
  position: absolute; inset: 0;
  background: #0c1418;
}
.craft-hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.craft-hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.12) 48%, rgba(0,0,0,.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, transparent 38%, rgba(0,0,0,.55) 100%);
}
.craft-hero .wrap {
  position: relative; z-index: 1;
  padding: 0 0 clamp(2.5rem, 8vh, 4.5rem); color: #fff;
}
.craft-hero .crumbs { color: color-mix(in srgb, #fff 70%, transparent); }
.craft-hero .crumbs a:hover { color: #fff; }
.craft-hero h1 {
  font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 .45rem; color: #fff; letter-spacing: -.03em; max-width: 16ch;
}
.craft-hero .lead { color: color-mix(in srgb, #fff 86%, transparent); margin: 0; max-width: 34rem; }
.craft-hero .package-callout {
  border-color: color-mix(in srgb, #fff 30%, transparent) !important;
  background: color-mix(in srgb, #061820 62%, transparent) !important;
  color: #fff;
}
.craft-hero .package-callout p,
.craft-hero .package-callout .note {
  color: color-mix(in srgb, #fff 90%, transparent) !important;
}

body.is-home { padding-top: 0; }
body.is-home .site-footer { margin-top: 0; }

@media (max-width: 1100px) {
  .nav { gap: 0 .85rem; font-size: .68rem; letter-spacing: .09em; }
  .header-cta { padding: .8rem 1rem; font-size: .72rem; }
}
@media (max-width: 960px) {
  .moment { grid-template-columns: 1fr; }
  .moment-media { min-height: 42vh; }
  .moment-media::after { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--text) 55%, transparent)); }
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
  .fleet-item { aspect-ratio: 3/4; }
  .paddle-fleet { grid-template-columns: 1fr; }
  .paddle-fleet .fleet-item { aspect-ratio: 16/10; }
  .fleet-item .cap { padding: .85rem .75rem .8rem; }
  .fleet-item h3 { font-size: 1.15rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .section-head.row { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .site-header .inner {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 0;
  }
  .site-header .header-actions { grid-column: 2; }
  .site-header.nav-open,
  body.is-home .site-header.nav-open {
    background: #f5f7f9 !important;
    background: var(--bg) !important;
    color: var(--text) !important;
    border-bottom: 1px solid var(--line);
  }
  .site-header.nav-open .brand,
  .site-header.nav-open .nav-toggle { color: var(--text) !important; }
  .site-header .nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    padding: .35rem 0 .35rem;
    max-height: min(70vh, 28rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--bg);
  }
  .site-header .nav.open { display: flex; }
  .site-header.nav-open .nav {
    margin-top: .2rem;
    padding-top: .35rem;
    border-top: 1px solid var(--line);
  }
  .nav a {
    padding: 1.05rem .15rem;
    border-bottom: 1px solid var(--line);
    font-size: .92rem; min-height: 48px; letter-spacing: .1em;
    display: flex; align-items: center;
    color: var(--text) !important;
  }
  .nav a.active {
    color: var(--accent) !important;
    font-weight: 700;
  }
  .nav a.active::after { display: none; }
  .hero-copy { padding-bottom: 3.5rem; }
  .hero h1 { max-width: none; }
  .mobile-bar { display: flex; }
  .book-form { max-width: none; gap: .9rem; padding-top: 1.15rem; }
  body { padding-bottom: calc(4.75rem + env(safe-area-inset-bottom)); }
  body.is-book .book-section { padding-top: 1.25rem; padding-bottom: 1.5rem; }
  body.is-book .book-lead { font-size: .98rem; line-height: 1.45; }
  body.is-book .book-nav .book-primary { display: none; }
  body.is-book .book-nav:not(:has(.secondary)) { display: none; }
  body.is-book .book-nav:has(.secondary) { margin-top: .15rem; }
  body.is-book .site-footer { padding-bottom: 6.5rem; }
  .process-step { grid-template-columns: 3.5rem 1fr; gap: .85rem; }
  .book-steps {
    display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; margin-bottom: 1rem;
  }
  .book-steps::-webkit-scrollbar { display: none; }
  .book-step-tab {
    flex: 1 0 30%; min-width: 6.5rem; padding: .7rem .5rem .85rem;
  }
  .slot-grid { grid-template-columns: repeat(auto-fill, minmax(5.4rem, 1fr)); gap: .4rem; }
  .slot-btn { min-height: 42px; font-size: .88rem; padding: .45rem .25rem; }
  .craft-hero { min-height: 100svh; min-height: 100vh; }
  .craft-hero h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .actions .btn { width: 100%; }
}
@media (max-width: 420px) {
  .brand { font-size: .92rem; gap: .5rem; }
  .brand img { width: 30px; height: 30px; }
  .book-step-tab { min-width: 5.75rem; font-size: .62rem; }
  .book-step-tab strong { font-size: .86rem; }
  .book-title { font-size: 1.7rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media .hero-img, .craft-hero-media img { animation: none; transform: none; }
  .reveal { animation: none; opacity: 1; transform: none; }
  .fleet-item img { transition: none; }
}
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
