/* =========================================================
   Hidden Creek Marina — site styles
   Modern lakeside palette: soft blues, greens, warm wood
   ========================================================= */

:root {
  --c-deep:    #1B3A52;
  --c-water:   #2C6E8F;
  --c-mist:    #DCE7EC;
  --c-reed:    #6FA98F;
  --c-wood:    #B8895C;
  --c-sand:    #F1ECE2;
  --c-paper:   #FBFAF6;
  --c-ink:     #1A2530;
  --c-muted:   #5A6A75;
  --c-line:    #E0DCD2;

  --shadow-sm: 0 1px 2px rgba(26, 37, 48, 0.06), 0 2px 6px rgba(26, 37, 48, 0.05);
  --shadow-md: 0 4px 16px rgba(26, 37, 48, 0.08);
  --shadow-lg: 0 18px 40px rgba(26, 37, 48, 0.14);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 22px;

  --maxw: 1180px;
  --pad: clamp(1rem, 3vw, 2rem);

  --font-sans: "Inter", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --font-display: "Fraunces", "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--c-water); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--c-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--c-deep);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-reed);
  margin-bottom: .8rem;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { padding: clamp(3rem, 7vw, 6rem) 0; }
section.tight { padding: clamp(2rem, 4vw, 3.5rem) 0; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--c-deep);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.brand-mark {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark img,
.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
/* Footer uses the logo on a dark background — invert to light. */
.site-footer .brand-mark img,
.site-footer .brand-mark svg {
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--c-ink);
  font-size: .96rem;
  font-weight: 500;
  position: relative;
  padding: .25rem 0;
}
.nav-links a:hover { color: var(--c-water); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--c-reed);
  border-radius: 2px;
}
.nav-cta {
  background: var(--c-deep);
  color: #fff !important;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
}
.nav-cta:hover { background: var(--c-water); color: #fff !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: .45rem .6rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-deep);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--c-paper);
    border-bottom: 1px solid var(--c-line);
    padding: .5rem var(--pad) 1rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-links a {
    padding: .9rem 0;
    border-bottom: 1px solid var(--c-line);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta {
    align-self: start;
    margin-top: .6rem;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
}
.btn-primary { background: var(--c-deep); color: #fff; }
.btn-primary:hover { background: var(--c-water); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--c-deep);
  border-color: var(--c-deep);
}
.btn-ghost:hover { background: var(--c-deep); color: #fff; }
.btn-light {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  backdrop-filter: blur(4px);
}
.btn-light:hover { background: #fff; color: var(--c-deep); border-color: #fff; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(15,38,57,.55) 0%, rgba(15,38,57,.78) 100%),
    radial-gradient(ellipse at 20% 30%, #2C6E8F 0%, #1B3A52 55%, #0E2436 100%);
}
.hero-waves {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: -1;
  width: 100%;
  height: 90px;
  pointer-events: none;
}
.hero-inner {
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(6rem, 14vw, 10rem);
  max-width: 720px;
}
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.86);
  max-width: 56ch;
}
.hero-cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
  font-size: .9rem;
}
.hero-meta strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

/* page hero (subpages) */
.page-hero {
  background: linear-gradient(180deg, #1B3A52, #214c69);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.page-hero h1 { color: #fff; margin: 0; }
.page-hero p {
  color: rgba(255,255,255,.82);
  max-width: 60ch;
  margin-top: 1rem;
}
.crumbs {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  margin-bottom: .8rem;
}
.crumbs a { color: rgba(255,255,255,.85); }
.crumbs a:hover { color: #fff; }

/* ---------- generic surfaces ---------- */
.surface-sand { background: var(--c-sand); }
.surface-mist { background: var(--c-mist); }
.surface-deep { background: var(--c-deep); color: #fff; }
.surface-deep h2, .surface-deep h3 { color: #fff; }
.surface-deep p { color: rgba(255,255,255,.85); }

.section-head {
  max-width: 740px;
  margin-bottom: 2.5rem;
}
.section-head.center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}

/* ---------- service cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--c-mist);
  color: var(--c-deep);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .35em; }
.card p { color: var(--c-muted); }
.card .card-link {
  margin-top: auto;
  font-weight: 600;
  font-size: .9rem;
  color: var(--c-water);
}
.card .card-link::after {
  content: " →";
  transition: margin-left .15s ease;
  display: inline-block;
}
.card:hover .card-link::after { margin-left: 4px; }

/* ---------- two-col ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split.flip > .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--c-mist);
}
.split-media svg, .split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split.flip > .split-media { order: 0; }
}

/* ---------- testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.quote {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--c-deep);
  margin-bottom: 1rem;
}
.quote footer {
  font-size: .88rem;
  color: var(--c-muted);
}
.quote footer strong {
  display: block;
  color: var(--c-ink);
  font-family: var(--font-sans);
}

/* ---------- callout ---------- */
.callout {
  background: linear-gradient(120deg, var(--c-deep) 0%, var(--c-water) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.callout h2 { color: #fff; margin: 0 0 .4em; }
.callout p { color: rgba(255,255,255,.85); max-width: 50ch; margin: 0; }
.callout .actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer {
  background: #0F2434;
  color: rgba(255, 255, 255, .8);
  padding: 4rem 0 2rem;
  font-size: .92rem;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .foot-grid { grid-template-columns: 1fr; }
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #fff; }
.foot-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .84rem;
  color: rgba(255,255,255,.55);
}

/* ---------- rate tables ---------- */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.rate-table th, .rate-table td {
  text-align: left;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--c-line);
}
.rate-table th {
  background: var(--c-mist);
  color: var(--c-deep);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.rate-table tr:last-child td { border-bottom: none; }
.rate-table td.price {
  font-family: var(--font-display);
  color: var(--c-deep);
  font-size: 1.15rem;
  white-space: nowrap;
}
.rate-note {
  font-size: .88rem;
  color: var(--c-muted);
  margin-top: -.5rem;
  margin-bottom: 2.5rem;
}

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--c-mist);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease;
}
.gallery-item:hover { transform: translateY(-2px); }
.gallery-item svg, .gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(15,36,52,0) 0%, rgba(15,36,52,.78) 100%);
  color: #fff;
  font-size: .82rem;
  padding: 1.4rem .9rem .7rem;
}
.gallery-tall { grid-row: span 2; aspect-ratio: 4 / 6; }
.gallery-wide { grid-column: span 2; aspect-ratio: 8 / 3; }
@media (max-width: 600px) {
  .gallery-tall, .gallery-wide { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,36,52,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox-content {
  max-width: 1000px;
  width: 100%;
  background: var(--c-deep);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.lightbox-content svg, .lightbox-content img {
  width: 100%; height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: .8rem; right: .9rem;
  background: rgba(0,0,0,.4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  margin-bottom: .8rem;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  color: var(--c-deep);
  position: relative;
  padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--c-water);
  font-weight: 300;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 1.4rem 1.2rem;
  color: var(--c-muted);
}

/* ---------- contact / forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.info-block {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.info-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-line);
}
.info-row:last-child { border-bottom: none; }
.info-row .lbl {
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
  min-width: 90px;
}
.info-row .val { color: var(--c-ink); }
.hours-table { width: 100%; }
.hours-table td {
  padding: .35rem 0;
  font-size: .95rem;
}
.hours-table td:last-child { text-align: right; color: var(--c-muted); }

.form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-deep);
  letter-spacing: .03em;
}
.field input, .field select, .field textarea {
  font: inherit;
  color: var(--c-ink);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: .75rem .9rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-water);
  box-shadow: 0 0 0 3px rgba(44, 110, 143, 0.15);
}
.form-success {
  background: #E9F2EC;
  border: 1px solid #B6D6BF;
  color: #1F4F36;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: none;
}
.form-success.is-visible { display: block; }
.form .err {
  color: #B0413E;
  font-size: .82rem;
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #B0413E; }
.field.has-error .err { display: block; }

/* map placeholder */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  background: var(--c-mist);
}
.map-frame svg { width: 100%; height: 100%; }

/* ---------- features list ---------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: .7rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: var(--c-ink);
}
.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--c-reed);
  background-image: linear-gradient(135deg, var(--c-reed), var(--c-water));
  position: relative;
}

/* ---------- helpers ---------- */
.text-center { text-align: center; }
.muted { color: var(--c-muted); }
.spacer-sm { height: 1rem; }
.spacer { height: 2rem; }
.spacer-lg { height: 4rem; }
.divider {
  border: none;
  border-top: 1px solid var(--c-line);
  margin: 2rem 0;
}
.tag {
  display: inline-block;
  background: var(--c-mist);
  color: var(--c-deep);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 999px;
}

/* =========================================================
   Coming-soon splash page
   ========================================================= */

.splash {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--c-paper);
  position: relative;
  overflow: hidden;
}
.splash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1200px 700px at 80% -10%, rgba(111, 169, 143, 0.18), transparent 70%),
    radial-gradient(ellipse 900px 600px at -10% 110%, rgba(44, 110, 143, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.splash-top,
.splash-main,
.splash-bottom { position: relative; z-index: 1; }

.splash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem clamp(1rem, 4vw, 2.5rem);
}
.splash-top .brand-mark {
  width: 38px; height: 38px;
}
.splash-top .brand {
  font-size: 1.05rem;
}
.splash-top .splash-nav {
  display: flex;
  gap: 1.4rem;
  font-size: .92rem;
}
.splash-top .splash-nav a {
  color: var(--c-ink);
  font-weight: 500;
}
.splash-top .splash-nav a:hover { color: var(--c-water); }

.splash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem);
  max-width: 720px;
  margin: 0 auto;
}
.splash-logo {
  width: clamp(140px, 18vw, 200px);
  height: auto;
  margin-bottom: 1.4rem;
}
.splash-eyebrow {
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-reed);
  font-weight: 600;
  margin-bottom: 1rem;
}
.splash-wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: var(--c-deep);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
}
.splash-tag {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--c-muted);
  max-width: 52ch;
  margin: 0 auto 2.2rem;
  line-height: 1.55;
}
.splash-tag strong { color: var(--c-ink); font-weight: 600; }

