/* Remote Living — product landing
   Sand & stone palette. Editorial, asymmetric. */

:root {
  --bg: #f3efe8;
  --bg-2: #e8e0d4;
  --surface: #fffcf8;
  --ink: #1c1612;
  --ink-soft: #2a221c;
  --muted: #6b5e52;
  --line: rgba(28, 22, 18, 0.1);
  --line-strong: rgba(28, 22, 18, 0.18);
  --teal: #5b472f;       /* stone brown accent */
  --teal-deep: #3d2f1f;
  --mint: #ebe3d4;       /* soft sand section */
  --signal: #ebd7b2;     /* sand CTA */
  --signal-ink: #3d2f1f;
  --header-h: 5.5rem;
  --max: 78rem;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-underline-offset: 0.15em; }
a:hover { color: var(--teal); }
button, .btn { font: inherit; cursor: pointer; border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 0.75rem;
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.wrap--s { width: min(100% - 2rem, 42rem); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 1rem; top: -100%; z-index: 999;
  background: var(--ink); color: #fff; padding: 0.7rem 1rem;
}
.skip:focus { top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  min-height: 3rem; padding: 0.8rem 1.35rem;
  border-radius: 0.4rem;
  font-weight: 650; font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { color: inherit; transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.btn--signal {
  background: var(--signal);
  color: var(--signal-ink);
}
.btn--signal:hover { background: #f3e6c8; color: var(--signal-ink); }

.btn--ink {
  background: var(--ink);
  color: #fff;
}
.btn--ink:hover { background: #000; color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); color: #fff; }

.btns { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 80;
  height: var(--header-h);
  background: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-row {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.logo {
  display: flex; align-items: center; text-decoration: none; color: var(--ink);
  flex-shrink: 0;
}
.logo img {
  height: 3.75rem;
  width: auto;
  max-width: min(72vw, 17rem);
  object-fit: contain;
}
.logo:hover { color: var(--ink); }

.nav {
  display: flex; align-items: center; gap: 1.15rem;
}
.nav a {
  text-decoration: none; font-size: 0.88rem; font-weight: 600; color: var(--ink-soft);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--teal); }
.nav .btn { margin-left: 0.25rem; }
.nav .btn--ink {
  color: #fff;
  background: var(--ink);
}
.nav .btn--ink:hover {
  color: #fff;
  background: #000;
}
.nav .btn--signal {
  color: var(--signal-ink);
  background: var(--signal);
}
.nav .btn--signal:hover {
  color: var(--signal-ink);
  background: #f3e6c8;
}

.menu-btn {
  display: none; width: 2.6rem; height: 2.6rem; border-radius: 0.4rem;
  background: var(--surface); border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.menu-btn svg { width: 1.2rem; height: 1.2rem; }

@media (max-width: 980px) {
  .menu-btn { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto;
    display: grid; gap: 0; padding: 0.75rem 1rem 1.25rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav .btn { margin: 0.85rem 0 0; width: 100%; }
}

/* Hero — split panel */
.hero {
  min-height: 100svh;
  display: grid;
  padding-top: var(--header-h);
}
@media (min-width: 960px) {
  .hero { grid-template-columns: minmax(22rem, 0.95fr) 1.15fr; }
}

.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 4rem);
  background: var(--ink);
  color: rgba(255,255,255,0.84);
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  max-width: 10ch;
  margin-bottom: 1.1rem;
}

.hero-copy .lead {
  font-size: 1.08rem;
  max-width: 32rem;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,0.7);
}

.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 1.25rem;
  color: var(--signal);
}
.kicker::before {
  content: ""; width: 1.5rem; height: 2px; background: var(--signal);
}

.hero-meta {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem;
  margin-top: 2.25rem; max-width: 26rem;
}
.hero-meta div {
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.35rem;
}
.hero-meta strong {
  display: block; color: #fff; font-family: var(--font-display);
  font-size: 1.35rem; margin-bottom: 0.15rem;
}
.hero-meta span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

.hero-media {
  position: relative; min-height: 48vh; background: var(--ink-soft);
  overflow: hidden;
}
.hero-media img,
.hero-media .hero-video {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.hero-media .hero-video {
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  background: var(--ink-soft);
}
.hero-media .hero-video.is-ready {
  opacity: 1;
}
@media (min-width: 960px) {
  .hero-media { min-height: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media .hero-video { display: none; }
  .hero-media::before {
    content: "";
    position: absolute; inset: 0;
    background: center / cover no-repeat url("../img/hero.jpg");
  }
}

.hero-badge {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(12,18,25,0.72); color: #fff;
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem; border-radius: 0.35rem;
  font-size: 0.82rem; max-width: 16rem;
}
.hero-badge strong { color: var(--signal); }

/* Ticker */
.ticker {
  overflow: hidden;
  background: var(--signal);
  color: var(--signal-ink);
  border-block: 1px solid rgba(26,40,8,0.12);
}
.ticker-track {
  display: flex; gap: 2.5rem; width: max-content;
  padding: 0.85rem 0;
  animation: tick 32s linear infinite;
  font-size: 0.8rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase;
}
.ticker-track span { white-space: nowrap; }
.ticker-track span::after {
  content: "·"; margin-left: 2.5rem; opacity: 0.45;
}
@keyframes tick {
  to { transform: translateX(-50%); }
}

/* Sections */
.block {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.block--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.block--ink { background: var(--ink); color: rgba(255,255,255,0.78); }
.block--ink h2, .block--ink h3 { color: #fff; }
.block--surface { background: var(--surface); }
.block--mint { background: var(--mint); }

.host-note {
  max-width: 40rem;
}
.host-note h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  max-width: 18ch;
  margin-bottom: 1rem;
}
.host-note p { color: var(--muted); }
.host-note__lead {
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--ink) !important;
  margin-bottom: 0.85rem;
}
.host-note__sign {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-deep) !important;
  letter-spacing: -0.02em;
}

.sec-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 40rem; }
.sec-head--row {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem;
  align-items: end; max-width: none;
}
.sec-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 16ch;
}
.sec-head p { color: var(--muted); font-size: 1.05rem; }
.block--ink .sec-head p { color: rgba(255,255,255,0.6); }

.label {
  font-size: 0.72rem; font-weight: 750; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem;
}
.block--ink .label { color: var(--signal); }

/* Audience */
.audience {
  display: grid; gap: 1rem;
}
@media (min-width: 800px) {
  .audience { grid-template-columns: repeat(4, 1fr); }
}
.aud-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1.5rem 1.35rem;
  display: grid; gap: 0.75rem;
  min-height: 100%;
}
.aud-card .num {
  font-family: var(--font-display);
  font-size: 2.5rem; color: var(--teal); line-height: 1;
}
.aud-card h3 { font-size: 1.45rem; }
.aud-card p { color: var(--muted); font-size: 0.95rem; }

/* Split work */
.split {
  display: grid; gap: 1.5rem; align-items: stretch;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.15fr 0.85fr; gap: 2rem; }
  .split--rev { grid-template-columns: 0.85fr 1.15fr; }
  .split--rev .split-media { order: 2; }
}
.split-media {
  border-radius: 0.5rem; overflow: hidden; min-height: 22rem;
  background: var(--bg-2);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 22rem; }
.split-body { display: flex; flex-direction: column; justify-content: center; }

.spec-list { display: grid; gap: 0; margin-top: 1.5rem; }
.spec-list li {
  display: grid; grid-template-columns: 7.5rem 1fr;
  gap: 1rem; padding: 0.95rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}
.spec-list li:last-child { border-bottom: 1px solid var(--line); }
.spec-list dt, .spec-list .k {
  font-family: var(--font-display); font-weight: 700; color: var(--ink);
}
.spec-list .v { color: var(--muted); }

/* Bento */
.bento {
  display: grid; gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento .b1 { grid-column: span 4; grid-row: span 2; min-height: 24rem; }
  .bento .b2 { grid-column: span 2; }
  .bento .b3 { grid-column: span 2; }
  .bento .b4 { grid-column: span 3; }
  .bento .b5 { grid-column: span 3; }
}
.bento-item {
  position: relative; overflow: hidden; border-radius: 0.5rem;
  background: var(--ink-soft); color: #fff; min-height: 12rem;
}
.bento-item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.bento-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(12,18,25,0.82) 100%);
}
.bento-item .cap {
  position: absolute; inset: auto 0 0; z-index: 1;
  padding: 1.15rem 1.2rem;
}
.bento-item h3 { color: #fff; font-size: 1.25rem; margin: 0 0 0.25rem; }
.bento-item p { font-size: 0.88rem; color: rgba(255,255,255,0.72); margin: 0; }

/* Syros strip */
.syros-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 900px) {
  .syros-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 3rem; }
}

