/* =================================================================
   MyMy's Tide Pool Adventures — site styles
   Cannon Beach Postcard aesthetic
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;700&family=Bitter:wght@400;500;600;700&family=Work+Sans:wght@400;500;600;700&display=swap');

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
  --bg:        #fbf6ec;     /* warm cream postcard */
  --bg-card:   #ffffff;
  --paper:     #f5ebd6;     /* aged paper */
  --paper-2:   #efe3c8;
  --ink:       #1f3a44;     /* deep teal-ink */
  --ink-soft:  #4a6470;
  --ink-muted: #708590;
  --teal:      #1d8a96;     /* sea-glass turquoise */
  --teal-deep: #0e6b7a;
  --teal-dark: #084751;
  --coral:     #e07b4f;     /* sea-star orange */
  --coral-deep:#c25e34;
  --gold:      #f4b942;     /* sun gold */
  --gold-deep: #c8901e;
  --rope:      #8b6b3a;
  --rule:      #d4c4a3;
  --error:     #b3331f;
  --success:   #1d6b3a;

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

  --shadow-stamp: 0 3px 0 var(--ink);
  --shadow-card: 0 16px 40px -12px rgba(31,58,68,0.18), 0 4px 8px -4px rgba(31,58,68,0.10);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(244,185,66,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(29,138,150,0.06) 0%, transparent 50%);
  min-height: 100vh;
  display: flex; flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); }
a:hover { color: var(--coral); }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Bitter', Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

.handwritten {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  color: var(--coral);
  font-size: 1.55rem;
  display: inline-block;
  transform: rotate(-2deg);
  line-height: 1.2;
}
.handwritten--center { transform: rotate(-1deg); }
.handwritten::before { content: '~ '; color: var(--gold-deep); }

.eyebrow {
  display: inline-block;
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }
.container--wide   { max-width: 1380px; }

main { flex: 1; }

.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.section--paper { background: var(--paper); border-top: 3px dotted var(--rope); border-bottom: 3px dotted var(--rope); }
.section--ink   { background: var(--ink); color: #f1eadc; }
.section--ink h2, .section--ink h3 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary {
  background: var(--teal-deep);
  color: #fff;
  box-shadow: 0 4px 0 var(--ink);
  padding: 16px 30px;
  font-size: 15px;
}
.btn--primary:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink); color: #fff; }
.btn--primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--ink); }

.btn--coral {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-stamp);
}
.btn--coral:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 5px 0 var(--ink); color: #fff; }
.btn--coral:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--ink); }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-stamp);
}
.btn--gold:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 5px 0 var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 8px;
  border-bottom: 2px dashed var(--ink-muted);
  border-radius: 0;
}
.btn--ghost:hover { color: var(--coral); border-color: var(--coral); }

.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------- Header / nav ---------- */
.topbar {
  background: var(--ink);
  color: var(--bg);
  padding: 9px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex; justify-content: center; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.topbar span { display: inline-flex; align-items: center; gap: 8px; }
.topbar .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.site-header {
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  position: relative;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--ink);
}
.brand img { height: 60px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Caveat', cursive; font-weight: 700;
  font-size: 26px; color: var(--coral);
  transform: rotate(-1.5deg); transform-origin: left;
}
.brand-sub {
  font-family: 'Bitter', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); margin-top: 2px;
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--ink); text-decoration: none; font-size: 15px;
  font-weight: 500; position: relative; padding: 4px 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

/* Mobile menu */
.nav-toggle {
  display: none;
  background: transparent; border: 2px solid var(--ink);
  width: 44px; height: 44px;
  border-radius: 8px; padding: 0;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink); position: relative;
  transition: transform 0.2s, background 0.2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink);
  transition: transform 0.2s, top 0.2s;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: -24px; right: -24px;
    background: var(--bg-card);
    flex-direction: column; gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--rule);
    border-top: 1px solid var(--rule);
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.10);
    display: none;
    z-index: 50;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 14px 24px;
    width: 100%;
    border-bottom: 1px dotted var(--rule);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .nav-links .btn { margin: 12px 24px; }
}

