/*
   Wonderland Kayak — visual theme
   Turquoise-led palette
*/

:root {
  --hue-abyss: #06303a;
  --hue-deep: #0c5c6e;
  --hue-core: #0e8a9c;
  --hue-vivid: #1fc8d6;
  --hue-pale: #bdeef0;
  --hue-mist: #ecfafb;
  --hue-sand: #f3e9d8;
  --hue-snow: #ffffff;
  --ink-strong: #082730;
  --ink-soft: #5a7882;

  --type-display: "Spectral", Georgia, "Times New Roman", serif;
  --type-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --elev-1: 0 18px 50px -25px rgba(6, 48, 58, 0.45);
  --elev-2: 0 22px 60px -30px rgba(6, 48, 58, 0.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--type-body);
  color: var(--ink-strong);
  background: var(--hue-snow);
  line-height: 1.75;
  font-size: 1.05rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display-font {
  font-family: var(--type-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--hue-abyss);
  line-height: 1.12;
}

a { color: var(--hue-core); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--hue-deep); }

.eyebrow {
  font-family: var(--type-body);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--hue-vivid);
  display: inline-block;
}

/* Top navigation */
.navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hue-pale);
  padding-top: .9rem;
  padding-bottom: .9rem;
}

.navbar .container { justify-content: center; }

.navbar-brand {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.navbar-brand .brand-logo {
  height: 76px;
  width: auto;
  display: block;
}

.navbar .nav-link {
  font-weight: 700;
  color: var(--ink-strong) !important;
  margin: 0 .35rem;
  position: relative;
  font-size: .98rem;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 2px;
  background: var(--hue-vivid);
  transition: width .25s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: 100%; }
.navbar .nav-link.active { color: var(--hue-deep) !important; }

/* Home hero */
.showcase {
  position: relative;
  background:
    linear-gradient(160deg, rgba(6,48,58,.78) 0%, rgba(12,92,110,.68) 50%, rgba(14,138,156,.48) 100%),
    url("../kayak-wonder2.jpg") center 50% / cover no-repeat;
  color: #fff;
  padding: 7rem 0 7.5rem;
  overflow: hidden;
}
.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5;
  mix-blend-mode: overlay;
}
.showcase .container { position: relative; z-index: 2; }
.showcase h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 600;
}
.showcase .lead {
  color: rgba(255,255,255,.92);
  font-size: 1.2rem;
  max-width: 640px;
}
.showcase .eyebrow { color: var(--hue-pale); }

/* Buttons */
.pill-light {
  background: #fff;
  color: var(--hue-deep);
  font-weight: 800;
  border-radius: 100px;
  padding: .75rem 1.7rem;
  border: none;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pill-light:hover { transform: translateY(-2px); color: var(--hue-abyss); box-shadow: 0 18px 36px -14px rgba(0,0,0,.55); }

.pill-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  font-weight: 700;
  border-radius: 100px;
  padding: .75rem 1.7rem;
  transition: all .2s ease;
}
.pill-ghost:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

.pill-solid {
  background: linear-gradient(135deg, var(--hue-vivid), var(--hue-deep));
  color: #fff;
  font-weight: 800;
  border: none;
  border-radius: 100px;
  padding: .8rem 2rem;
  box-shadow: var(--elev-1);
  transition: transform .2s ease;
}
.pill-solid:hover { transform: translateY(-2px); color: #fff; }

/* Article body */
.band { padding: 4.5rem 0; }

.post-body { max-width: 820px; margin: 0 auto; }
.post-body p { margin-bottom: 1.35rem; color: #2c4750; }

.post-body h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 3.2rem 0 1.2rem;
  position: relative;
  padding-left: 1.1rem;
}
.post-body h2::before {
  content: "";
  position: absolute;
  left: 0; top: .15em;
  width: 5px; height: .9em;
  border-radius: 4px;
  background: linear-gradient(var(--hue-vivid), var(--hue-deep));
}

.lead-intro {
  font-family: var(--type-display);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--hue-deep);
  font-weight: 500;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* Media */
.media-figure {
  margin: 2.8rem 0;
}
.media-figure img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--elev-2);
  display: block;
}
.media-figure figcaption {
  margin-top: .7rem;
  font-size: .9rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}
img { max-width: 100%; height: auto; }

/* Inline list */
.tick-list { list-style: none; padding-left: 0; }
.tick-list li {
  position: relative;
  padding: .9rem 0 .9rem 2.4rem;
  border-bottom: 1px dashed var(--hue-pale);
  color: #2c4750;
}
.tick-list li::before {
  content: "›";
  position: absolute;
  left: .4rem; top: .75rem;
  color: var(--hue-vivid);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

/* Highlighted callout */
.highlight {
  background: var(--hue-mist);
  border: 1px solid var(--hue-pale);
  border-radius: 18px;
  padding: 1.8rem 2rem;
  margin: 2.5rem 0;
  box-shadow: var(--elev-1);
}
.highlight .eyebrow { margin-bottom: .4rem; }

/* Anchor summary box */
.anchor-box {
  background: var(--hue-mist);
  border: 1px solid var(--hue-pale);
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
}
.anchor-box h3 { font-size: 1.1rem; margin-bottom: .8rem; }
.anchor-box a {
  display: block;
  padding: .35rem 0;
  font-weight: 600;
  color: var(--hue-deep);
  border-bottom: 1px solid rgba(14,138,156,.12);
}
.anchor-box a:hover { color: var(--hue-vivid); padding-left: .3rem; }

/* Inner page header */
.page-head {
  background: linear-gradient(160deg, var(--hue-deep), var(--hue-core));
  color: #fff;
  padding: 5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-head h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-head .eyebrow { color: var(--hue-pale); }

.surface-card {
  background: #fff;
  border: 1px solid var(--hue-pale);
  border-radius: 20px;
  padding: 2.4rem;
  box-shadow: var(--elev-2);
}

.mail-chip {
  font-family: var(--type-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--hue-deep);
  background: var(--hue-mist);
  border: 1px dashed var(--hue-vivid);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  display: inline-block;
  user-select: all;
}

.legal-body h2 {
  font-size: 1.4rem;
  margin: 2.2rem 0 .8rem;
  color: var(--hue-deep);
}
.legal-body p, .legal-body li { color: #314d56; }

/* Footer */
.site-foot {
  background: var(--hue-abyss);
  color: rgba(255,255,255,.78);
  padding: 3.5rem 0 1.5rem;
}
.site-foot h5 {
  color: #fff;
  font-family: var(--type-display);
  font-weight: 600;
  margin-bottom: 1rem;
}
.site-foot a { color: var(--hue-pale); }
.site-foot a:hover { color: #fff; }
.site-foot .foot-links a { display: block; padding: .25rem 0; }
.foot-base {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
}

/* On-load reveal */
@keyframes emerge {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise { opacity: 0; animation: emerge .8s cubic-bezier(.2,.7,.2,1) forwards; }
.step-1 { animation-delay: .05s; }
.step-2 { animation-delay: .18s; }
.step-3 { animation-delay: .32s; }
.step-4 { animation-delay: .46s; }

@media (prefers-reduced-motion: reduce) {
  .rise { animation: none; opacity: 1; }
  html { scroll-behavior: auto; }
}

@media (max-width: 768px) {
  .showcase { padding: 5rem 0 5.5rem; }
  .band { padding: 3rem 0; }
}