.syros-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 34rem;
  margin-bottom: 1.15rem;
}

.syros-grid p { max-width: 36rem; }

.syros-premium {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(235, 215, 178, 0.28);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--signal);
  max-width: 28rem !important;
}

.syros-callout {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(235, 215, 178, 0.22);
  max-width: 52rem;
}

.syros-callout h3 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  max-width: 22ch;
  margin-bottom: 0.85rem;
}

.syros-callout p {
  max-width: 42rem;
  color: rgba(255,255,255,0.68);
}

.syros-points {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.35rem;
}

.syros-points li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(235, 215, 178, 0.28);
  background: rgba(235, 215, 178, 0.08);
  color: var(--signal);
  font-size: 0.8rem;
  font-weight: 650;
}

.syros-amenities {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
}

.syros-amenities__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.35rem;
}

.amenity-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
}

.amenity-card {
  padding: 1.25rem 1.2rem;
  border-radius: 0.45rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.amenity-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.4rem;
}

.amenity-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
}

/* Day rhythm */
.rhythm {
  display: grid; gap: 0.85rem;
}
@media (min-width: 900px) {
  .rhythm { grid-template-columns: repeat(4, 1fr); }
}
.rhythm-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.rhythm-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(28, 22, 18, 0.1);
}
.rhythm-item__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
}
.rhythm-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.rhythm-item:hover .rhythm-item__media img {
  transform: scale(1.04);
}
.rhythm-item__body {
  padding: 1.15rem 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rhythm-item .t {
  font-size: 0.7rem; font-weight: 750; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.45rem;
}
.rhythm-item h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.rhythm-item__body > p:last-child {
  color: var(--muted); font-size: 0.9rem; margin: 0;
}

/* Back to top */
.to-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 90;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.45rem;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: var(--signal);
  border: 1px solid rgba(235, 215, 178, 0.25);
  box-shadow: 0 10px 28px rgba(28, 22, 18, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.6rem);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease), background 0.25s var(--ease);
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.to-top:hover { background: var(--teal-deep); color: var(--signal); }
.to-top:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }
.to-top svg { width: 1.2rem; height: 1.2rem; }

