/* ==========================================================================
   Mā Tori — matori.nz
   Single stylesheet, mobile-first. Palette drawn from the Mā Tori brand:
   navy ink, warm sand, ocean teal, sparse brass.
   ========================================================================== */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/fraunces-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+2000-206F, U+2074, U+20AC, U+2122;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/fraunces-600-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+1E00-1EFF;
}

:root {
  --navy: #0b2239;
  --navy-soft: #16324f;
  --sand: #f7f4ee;
  --sand-deep: #ece6d9;
  --teal: #1b7f8e;
  --teal-dark: #14616d;
  --brass: #c9a227;
  --ink: #1d2a36;
  --ink-soft: #4a5a68;
  --white: #ffffff;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 10px 30px rgba(11, 34, 57, 0.12);
  --radius: 10px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --measure: 68ch;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
}
img, svg, video, iframe { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
p { margin: 0 0 1em; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--teal); }
ul, ol { padding-left: 1.3em; }
strong { color: var(--navy); }
.container { max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 820px; }
.section { padding-block: clamp(2.6rem, 7vw, 5rem); }
.section-alt { background: var(--white); }
.center { text-align: center; }
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.7em;
}
.lede { font-size: 1.16rem; color: var(--ink-soft); max-width: var(--measure); }
.center .lede { margin-inline: auto; }

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(11, 34, 57, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: auto; height: 40px; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); transition: transform 0.25s, opacity 0.25s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-nav {
  display: none;
  position: absolute;
  inset: 100% 0 auto;
  background: var(--sand);
  border-bottom: 1px solid rgba(11, 34, 57, 0.1);
  box-shadow: var(--shadow);
  padding: 0.6rem 0 1rem;
}
.nav-open .site-nav { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 0 var(--gutter); }
.site-nav a {
  display: block;
  padding: 0.65rem 0.25rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--teal-dark); }
.nav-cta {
  display: inline-block;
  background: var(--brass);
  color: var(--navy) !important;
  border-radius: 999px;
  padding: 0.5rem 1.15rem !important;
  font-weight: 700;
  text-align: center;
}
.nav-cta:hover { filter: brightness(1.06); }
@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; position: static; background: none; border: 0; box-shadow: none; padding: 0; }
  .site-nav ul { display: flex; align-items: center; gap: 1.4rem; padding: 0; }
  .site-nav a { padding: 0.4rem 0; }
}

/* -------------------------------------------------------------------- hero */
.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(88vh, 780px);
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 34, 57, 0.25) 0%, rgba(11, 34, 57, 0.05) 40%, rgba(11, 34, 57, 0.72) 100%);
}
.hero-inner { padding: clamp(4rem, 12vh, 7rem) var(--gutter) clamp(3rem, 9vh, 5rem); max-width: 900px; }
.hero h1 { color: var(--white); text-shadow: 0 2px 18px rgba(11, 34, 57, 0.45); }
.hero .tagline { font-size: clamp(1.05rem, 2.4vw, 1.35rem); text-shadow: 0 1px 12px rgba(11, 34, 57, 0.55); margin-bottom: 1.6em; }
.hero-logo { width: min(300px, 60vw); margin: 0 auto 1.2rem; filter: drop-shadow(0 2px 14px rgba(11, 34, 57, 0.5)); }
.price-pill {
  display: inline-block;
  background: rgba(247, 244, 238, 0.94);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  padding: 0.45rem 1.3rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.price-pill .ono { font-family: var(--sans); font-size: 0.72em; color: var(--ink-soft); }

/* ----------------------------------------------------------------- buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brass); color: var(--navy); box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35); }
.btn-secondary { background: var(--teal); color: var(--white); }
.btn-outline { border-color: currentColor; color: var(--white); background: rgba(11, 34, 57, 0.25); }
.btn-outline-dark { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* ------------------------------------------------------------- quick stats */
.stats-strip { background: var(--navy); color: var(--sand); }
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  padding-block: 1.6rem;
  text-align: center;
}
.stat b { display: block; font-family: var(--serif); font-size: 1.35rem; color: var(--white); }
.stat span { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: #9db4c8; }
@media (min-width: 700px) { .stats-strip .container { grid-template-columns: repeat(6, 1fr); } }

/* ------------------------------------------------------------------- cards */
.card-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-4px); }
.card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body p { color: var(--ink-soft); flex: 1; }
.card-link { font-weight: 700; text-decoration: none; }
.card-link::after { content: " →"; }

