/* 256 Cedar Drive — Bayville, NJ */

@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/newsreader.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: oklch(0.972 0.008 90);
  --paper-2: oklch(0.945 0.01 90);
  --ink: oklch(0.22 0.014 180);
  --ink-2: oklch(0.36 0.012 180);
  --muted: oklch(0.5 0.012 180);
  --line: oklch(0.22 0.014 180 / 0.13);
  --teal: oklch(0.32 0.045 195);
  --teal-hover: oklch(0.24 0.04 195);
  --teal-panel: oklch(0.28 0.038 197);
  --teal-deep: oklch(0.18 0.018 197);
  --accent: oklch(0.5 0.05 195);
  --sans: Archivo, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  --serif: Newsreader, Georgia, 'Times New Roman', serif;
  --pad: clamp(20px, 5vw, 40px);
  --maxw: 1400px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.serif { font-family: var(--serif); font-weight: 300; }
h1, h2, h3 { font-family: var(--serif); font-weight: 300; letter-spacing: -0.02em; line-height: 1.06; }
h2 { font-size: clamp(30px, 4vw, 58px); }
.section h1 { font-size: clamp(30px, 4vw, 58px); }  /* h1 outside a hero */
h3 { font-size: clamp(21px, 2vw, 26px); line-height: 1.2; }
p { text-wrap: pretty; }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 13px var(--pad);
  background: oklch(0.972 0.008 90 / 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(0.22 0.014 180 / 0.1);
}
.hdr__brand { font-family: var(--serif); font-size: 19px; letter-spacing: -0.01em;
  white-space: nowrap; display: inline-flex; align-items: center; min-height: 44px; }
.hdr__nav { display: flex; align-items: center; gap: 26px; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; }
.hdr__nav a { color: var(--ink-2); }
.hdr__nav a:hover { color: var(--ink); }
/* the CTA is a button, not a nav link — keep it light-on-teal */
.hdr__nav a.btn-pill,
.hdr__nav a.btn-pill:hover { color: var(--paper); }
.hdr__nav a[aria-current='page'] { color: var(--ink); text-decoration: underline; text-underline-offset: 5px; }
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 20px; border-radius: 999px;
  background: var(--teal); color: var(--paper); letter-spacing: 0.06em;
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-pill:hover { background: var(--teal-hover); color: var(--paper); }
.hdr__toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 6px; width: 42px; height: 40px; cursor: pointer; }
.hdr__toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); margin: 4px auto; transition: transform .2s, opacity .2s; }
.hdr[data-open='true'] .hdr__toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hdr[data-open='true'] .hdr__toggle span:nth-child(2) { opacity: 0; }
.hdr[data-open='true'] .hdr__toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; height: 84vh; min-height: 520px; width: 100%; overflow: hidden; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top,
      oklch(0.16 0.02 195 / 0.88) 0%,
      oklch(0.16 0.02 195 / 0.62) 30%,
      oklch(0.16 0.02 195 / 0.22) 58%,
      oklch(0.16 0.02 195 / 0.1) 75%,
      oklch(0.16 0.02 195 / 0.4) 100%);
}
.hero__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 0 var(--pad) clamp(32px, 5vw, 52px); display: flex; flex-direction: column; gap: 14px; }
.hero__kicker { font-size: clamp(10px, 2.4vw, 12px); letter-spacing: 0.22em; text-transform: uppercase; color: oklch(0.97 0.01 90 / 0.85); }
.hero h1 { font-size: clamp(36px, 6.4vw, 100px); line-height: 0.98; letter-spacing: -0.025em; color: oklch(0.98 0.008 90); max-width: 15ch; text-wrap: balance; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: clamp(13px, 2.6vw, 14px); color: oklch(0.95 0.01 90 / 0.92); }
.hero__facts .sep { opacity: .5; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero__cta .btn-pill { height: 46px; padding: 0 24px; font-size: 13px; text-transform: uppercase; }
.hero__cta .ghost { background: oklch(0.97 0.01 90 / 0.14); border: 1px solid oklch(0.97 0.01 90 / 0.5); color: oklch(0.98 0.008 90); backdrop-filter: blur(6px); }
.hero__cta .ghost:hover { background: oklch(0.97 0.01 90 / 0.26); }

.page-hero { position: relative; height: 46vh; min-height: 320px; overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero h1 { font-size: clamp(32px, 5vw, 66px); color: oklch(0.98 0.008 90); max-width: 18ch; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--line); }
.stats div { padding: 26px 20px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.stats div:last-child { border-right: none; }
.stats b { font-family: var(--serif); font-weight: 300; font-size: clamp(22px, 3vw, 32px); line-height: 1; }
.stats span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- generic sections ---------- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tint { background: var(--paper-2); border-top: 1px solid oklch(0.22 0.014 180 / 0.1); border-bottom: 1px solid oklch(0.22 0.014 180 / 0.1); }
.section--dark { background: var(--teal-deep); color: oklch(0.95 0.01 90); }
.lede-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); }
.lede { font-family: var(--serif); font-weight: 300; font-size: clamp(23px, 2.5vw, 38px); line-height: 1.28; letter-spacing: -0.015em; }
.prose { display: flex; flex-direction: column; gap: 20px; font-size: 16.5px; line-height: 1.72; color: var(--ink-2); max-width: 62ch; }
.prose h2 { margin-top: 20px; }
.prose h3 { margin-top: 12px; }
.prose ul, .prose ol { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: 4px; margin: 8px 0; }
.prose figure { margin: 8px 0; }
.prose figcaption { font-size: 13.5px; color: var(--muted); margin-top: 8px; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 188px; gap: 12px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; cursor: zoom-in; }
.gallery img:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery img:nth-child(2), .gallery img:nth-child(3) { grid-column: span 2; }
.gallery img:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.gallery img:nth-child(5), .gallery img:nth-child(6) { grid-column: span 3; }
.gallery img:nth-child(n+7) { grid-column: span 2; }