/* ---------- Hero (homepage) ---------- */
.hero {
  padding: 64px 0 40px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
  position: relative;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .highlight {
  position: relative; display: inline-block; z-index: 1;
}
.hero h1 .highlight::before {
  content: ''; position: absolute;
  left: -4px; right: -4px; bottom: 4px;
  height: 18px; background: var(--gold);
  z-index: -1; transform: skew(-3deg);
  opacity: 0.65;
}
.hero h1 em {
  font-style: italic; color: var(--teal-deep);
  font-family: 'Caveat', cursive; font-weight: 700;
  font-size: 1.15em;
}
.hero p.lead { max-width: 500px; margin-bottom: 32px; }
.hero p.lead strong { color: var(--ink); font-weight: 600; }
.hero .handwritten { margin-bottom: 8px; }
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero-visual { position: relative; }
.postcard-frame {
  background: #fff;
  padding: 14px 14px 60px;
  box-shadow: var(--shadow-card);
  transform: rotate(2deg);
  position: relative;
  border-radius: 4px;
  max-width: 520px;
  margin: 0 auto;
}
.postcard-frame::before {
  content: ''; position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 90px; height: 26px;
  background: rgba(244,185,66,0.55);
  border: 1px dashed rgba(200,144,30,0.4);
  border-radius: 2px;
}
.postcard-frame img { width: 100%; border-radius: 2px; }
.postcard-frame .caption {
  position: absolute; bottom: 16px; left: 0; right: 0;
  text-align: center;
  font-family: 'Caveat', cursive; font-weight: 500;
  color: var(--ink); font-size: 22px;
}

.stamp-decor { position: absolute; pointer-events: none; }
.stamp-1 {
  top: -16px; right: -8px;
  background: var(--coral); color: #fff;
  width: 78px; height: 78px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Caveat', cursive; font-weight: 700;
  font-size: 17px; text-align: center; line-height: 1.1;
  transform: rotate(12deg);
  border: 3px dashed #fff;
  box-shadow: 0 0 0 2px var(--coral);
}
.stamp-2 {
  bottom: 24px; left: -22px;
  font-family: 'Caveat', cursive; font-weight: 700;
  color: var(--teal-deep); font-size: 22px;
  transform: rotate(-8deg);
  background: var(--paper); padding: 6px 14px;
  border: 2px solid var(--teal-deep);
  border-radius: 8px;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 36px 0 24px; }
  .stamp-1 { width: 64px; height: 64px; font-size: 14px; right: 4px; }
  .stamp-2 { left: 8px; bottom: 30px; font-size: 18px; }
}

/* ---------- Page hero (non-homepage pages) ---------- */
.page-hero {
  padding: 56px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.page-hero .handwritten { margin-bottom: 6px; }
.page-hero h1 { margin: 0 auto; max-width: 800px; }
.page-hero p { color: var(--ink-soft); max-width: 640px; margin: 16px auto 0; font-size: 1.1rem; line-height: 1.65; }

/* ---------- Quickinfo strip (4 icon cards) ---------- */
.quickinfo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.qi-card { display: flex; align-items: flex-start; gap: 14px; }
.qi-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--bg-card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral);
  box-shadow: 3px 3px 0 var(--ink);
}
.qi-icon svg { width: 26px; height: 26px; }
.qi-title {
  font-family: 'Bitter', serif; font-weight: 700;
  font-size: 15px; color: var(--ink); margin-bottom: 4px;
}
.qi-text { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

@media (max-width: 768px) { .quickinfo { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (max-width: 480px) { .quickinfo { grid-template-columns: 1fr; } }

/* ---------- Tour spotlight (next available) ---------- */
.spotlight-card {
  background: var(--bg-card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 36px 36px 32px;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
  max-width: 720px; margin: 0 auto;
}
.spotlight-card .corner-stamp {
  position: absolute; top: -18px; left: -14px;
  background: var(--coral); color: #fff;
  font-family: 'Caveat', cursive; font-weight: 700;
  font-size: 18px;
  padding: 8px 18px;
  border-radius: 100px;
  transform: rotate(-6deg);
  box-shadow: 0 3px 0 var(--ink);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
}
.spotlight-when { font-size: 13px; color: var(--ink-soft); margin-bottom: 4px; font-weight: 500; }
.spotlight-where {
  font-family: 'Bitter', serif; font-weight: 700;
  font-size: 1.5rem; color: var(--ink); line-height: 1.1;
}
.spotlight-meta { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }
.spotlight-meta strong { color: var(--teal-deep); font-weight: 600; }
.tour-stat { text-align: center; padding: 0 4px; border-left: 1px dotted var(--rule); }
.tour-stat:first-of-type { border-left: 0; }
.tour-stat-num {
  font-family: 'Bitter', serif; font-weight: 700;
  font-size: 1.65rem; color: var(--ink); line-height: 1;
}
.tour-stat-lbl {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; margin-top: 4px;
}
@media (max-width: 900px) {
  .spotlight-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .spotlight-grid .spotlight-when-block { grid-column: 1 / -1; text-align: center; padding-bottom: 12px; border-bottom: 1px dotted var(--rule); }
  .spotlight-grid .btn { grid-column: 1 / -1; justify-self: center; margin-top: 8px; }
  .tour-stat:first-of-type { border-left: 0; }
  .spotlight-card { padding: 28px 20px 24px; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--rule);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .card-grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .card-grid--3 { grid-template-columns: 1fr; } }

.creature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid var(--rule);
  position: relative;
  transition: transform 0.2s;
}
.creature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.creature-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper);
  border-radius: 50%;
  margin-bottom: 14px;
  font-size: 32px;
}
.creature-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.creature-card .latin {
  font-family: 'Bitter', serif; font-style: italic; font-weight: 400;
  font-size: 13px; color: var(--ink-muted); margin-bottom: 10px;
}
.creature-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Location cards ---------- */
.location-card {
  background: var(--bg-card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}
.location-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.location-pin {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); color: var(--ink);
  font-family: 'Bitter', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid var(--rule);
}
.location-pin svg { width: 12px; height: 12px; color: var(--coral); }
.location-card h3 { margin-bottom: 6px; font-size: 1.4rem; }
.location-card .meeting { font-size: 13px; color: var(--ink-muted); margin-bottom: 12px; font-weight: 500; }
.location-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- About / meet MyMy section ---------- */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-portrait img { border-radius: var(--radius); border: 4px solid var(--bg-card); box-shadow: var(--shadow-card); }
.about-portrait {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 16px;
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow-card);
}
.about-portrait .caption {
  font-family: 'Caveat', cursive; font-weight: 500;
  text-align: center; padding-top: 14px; font-size: 20px;
  color: var(--ink);
}