/* Gallery bento clickable */
.gal {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) {
  .gal { grid-template-columns: repeat(4, 1fr); }
  .gal a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gal a:nth-child(4) { grid-column: span 2; }
}
.gal a {
  display: block; overflow: hidden; border-radius: 0.4rem;
  aspect-ratio: 1; background: var(--bg-2); cursor: zoom-in;
}
.gal a:first-child { aspect-ratio: auto; min-height: 100%; }
@media (min-width: 800px) {
  .gal a:first-child { aspect-ratio: auto; }
}
.gal img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gal a:hover img { transform: scale(1.04); }
.gal a:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,10,14,0.92);
  display: grid; place-items: center; padding: 1.25rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(94vw, 1100px); max-height: 86vh; width: auto; height: auto;
  border-radius: 0.35rem;
}
.lb-x, .lb-nav {
  position: absolute; width: 2.6rem; height: 2.6rem; border-radius: 0.35rem;
  background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
}
.lb-x { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* Quotes */
.quotes {
  display: grid; gap: 0.85rem;
}
@media (min-width: 800px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1.4rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.quote blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 650;
  font-size: 1.2rem; line-height: 1.3; letter-spacing: -0.02em;
}
.quote footer { margin-top: auto; font-size: 0.85rem; color: var(--muted); }
.quote cite { font-style: normal; font-weight: 700; color: var(--ink); display: block; }

/* FAQ */
.faq { display: grid; gap: 0.5rem; max-width: 46rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 0.4rem;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 1.05rem 1.15rem;
  font-weight: 700; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--teal); font-weight: 400; font-size: 1.25rem; }