.notify-form {
  display: flex;
  gap: .6rem;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 1.8rem;
}
.notify-form input[type="email"] {
  flex: 1;
  font: inherit;
  padding: .85rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: #fff;
  color: var(--c-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.notify-form input[type="email"]:focus {
  outline: none;
  border-color: var(--c-water);
  box-shadow: 0 0 0 3px rgba(44, 110, 143, 0.18);
}
.notify-form button {
  font: inherit;
  font-weight: 600;
  padding: .85rem 1.5rem;
  background: var(--c-deep);
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, transform .12s ease;
}
.notify-form button:hover { background: var(--c-water); transform: translateY(-1px); }

.notify-msg {
  font-size: .92rem;
  color: var(--c-reed);
  margin-bottom: 1.6rem;
  min-height: 1.4em;
}
.notify-msg.is-error { color: #B0413E; }

@media (max-width: 480px) {
  .notify-form { flex-direction: column; }
  .notify-form button { width: 100%; }
}

.splash-meta {
  display: flex;
  gap: clamp(1rem, 4vw, 2.4rem);
  flex-wrap: wrap;
  justify-content: center;
  font-size: .92rem;
  color: var(--c-muted);
  margin-top: .8rem;
}
.splash-meta a { color: var(--c-ink); font-weight: 500; }
.splash-meta a:hover { color: var(--c-water); }
.splash-meta span:not(:last-child)::after {
  content: "·";
  margin-left: clamp(1rem, 4vw, 2.4rem);
  color: var(--c-line);
}
@media (max-width: 600px) {
  .splash-meta span:not(:last-child)::after { content: ""; margin: 0; }
}

.splash-bottom {
  padding: 1.4rem clamp(1rem, 4vw, 2.5rem);
  text-align: center;
  font-size: .82rem;
  color: var(--c-muted);
}
.splash-bottom .creek {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--c-reed);
}