.credentials {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px;
}
.cred-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Bitter', serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.06em;
  background: var(--paper); color: var(--ink);
  padding: 7px 14px; border-radius: 100px;
  border: 1px solid var(--rule);
}
.cred-pill svg { width: 14px; height: 14px; color: var(--coral); }

@media (max-width: 900px) {
  .about-row { grid-template-columns: 1fr; gap: 36px; }
  .about-portrait { max-width: 380px; margin: 0 auto; }
}

/* ---------- FAQ accordion (CSS-only details/summary) ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: 'Bitter', serif; font-weight: 700;
  font-size: 1.05rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Bitter', serif; font-weight: 700;
  color: var(--coral); font-size: 1.6rem; line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq[open] summary::after { content: '–'; }
.faq[open] { box-shadow: 4px 4px 0 var(--ink); border-color: var(--ink); }
.faq-body { padding: 0 22px 18px; color: var(--ink-soft); line-height: 1.65; }
.faq-body p + p { margin-top: 10px; }

/* ---------- Forms ---------- */
.form { display: flex; flex-direction: column; gap: 18px; max-width: 640px; }
.form--wide { max-width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form label {
  display: block;
  font-family: 'Bitter', serif; font-weight: 600;
  font-size: 14px; color: var(--ink);
  margin-bottom: 6px;
}
.form label .req { color: var(--coral); margin-left: 2px; }
.form .help { font-size: 12px; color: var(--ink-muted); font-weight: 400; margin-top: 4px; }

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="number"],
.form input[type="date"],
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  background: var(--bg-card);
  color: var(--ink);
  border: 2px solid var(--rule);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0; border-color: var(--teal-deep);
  box-shadow: 0 0 0 3px rgba(29,138,150,0.18);
}
.form textarea { min-height: 130px; resize: vertical; font-family: inherit; }

.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
  cursor: pointer;
}
.form-checkbox input { margin-top: 3px; }

.form-actions { margin-top: 8px; }

/* Form messages */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--rule);
  margin-bottom: 24px;
  font-size: 15px;
}
.alert--success { background: #e7f3eb; border-color: var(--success); color: var(--success); }
.alert--error   { background: #fbe9e6; border-color: var(--error);   color: var(--error); }
.alert strong { font-weight: 700; }

.field-error {
  color: var(--error); font-size: 13px; margin-top: 6px;
  font-weight: 500;
}
.has-error input, .has-error select, .has-error textarea { border-color: var(--error); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d8c9a6;
  padding: 56px 0 28px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 70px; width: auto; margin-bottom: 14px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.footer-brand p { color: #b9a888; font-size: 14px; line-height: 1.6; max-width: 320px; }
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #d8c9a6; text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px dashed #3d5560;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #97aab1; gap: 16px; flex-wrap: wrap;
}
.footer-bottom .handwritten { color: var(--gold); font-size: 1.1rem; transform: rotate(-1deg); }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Misc utilities ---------- */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading .handwritten { display: block; margin-bottom: 6px; }
.section-heading h2 { max-width: 720px; margin: 0 auto 14px; }
.section-heading p { max-width: 640px; margin: 0 auto; color: var(--ink-soft); }

.divider-rope {
  height: 12px;
  background-image: radial-gradient(circle at 6px 6px, var(--rope) 2px, transparent 2.5px);
  background-size: 18px 12px;
  background-repeat: repeat-x;
  background-position: 0 center;
  opacity: 0.4;
}

/* Print: trim noise */
@media print {
  .site-header, .site-footer, .topbar, .nav-toggle, .hero-cta, .form-actions { display: none; }
  body { background: #fff; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