.faq details[open] summary::after { content: "–"; }
.faq .ans { padding: 0 1.15rem 1.1rem; color: var(--muted); }
.faq .ans p { margin: 0 0 0.75rem; }
.faq .ans p:last-child { margin-bottom: 0; }
.faq-note {
  margin-top: 1rem !important;
  font-weight: 700;
  color: var(--ink);
}

/* Rates */
.sec-head--tight { margin-bottom: 1.5rem; }
.rates-subhead {
  font-size: 1.15rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.rates-table-wrap { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.rates-table th,
.rates-table td {
  padding: 0.95rem 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: baseline;
}
.rates-table thead th {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom-color: var(--line-strong);
}
.rates-table tbody th {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
  width: 48%;
}
.rates-table td {
  font-weight: 700;
  color: var(--teal-deep);
  text-align: right;
}
.rates-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.rates-included { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.rates-included h3 { font-size: clamp(1.5rem, 3vw, 1.85rem); }
.rates-included h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0 0 0.85rem;
  color: var(--ink);
}
.include-grid {
  display: grid;
  gap: 1.75rem 2rem;
}
@media (min-width: 700px) {
  .include-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .include-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.check-list {
  display: grid;
  gap: 0.55rem;
}
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
}
.rates-care {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}
.rates-care h3 { font-size: clamp(1.35rem, 2.5vw, 1.65rem); }
.rates-care p { color: var(--muted); }
.rates-short {
  max-width: 42rem;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line);
}
.rates-short p { color: var(--muted); }

.text-link {
  display: inline;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  color: var(--teal);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}
.text-link:hover { color: var(--teal-deep); }
.text-link:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
a.text-link { color: var(--teal); }

/* CTA band */
.cta-band {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background:
    linear-gradient(135deg, #2a1f14, var(--teal-deep) 45%, var(--teal));
  color: rgba(255,255,255,0.82);
  text-align: center;
}
.cta-band h2 {
  color: #fff; font-size: clamp(2.2rem, 5vw, 3.5rem);
  max-width: 14ch; margin-inline: auto;
}
.cta-band p { max-width: 34rem; margin: 0 auto 1.75rem; }
.cta-band .btns { justify-content: center; }

/* Footer */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.62);
  padding: 3.5rem 0 1.75rem;
}
.foot-grid {
  display: grid; gap: 2rem; margin-bottom: 2.5rem;
}
@media (min-width: 800px) {
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer .logo { color: #fff; }
.site-footer .logo img {
  height: 3.25rem;
  max-width: 15rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.site-footer h3 {
  color: #fff; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.foot-links { display: grid; gap: 0.55rem; }
.foot-links a { text-decoration: none; color: rgba(255,255,255,0.62); }
.foot-links a:hover { color: var(--signal); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; font-size: 0.82rem;
}

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(1rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }

/* ——— Article / Category ——— */
.page-top {
  padding: calc(var(--header-h) + 3rem) 0 2.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-top h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  max-width: 14ch;
}
.crumbs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.85rem;
  color: var(--muted); margin-bottom: 1rem;
}
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--teal); }

.article-hero {
  position: relative; min-height: 52vh;
  display: grid; align-items: end; color: #fff;
  margin-top: var(--header-h);
}
.article-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.article-hero .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,18,25,0.2), rgba(12,18,25,0.85));
}
.article-hero .inner {
  position: relative; z-index: 1;
  padding: 3rem 0; max-width: 42rem;
}
.article-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.5rem); }
.meta-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
  margin-top: 1rem; font-size: 0.88rem; color: rgba(255,255,255,0.7);
}