.lightbox { position: fixed; inset: 0; z-index: 90; background: oklch(0.14 0.012 197 / 0.94); display: flex; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 48px); }
.lightbox img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: 3px; }
.lightbox__cap { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: oklch(0.9 0.01 90 / 0.85); font-size: 13px; padding: 0 16px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 1px solid oklch(0.9 0.01 90 / 0.35); background: oklch(0.14 0.012 197 / 0.5); color: oklch(0.95 0.01 90); font-size: 18px; cursor: pointer; }
.lightbox__nav--prev { left: clamp(8px, 2vw, 24px); }
.lightbox__nav--next { right: clamp(8px, 2vw, 24px); }
.lightbox__close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid oklch(0.9 0.01 90 / 0.35); background: none; color: oklch(0.95 0.01 90); font-size: 22px; cursor: pointer; }

/* ---------- feature columns ---------- */
.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 4vw, 52px) clamp(24px, 3vw, 48px); }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 48px); }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.col { display: flex; flex-direction: column; gap: 13px; }
.col__title { font-family: var(--serif); font-size: 22px; }
.col__rule { height: 1px; background: oklch(0.22 0.014 180 / 0.16); }
.col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 15px; line-height: 1.55; color: oklch(0.38 0.012 180); }
.col ul li::before { content: '—'; color: var(--accent); margin-right: 8px; }