/* ----------------------------------------------------------- selling points */
.points { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .points { grid-template-columns: repeat(2, 1fr); } }
.point { border-left: 3px solid var(--brass); padding-left: 1.1rem; }
.point h3 { margin-bottom: 0.3em; }
.point p { color: var(--ink-soft); margin: 0; }

/* ----------------------------------------------------------------- gallery */
.gallery-section h2 { margin-bottom: 0.2em; }
.gallery-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.2rem 0 1.6rem; }
.gallery-filter button {
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}
.gallery-filter button[aria-pressed="true"] { background: var(--navy); color: var(--sand); }
.gallery-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.9rem; } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--sand-deep);
}
.gallery-grid img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; transition: transform 0.25s ease; }
.gallery-grid a:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.6rem 0.7rem 0.55rem;
  font-size: 0.8rem;
  color: var(--white);
  background: linear-gradient(transparent, rgba(11, 34, 57, 0.75));
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-grid a:hover figcaption { opacity: 1; }
.gallery-grid [hidden] { display: none; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  background: rgba(11, 34, 57, 0.93);
  padding: 2.5rem 1rem 3.4rem;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 82vh; width: auto; border-radius: 6px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.lightbox figcaption { color: var(--sand); text-align: center; margin-top: 0.8rem; font-size: 0.95rem; }
.lightbox button {
  position: absolute;
  background: rgba(247, 244, 238, 0.12);
  color: var(--sand);
  border: 0;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  font-size: 1.35rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox button:hover { background: rgba(247, 244, 238, 0.25); }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 0.8rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 0.8rem; top: 50%; transform: translateY(-50%); }

/* ------------------------------------------------------------------ tables */
.spec-block { margin-bottom: 2.2rem; }
.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.spec-table caption {
  text-align: left;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  padding: 0 0 0.6rem;
}
.spec-table th, .spec-table td { text-align: left; padding: 0.7rem 1rem; font-size: 0.98rem; vertical-align: top; }
.spec-table th { width: 38%; color: var(--navy); font-weight: 600; }
.spec-table tr:nth-child(odd) { background: rgba(236, 230, 217, 0.45); }
.table-scroll { overflow-x: auto; }

/* comparison tables in guides */
.compare-table { min-width: 640px; width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.compare-table th, .compare-table td { padding: 0.7rem 0.9rem; font-size: 0.95rem; text-align: left; border-bottom: 1px solid var(--sand-deep); }
.compare-table thead th { background: var(--navy); color: var(--sand); }
.compare-table tbody th { color: var(--navy); font-weight: 600; }

/* ------------------------------------------------------------------- badge */
.badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.badges li {
  background: var(--white);
  border: 1.5px solid var(--brass);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
}

/* -------------------------------------------------------------------- FAQ */
.faq details {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 0.8rem;
  padding: 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 1rem 1.2rem;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.2rem; font-size: 1.3rem; color: var(--teal); }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 1.2rem 1.1rem; color: var(--ink-soft); }

/* ------------------------------------------------------------------- forms */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
label { font-weight: 600; color: var(--navy); font-size: 0.94rem; display: block; margin-bottom: 0.3rem; }
input, select, textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font: inherit;
  border: 1.5px solid #c9d2da;
  border-radius: 8px;
  background: var(--sand);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* email capture band */
.capture { background: var(--navy); color: var(--sand); }
.capture h2 { color: var(--white); }
.capture p { color: #b8c8d6; }
.capture-form { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; max-width: 560px; margin-inline: auto; }
.capture-form input[type="email"] { flex: 1 1 260px; background: var(--white); border-color: transparent; }
.capture-form .btn { flex: 0 0 auto; }

/* ------------------------------------------------------------- ship clock */
.ship-clock {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #081a2e 0%, var(--navy) 55%, #16324f 100%);
  color: var(--sand);
  border-bottom: 3px solid var(--brass);
}
.sc-watermark {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  height: 150%;
  width: auto;
  opacity: 0.06;
  pointer-events: none;
}
.sc-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 2.4rem);
  padding: clamp(1.2rem, 3.5vw, 1.8rem) var(--gutter);
  position: relative;
}
.sc-face {
  width: clamp(92px, 14vw, 128px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}
.sc-bezel { fill: #0a1f36; stroke: var(--brass); stroke-width: 2.2; }
.sc-dial { fill: #0e2440; stroke: rgba(247, 244, 238, 0.12); stroke-width: 0.6; }
.sc-tick { stroke: rgba(247, 244, 238, 0.35); stroke-width: 0.8; }
.sc-tick-major { stroke: var(--brass); stroke-width: 1.4; }
.sc-hand { stroke-linecap: round; }
.sc-hh { stroke: var(--sand); stroke-width: 3; }
.sc-mh { stroke: var(--sand); stroke-width: 2; }
.sc-sh { stroke: var(--brass); stroke-width: 1; }
.sc-cap { fill: var(--brass); }
.sc-text { text-align: left; }
.sc-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8fa9bf;
  margin-bottom: 0.2rem;
}
.sc-time {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  color: var(--white);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: 0.01em;
}
.sc-time .sc-secs { color: #8fa9bf; font-size: 0.55em; }
.sc-time .sc-ampm { font-family: var(--sans); font-size: 0.34em; font-weight: 600; color: var(--brass); margin-left: 0.5em; text-transform: uppercase; letter-spacing: 0.1em; }
.sc-date {
  display: block;
  font-size: 0.95rem;
  color: #b8c8d6;
  margin-top: 0.45rem;
}
.sc-zone {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brass);
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  letter-spacing: 0.04em;
}
@media (max-width: 480px) {
  .sc-inner { flex-direction: column; gap: 0.9rem; text-align: center; }
  .sc-text { text-align: center; }
}

/* -------------------------------------------------------------- log/track */
.tracker-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tracker-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tracker-note { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.7rem; }
.log-entry {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.2rem;
}
.log-entry time { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark); }
.log-entry h3 { margin: 0.25em 0 0.15em; }
.log-entry .route { color: var(--brass); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.6em; }
.log-entry img { border-radius: 8px; margin-top: 0.9rem; }
.log-entry img.log-emoji { display: inline; vertical-align: -0.2em; margin: 0 0.05em; border-radius: 0; }
.log-body { position: relative; }
.log-body.collapsed {
  max-height: 400px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent);
  mask-image: linear-gradient(180deg, #000 70%, transparent);
}
.log-more {
  background: none;
  border: 1.5px solid var(--teal);
  color: var(--teal-dark);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  margin-top: 0.6rem;
}
.log-more:hover { background: var(--teal); color: var(--white); }
#captains-log > .btn { margin-top: 0.6rem; }

/* ---------------------------------------------------------------- comments */
.comment {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem 1.5rem;
  margin-bottom: 1rem;
}
.comment-meta { color: var(--teal-dark); font-size: 0.88rem; margin-bottom: 0.4em; }
.comment-meta strong { color: var(--navy); font-size: 1rem; }
.comment p:last-child { margin-bottom: 0; }
.comment-reply {
  border-left: 3px solid var(--teal);
  padding-left: 0.9rem;
  margin-top: 0.8em;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------- guide art */
.article-body { max-width: var(--measure); }
.article-body h2 { margin-top: 1.6em; }
.article-body h3 { margin-top: 1.3em; }
.article-meta { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 2rem; }
.callout {
  background: var(--white);
  border-left: 4px solid var(--brass);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  padding: 1.3rem 1.5rem;
  margin: 2rem 0;
}
.callout h3 { margin-top: 0; }
.callout p:last-of-type { margin-bottom: 0.4em; }
.breadcrumbs { font-size: 0.88rem; color: var(--ink-soft); margin: 1.2rem 0 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: 0.35rem; color: var(--ink-soft); }
.breadcrumbs a { color: var(--teal-dark); }

/* ---------------------------------------------------------------- instagram */
.ig-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
@media (min-width: 700px) { .ig-grid { grid-template-columns: repeat(4, 1fr); } }
.ig-grid a { border-radius: 8px; overflow: hidden; display: block; }
.ig-grid img { aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.25s; }
.ig-grid a:hover img { transform: scale(1.05); }

/* ------------------------------------------------------------------ footer */
.site-footer { background: var(--navy); color: #b8c8d6; font-size: 0.95rem; }
.site-footer .container { padding-block: 2.8rem 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer img.footer-logo { height: 44px; width: auto; margin-bottom: 0.9rem; }
.site-footer h4 { color: var(--sand); font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: #d7e2ec; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(247, 244, 238, 0.15); margin-top: 2rem; padding-top: 1.3rem; display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: space-between; font-size: 0.85rem; }

/* ------------------------------------------------------------------- sold */
.sold-banner {
  background: #a32222;
  color: var(--white);
  text-align: center;
  font-weight: 700;
  padding: 0.8rem 1rem;
  letter-spacing: 0.06em;
}
.hidden { display: none !important; }

/* ------------------------------------------------------------------- misc */
.divider-boat { width: min(240px, 50vw); margin: 0 auto; opacity: 0.85; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brass);
  color: var(--navy);
  padding: 0.6rem 1rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto; }
}