.prose { padding: 3rem 0 4.5rem; }
.prose .wrap--s > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 2.5rem; }
.prose h3 { font-size: 1.3rem; margin-top: 1.75rem; }
.prose p, .prose li { color: #2c3440; font-size: 1.08rem; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.2rem; display: grid; gap: 0.45rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose blockquote {
  margin: 1.75rem 0; padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--signal);
  background: var(--surface);
  font-family: var(--font-display); font-weight: 650;
  font-size: 1.35rem; line-height: 1.3; color: var(--ink);
}
.prose figure { margin: 2rem 0; border-radius: 0.5rem; overflow: hidden; }
.prose figcaption { padding-top: 0.6rem; font-size: 0.85rem; color: var(--muted); }
.prose a { color: var(--teal); font-weight: 650; }
.prose a:hover { color: var(--teal-deep); }
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--surface);
}
.prose-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.prose-table th,
.prose-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.prose-table thead th {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--mint);
}
.prose-table tbody th {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.prose-table tbody tr:last-child th,
.prose-table tbody tr:last-child td { border-bottom: 0; }
.related-reads {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.related-reads h2 { font-size: 1.35rem; margin-top: 0; }
.related-reads ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.related-reads a { text-decoration: none; }
.related-reads a:hover { text-decoration: underline; }

.inline-cta {
  margin-top: 2.5rem;
  padding: 1.5rem 1.6rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 0.5rem;
}
.inline-cta h3 {
  color: #fff;
  margin-bottom: 0.55rem;
}
.prose .inline-cta p,
.inline-cta p {
  color: rgba(255, 255, 255, 0.86) !important;
}
.inline-cta .btns { margin-top: 1rem; }
.inline-cta .btn--signal {
  color: var(--signal-ink);
  background: var(--signal);
}
.inline-cta .btn--ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.inline-cta .btn--ghost-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.filters { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 2rem; }
.filter {
  padding: 0.45rem 0.9rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  font-size: 0.82rem; font-weight: 650; text-decoration: none; color: var(--muted);
}
.filter:hover, .filter.on {
  background: var(--ink); color: #fff; border-color: var(--ink);
}

.feat {
  display: grid; gap: 0; margin-bottom: 2rem;
  background: var(--ink); color: #fff; border-radius: 0.5rem; overflow: hidden;
  text-decoration: none;
}
.feat:hover { color: #fff; }
@media (min-width: 880px) {
  .feat { grid-template-columns: 1.2fr 1fr; min-height: 22rem; }
}
.feat-media { min-height: 14rem; }
.feat-media img { width: 100%; height: 100%; object-fit: cover; }
.feat-body { padding: clamp(1.4rem, 3vw, 2.25rem); display: grid; gap: 0.7rem; align-content: center; }
.feat h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.35rem); max-width: 14ch; }
.feat p { color: rgba(255,255,255,0.65); margin: 0; }

.cards {
  display: grid; gap: 1rem;
}
@media (min-width: 700px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 0.5rem; overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(12,18,25,0.1);
  color: inherit;
}
.card-media { aspect-ratio: 16/11; overflow: hidden; background: var(--bg-2); }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 1.15rem 1.15rem 1.35rem; display: grid; gap: 0.5rem; flex: 1; }
.card-tag {
  font-size: 0.7rem; font-weight: 750; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
}
.card h2 { font-size: 1.3rem; margin: 0; }
.card p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.card-meta { margin-top: auto; padding-top: 0.75rem; font-size: 0.78rem; color: var(--muted); }