.split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: stretch; }
.split__img { position: relative; min-height: 420px; }
.split__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__body { display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: clamp(48px, 5vw, 88px) clamp(24px, 4.5vw, 72px); background: var(--teal-panel); color: oklch(0.95 0.01 90); }
.split__body .eyebrow { color: oklch(0.78 0.04 195); }
.split__body p { font-size: 16.5px; line-height: 1.72; color: oklch(0.88 0.014 195); max-width: 46ch; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.tag { padding: 8px 14px; border: 1px solid oklch(0.95 0.01 90 / 0.28); border-radius: 999px; font-size: 13px; }
.tag--light { border-color: var(--line); color: var(--ink-2); }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 40px); }
.card { display: flex; flex-direction: column; gap: 11px; padding-top: 18px; border-top: 2px solid oklch(0.22 0.014 180 / 0.85); }
.card__title { font-family: var(--serif); font-size: 21px; }
.card__meta { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.card p { font-size: 15px; line-height: 1.6; color: oklch(0.4 0.012 180); }

/* ---------- calendar & quote ---------- */
.book-grid { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: clamp(24px, 3vw, 48px); align-items: start; }
.cal {
  background: oklch(1 0 0 / 0.6); border: 1px solid var(--line);
  border-radius: 6px; padding: clamp(16px, 2.5vw, 28px);
}
.cal__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.cal__legend { display: flex; gap: 18px; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.cal__legend span { display: inline-flex; align-items: center; gap: 7px; }
.swatch { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }
.swatch--sel { background: var(--teal); }
.swatch--booked { background: oklch(0.88 0.012 30); }
.cal__nav { width: 44px; height: 44px; border-radius: 50%; border: 1px solid oklch(0.22 0.014 180 / 0.2); background: transparent; color: oklch(0.3 0.014 180); font-size: 15px; cursor: pointer; }
.cal__nav:disabled { opacity: .3; cursor: not-allowed; }
.cal__months { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.cal__month h3 { text-align: center; font-size: 21px; margin-bottom: 12px; }
.cal__dow, .cal__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__dow { margin-bottom: 6px; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(0.58 0.012 180); text-align: center; }
.day {
  height: 56px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1px; border-radius: 3px; user-select: none; cursor: pointer;
  background: oklch(1 0 0 / 0.7); border: 1px solid oklch(0.22 0.014 180 / 0.12);
  transition: background .12s, color .12s; font: inherit; color: inherit;
}
.day__n { font-size: 14px; }
.day__r { font-size: 10px; letter-spacing: .02em; color: oklch(0.55 0.012 180); }
.day--pad { background: none; border: none; cursor: default; }
.day--past { background: transparent; border-color: transparent; opacity: .32; cursor: not-allowed; }
.day--booked { background: oklch(0.88 0.012 30); border-color: transparent; opacity: .8; cursor: not-allowed; }
.day--booked .day__n { text-decoration: line-through; color: oklch(0.45 0.03 30); }
.day--booked .day__r { color: oklch(0.55 0.03 30); }
.day--sel { background: var(--teal); border-color: var(--teal); }
.day--sel .day__n { color: var(--paper); }
.day--sel .day__r { color: oklch(0.85 0.03 195); }
.day--range { background: oklch(0.88 0.035 195); border-color: transparent; }
.day--range .day__n { color: oklch(0.26 0.04 195); }
.day--range .day__r { color: oklch(0.4 0.04 195); }
.day:not(.day--past):not(.day--booked):not(.day--pad):hover { border-color: var(--teal); }

.quote {
  position: sticky; top: 92px; background: var(--teal-panel); color: oklch(0.95 0.01 90);
  border-radius: 6px; padding: 28px; display: flex; flex-direction: column; gap: 18px;
}
.quote__title { font-family: var(--serif); font-weight: 300; font-size: 27px; }
.quote__dates { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid oklch(0.95 0.01 90 / 0.25); border-radius: 4px; overflow: hidden; }
.quote__dates > div { padding: 12px 14px; }
.quote__dates > div:first-child { border-right: 1px solid oklch(0.95 0.01 90 / 0.25); }
.quote__lbl { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: oklch(0.78 0.04 195); }
.quote__val { font-size: 15px; margin-top: 4px; }
.quote__lines { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.quote__lines div { display: flex; justify-content: space-between; gap: 16px; color: oklch(0.88 0.014 195); }
.quote__rule { height: 1px; background: oklch(0.95 0.01 90 / 0.25); margin: 2px 0; }
.quote__total { display: flex; justify-content: space-between; gap: 16px; font-size: 19px; font-family: var(--serif); }
.quote__notice { padding: 12px 14px; border-radius: 4px; background: oklch(0.95 0.01 90 / 0.12); font-size: 13.5px; line-height: 1.55; color: oklch(0.9 0.014 195); }
.quote__cta { height: 56px; border: none; border-radius: 4px; background: var(--paper); color: var(--teal-deep); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; }
.quote__cta:hover:not(:disabled) { background: #fff; }
.quote__cta:disabled { opacity: .45; cursor: not-allowed; }
.quote__clear { background: none; border: none; color: oklch(0.8 0.03 195); font-size: 13px;
  text-decoration: underline; cursor: pointer; align-self: center; padding: 12px 16px; }
.quote__fine { font-size: 12.5px; line-height: 1.6; color: oklch(0.78 0.02 195); text-align: center; }

/* ---------- request modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; background: oklch(0.14 0.012 197 / 0.6); display: flex; align-items: flex-start; justify-content: center; overflow-y: auto; padding: clamp(16px, 4vw, 48px) clamp(12px, 3vw, 24px); }
.modal__box { width: 100%; max-width: 720px; background: var(--paper); border-radius: 8px; overflow: hidden; animation: rise .24s cubic-bezier(.2,.7,.3,1); }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.modal__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px clamp(20px, 3vw, 32px); background: var(--teal-panel); color: oklch(0.95 0.01 90); }
.modal__head h2 { font-size: 21px; }
.modal__x { background: none; border: none; color: oklch(0.9 0.01 90); font-size: 24px; line-height: 1; cursor: pointer; padding: 4px 8px; }
.modal__body { padding: clamp(20px, 3vw, 32px); display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: clamp(20px, 3vw, 36px); align-items: start; }
.form { display: flex; flex-direction: column; gap: 14px; }
.form label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.form input, .form textarea, .form select {
  width: 100%; box-sizing: border-box; min-height: 48px; padding: 12px 14px;
  border-radius: 4px; border: 1px solid oklch(0.22 0.014 180 / 0.22);
  background: oklch(1 0 0 / 0.7); font-family: var(--sans); color: var(--ink);
  /* 16px minimum: anything smaller makes iOS Safari zoom the page on focus */
  font-size: 16px;
}
.form textarea { min-height: 92px; resize: vertical; }
.form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form__err { font-size: 13.5px; color: oklch(0.5 0.15 30); }
.form__submit { height: 54px; border: none; border-radius: 4px; background: var(--teal); color: var(--paper); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; }
.form__submit:hover { background: var(--teal-hover); }
.form__fine { font-size: 12.5px; line-height: 1.6; color: var(--muted); }
.summary { background: var(--paper-2); border: 1px solid var(--line); border-radius: 6px; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.summary img { width: 100%; height: 104px; object-fit: cover; border-radius: 3px; }
.summary__name { font-family: var(--serif); font-size: 18px; line-height: 1.25; }
.summary__meta { font-size: 13px; color: oklch(0.45 0.012 180); }
.summary__lines { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: oklch(0.4 0.012 180); }
.summary__lines div { display: flex; justify-content: space-between; gap: 12px; }
.summary__rule { height: 1px; background: oklch(0.22 0.014 180 / 0.14); }
.summary__total { display: flex; justify-content: space-between; gap: 12px; font-family: var(--serif); font-size: 18px; }
.done { padding: clamp(28px, 5vw, 48px) 32px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.done__tick { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.done p { font-size: 15.5px; line-height: 1.65; color: oklch(0.4 0.012 180); max-width: 48ch; }
.done__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 4px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.contact-card { display: flex; flex-direction: column; gap: 18px; padding: clamp(24px, 3vw, 36px); background: oklch(0.95 0.01 90); color: oklch(0.2 0.014 180); border-radius: 6px; }
.contact-card__rule { height: 1px; background: oklch(0.22 0.014 180 / 0.16); }
.btn-call { display: flex; align-items: center; justify-content: center; gap: 10px; height: 58px; border-radius: 4px; background: var(--teal); color: var(--paper); font-size: 20px; letter-spacing: 0.02em; }
.btn-call:hover { background: var(--teal-hover); color: var(--paper); }
.btn-text { display: flex; align-items: center; justify-content: center; gap: 10px; height: 50px; border-radius: 4px; border: 1px solid oklch(0.22 0.014 180 / 0.3); color: oklch(0.28 0.014 180); font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase; }
.btn-text:hover { background: oklch(0.22 0.014 180 / 0.05); }

/* ---------- faq ---------- */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--line); max-width: 900px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative; font-family: var(--serif); font-size: clamp(18px, 2vw, 21px); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--accent); }
.faq details[open] summary::after { content: '−'; }
.faq p { padding: 0 0 20px; font-size: 15.5px; line-height: 1.7; color: var(--ink-2); max-width: 70ch; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.review { background: oklch(1 0 0 / 0.55); border: 1px solid var(--line); border-radius: 6px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.review__stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; }
.review__text { font-size: 15.5px; line-height: 1.66; color: var(--ink-2); }
.review__who { font-size: 13px; color: var(--muted); }
.notice-box { border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 4px; padding: 20px 22px; background: oklch(1 0 0 / 0.5); font-size: 15.5px; line-height: 1.7; color: var(--ink-2); max-width: 70ch; }

/* ---------- guide index ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 36px); }
.post-card { display: flex; flex-direction: column; gap: 12px; }
.post-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 4px; }
.post-card h3 { font-size: 22px; }
.post-card p { font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.post-card:hover h3 { color: var(--accent); }
.post-meta { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }

/* ---------- footer ---------- */
.ftr { background: var(--teal-deep); border-top: 1px solid oklch(0.95 0.01 90 / 0.14); color: oklch(0.72 0.014 195); }
.ftr__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: clamp(40px, 5vw, 64px) 0; }
.ftr h4 { font-family: var(--serif); font-weight: 300; font-size: 18px; color: oklch(0.92 0.01 90); margin-bottom: 14px; }
.ftr ul { list-style: none; display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.ftr ul a { display: inline-block; padding: 12px 0; }
.ftr a:hover { color: oklch(0.92 0.01 90); }
.ftr__bar a { display: inline-block; padding: 12px 4px; }
.ftr__bar { border-top: 1px solid oklch(0.95 0.01 90 / 0.14); padding: 16px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 13px; flex-wrap: wrap; }
.ftr__blurb { font-size: 14px; line-height: 1.7; max-width: 44ch; }

/* ---------- sticky mobile call bar ---------- */
.callbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px; background: oklch(0.972 0.008 90 / 0.95); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.callbar a { flex: 1; display: flex; align-items: center; justify-content: center; height: 48px; border-radius: 4px; font-size: 14px; letter-spacing: .04em; }
.callbar .c1 { background: var(--teal); color: var(--paper); }
.callbar .c2 { border: 1px solid oklch(0.22 0.014 180 / 0.3); color: var(--ink); }
.callbar .c3 { background: oklch(0.22 0.014 180 / 0.06); color: var(--ink); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hdr__toggle { display: block; }
  .hdr__nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 20px; display: none;
  }
  .hdr[data-open='true'] .hdr__nav { display: flex; }
  .hdr__nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .hdr__nav .btn-pill { margin-top: 14px; border-bottom: none; height: 46px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stats div:nth-child(3) { border-right: none; }
  .stats div:nth-child(n+4) { border-top: 1px solid var(--line); }
  .lede-grid, .cols-2, .contact-grid { grid-template-columns: 1fr; }
  .cols-4, .cards, .reviews, .posts { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__img { min-height: 320px; }
  .book-grid { grid-template-columns: 1fr; }
  .quote { position: static; }
  .cal__months { grid-template-columns: 1fr; }
  .modal__body { grid-template-columns: 1fr; }
  .summary { order: -1; }
  .ftr__top { grid-template-columns: 1fr 1fr; }
  .gallery { grid-auto-rows: 150px; }
}
@media (max-width: 640px) {
  .hero { height: 78vh; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats div:nth-child(odd) { border-right: 1px solid var(--line); }
  .stats div:nth-child(even) { border-right: none; }
  .stats div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .stats div:last-child { grid-column: span 2; }
  .cols-4, .cards, .reviews, .posts { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery img:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery img:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .form .row-2 { grid-template-columns: 1fr; }
  .ftr__top { grid-template-columns: 1fr; }
  .callbar { display: flex; }
  body { padding-bottom: 68px; }
  .cal { padding: 14px 10px 18px; }
  .cal__days, .cal__dow { gap: 3px; }
  .day { height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
