/* ==========================================================================
   RS Artistry - Editorial Studio
   Consolidated stylesheet
   --------------------------------------------------------------------------
   1.  Design tokens (:root)
   2.  Reset & base
   3.  Typography helpers
   4.  Layout (container, grid, sections)
   5.  Buttons & links
   6.  Header / navigation
   7.  Footer
   8.  Components (cards, products, forms, chips, hairlines)
   9.  Page modules (hero, gallery strip, masonry, lightbox, booking)
   10. Animations (reveal, hero zoom, marquee)
   11. Utilities
   12. Responsive refinements
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   Strict greige + black brand palette. All hue comes from photography.
   ========================================================================== */
:root {
  /* Surfaces */
  --bg: #DFDBCF;            /* primary warm greige background */
  --bg-twin: #E0DCD0;       /* near twin, interchangeable */
  --paper: #F2EFE6;         /* lighter paper for alternating sections / cards */
  --sand: #D3CDBD;          /* deeper sand for alternating sections */

  /* Ink */
  --ink: #000000;           /* headings, logo, key lines - pure black */
  --body: #1A1A18;          /* body copy, softened very slightly */
  --muted: #57534A;         /* eyebrows, captions, secondary UI text */
  --hairline: #B9B2A1;      /* soft taupe rules and borders */

  /* On-dark (over photography / charcoal overlays) */
  --on-dark: #F5F2EA;
  --overlay: rgba(0, 0, 0, 0.28);

  /* Type families */
  --font-display: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Raleway", "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale (8px base) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-8: 96px;
  --section-gap: 120px;
  --margin-safe: 40px;
  --gutter: 24px;
  --maxw: 1440px;

  /* Motion */
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--ink);
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* ==========================================================================
   3. TYPOGRAPHY HELPERS
   ========================================================================== */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--ink);
}

.subhead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw, 1.65rem);
  line-height: 1.2;
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--body);
}

.body-lg { font-size: 1.125rem; font-weight: 300; line-height: 1.65; }

.muted { color: var(--muted); }

.italic-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  color: var(--ink);
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--margin-safe);
}

.section { padding-block: var(--section-gap); }
.section--tight { padding-block: var(--space-8); }
.section--paper { background-color: var(--paper); }
.section--sand { background-color: var(--sand); }

/* Mobile first: single column. Becomes a 12 column grid at >= 768px. */
.grid12 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

/* Column placement helpers (desktop) */
@media (min-width: 768px) {
  .grid12 {
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
  }
  .col-2 { grid-column: auto / span 2; }
  .col-3 { grid-column: auto / span 3; }
  .col-4 { grid-column: auto / span 4; }
  .col-5 { grid-column: auto / span 5; }
  .col-6 { grid-column: auto / span 6; }
  .col-7 { grid-column: auto / span 7; }
  .col-8 { grid-column: auto / span 8; }
  .col-10 { grid-column: auto / span 10; }
  .col-12 { grid-column: 1 / -1; }
  .start-2 { grid-column-start: 2; }
  .start-7 { grid-column-start: 7; }
  .start-8 { grid-column-start: 8; }
}

.stack > * + * { margin-top: var(--space-3); }
.stack-sm > * + * { margin-top: var(--space-2); }
.stack-lg > * + * { margin-top: var(--space-5); }

.hairline {
  height: 1px;
  width: 100%;
  background-color: var(--hairline);
  border: 0;
}

/* ==========================================================================
   5. BUTTONS & TEXT LINKS
   Sharp corners, understated. No fill on hover for outline variant.
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  transition: opacity 0.35s ease, background-color 0.45s ease, color 0.45s ease, transform 0.2s ease;
}
.btn:hover { opacity: 0.7; }
.btn:active { transform: scale(0.97); }

.btn--solid {
  background-color: var(--ink);
  color: var(--on-dark);
}
.btn--solid:hover {
  opacity: 1;
  background-color: transparent;
  color: var(--ink);
}

.btn--on-dark {
  border-color: var(--on-dark);
  color: var(--on-dark);
}
.btn--on-dark:hover {
  opacity: 1;
  background-color: var(--on-dark);
  color: var(--ink);
}

.btn--block { width: 100%; }

.btn[disabled],
.btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
  border-style: dashed;
}
.btn[disabled]:hover,
.btn.is-disabled:hover { opacity: 0.45; }

/* Understated underline text link */
.link-line {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hairline);
  transition: border-color 0.35s ease;
}
.link-line:hover { border-bottom-color: var(--ink); }
.link-line .arrow { transition: transform 0.35s ease; }
.link-line:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   6. HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  background-color: var(--bg);
  border-bottom: 1px solid var(--hairline);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--space-2) var(--margin-safe);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  line-height: 1;
}
.brand-mark {
  height: 34px;
  width: auto;
  display: block;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@media (max-width: 600px) {
  /* On phones, show the mark alone so Book + menu stay in view */
  .brand-mark { height: 32px; }
  .brand-word { display: none; }
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-link.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-book {
  padding: 12px 28px;
  font-size: 0.7rem;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bar {
  position: relative;
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--ink);
}
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  background-color: var(--ink);
  transition: transform 0.3s ease;
}
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg);
    border-bottom: 1px solid var(--hairline);
    padding: var(--space-5) var(--margin-safe);
  }
  .nav.is-open .nav-link { font-size: 0.85rem; }
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--hairline);
  background-color: var(--bg);
  padding-block: var(--space-8);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: var(--space-3);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-3);
}

.footer-col li + li { margin-top: var(--space-2); }

.footer-link,
.footer-meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.3s ease;
}
a.footer-link:hover { color: var(--ink); }

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: space-between;
}
.footer-bottom span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   8. COMPONENTS
   ========================================================================== */

/* --- Image frame (intrinsic ratio + cover) --- */
.frame {
  position: relative;
  overflow: hidden;
  background-color: var(--sand);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ratio-4x5 { aspect-ratio: 4 / 5; }
.ratio-3x4 { aspect-ratio: 3 / 4; }
.ratio-3x2 { aspect-ratio: 3 / 2; }
.ratio-1x1 { aspect-ratio: 1 / 1; }
.ratio-21x9 { aspect-ratio: 21 / 9; }

/* --- Service / feature card --- */
.feature-card { display: block; }
.feature-card .frame img {
  transition: transform 0.9s var(--ease-soft);
}
.feature-card:hover .frame img { transform: scale(1.05); }
.feature-card h3 { margin: var(--space-3) 0 var(--space-1); }
.feature-card p { color: var(--muted); margin-bottom: var(--space-2); }

/* Staggered offset for editorial rhythm (desktop) */
@media (min-width: 768px) {
  .offset-down { margin-top: var(--space-8); }
}

/* --- Product card (Shopify-ready shell) --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5) var(--gutter);
}

.product-card {
  display: flex;
  flex-direction: column;
  background-color: var(--paper);
  border: 1px solid var(--hairline);
}
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--paper);
}
.product-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s var(--ease-soft);
}
/* Hover swap: product image cross-fades to the look (model) image */
.product-card__media-hover { opacity: 0; }
.product-card:hover .product-card__media-hover { opacity: 1; }
.product-card:hover .product-card__media-primary { opacity: 0; }

.product-card__badge {
  position: absolute;
  z-index: 2;
  top: var(--space-2);
  left: var(--space-2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background-color: var(--bg);
  padding: 6px 12px;
  border: 1px solid var(--hairline);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-4);
}
.product-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: var(--space-1);
}
.product-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: var(--space-3);
  flex: 1;
}
.product-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.product-card__note {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
/* Shopify Buy Button wrapper — sits below the description, full card width.
   The button is forced to match the site's outline .btn--block style
   (Shopify injects its own runtime styles, so !important is required). */
.product-card__buy { margin-top: var(--space-1); }
.product-card__buy .shopify-buy-frame,
.product-card__buy .shopify-buy__product { width: 100%; max-width: 100%; }
.product-card__buy .shopify-buy__btn-wrapper { margin: 0; }
/* Shopify's live price — styled to match the old .product-card__price */
.product-card__buy .shopify-buy__product__price {
  margin: 0 0 var(--space-3) !important;
  padding: 0 !important;
  text-align: left !important;
}
.product-card__buy .shopify-buy__product__actual-price {
  font-family: var(--font-display) !important;
  font-weight: 400 !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  color: var(--ink) !important;
}
/* iframe:false drops Shopify's base reset, so its screen-reader price
   labels ("Regular price" / "Sale price") become visible. Re-hide them
   visually while keeping them available to assistive tech. */
.product-card__buy .visuallyhidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.product-card__buy .shopify-buy__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  padding: 16px 32px !important;
  border: 1px solid var(--ink) !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  color: var(--ink) !important;
  transition: opacity 0.35s ease !important;
}
.product-card__buy .shopify-buy__btn:hover {
  background-color: transparent !important;
  color: var(--ink) !important;
  opacity: 0.7 !important;
}

/* --- Forms --- */
.field { position: relative; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-1);
  transition: color 0.3s ease;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  border-radius: 0;
}
.field textarea { resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: 0.6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.field.is-focused label { color: var(--ink); }
.field select { appearance: none; background-image: none; }

/* --- Filter chips --- */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}
.chip {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.chip:hover { color: var(--ink); }
.chip.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.chip-sep { color: var(--hairline); }

/* ==========================================================================
   9. PAGE MODULES
   ========================================================================== */

/* --- Hero (full bleed with image + overlay) --- */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0;
  transition: opacity 1.4s var(--ease-soft);
  will-change: opacity;
}
.hero__slide.is-active {
  opacity: 1;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--overlay);
}
.hero__dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: var(--space-5);
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  align-items: center;
}
.hero__dot {
  appearance: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 28px;
  height: 2px;
  background-color: var(--on-dark);
  opacity: 0.35;
  transition: opacity 0.5s var(--ease-soft), width 0.5s var(--ease-soft);
}
.hero__dot:hover { opacity: 0.7; }
.hero__dot.is-active { opacity: 1; width: 44px; }
.hero__dot:focus-visible { outline: 2px solid var(--on-dark); outline-offset: 4px; }
.hero__inner {
  position: relative;
  z-index: 1;
  color: var(--on-dark);
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--margin-safe);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.25rem, 11vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--on-dark);
  margin-bottom: var(--space-3);
}
.hero__title--logo {
  line-height: 0;
  margin-bottom: var(--space-4);
}
.hero__title--logo img {
  display: block;
  width: clamp(180px, 30vw, 320px);
  height: auto;
  margin-inline: auto;
  opacity: 0.92;
}
.hero__eyebrow {
  color: var(--on-dark);
  opacity: 0.9;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.15rem, 3.4vw, 1.65rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
}
.hero__tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: var(--space-5);
}

/* --- Page hero (text only, on greige) --- */
.page-hero { padding-block: var(--section-gap) var(--space-6); }
.page-hero .display { margin-bottom: var(--space-3); }

/* --- Gallery teaser strip (auto-scroll marquee) --- */
.strip { overflow: hidden; }
.strip__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;            /* keep on its own GPU layer for smooth scroll */
  transform: translateZ(0);
}
/* Pause on hover only where a real pointer exists, so touch taps don't freeze it */
@media (hover: hover) {
  .strip:hover .strip__track { animation-play-state: paused; }
}
.strip__track:focus-within { animation-play-state: paused; }
.strip__item {
  height: 380px;
  width: auto;
  flex: 0 0 auto;
  margin-right: var(--space-2);      /* trailing space on every item = seamless loop */
}
.strip__item img {
  height: 100%;
  width: auto;
  object-fit: cover;
}
/* Smaller screens have a shorter track, so speed the loop up a lot */
@media (max-width: 768px) {
  .strip__track { animation-duration: 12s; }
}
@media (max-width: 600px) {
  .strip__item { height: 260px; }
}

/* --- Gallery editorial masthead --- */
.gallery-masthead__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.gallery-masthead .hairline { margin: 0; }
.gallery-masthead__main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-2) var(--space-5);
  margin-block: var(--space-5) var(--space-4);
}
.gallery-masthead__main .display { margin: 0; }
.gallery-masthead__count {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding-bottom: 0.6rem;
}

/* --- Gallery closing pull quote --- */
.gallery-quote {
  margin: 0;
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  padding-block: var(--space-8);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.gallery-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  line-height: 1.3;
  color: var(--ink);
}
.gallery-quote figcaption {
  margin-top: var(--space-4);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Gallery grid (uniform tiles) --- */
.masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
}
@media (min-width: 600px) { .masonry { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .masonry { grid-template-columns: repeat(3, 1fr); } }

.masonry__item { margin: 0; }
.masonry__item[hidden] { display: none; }

.gallery-card {
  position: relative;
  overflow: hidden;
  background-color: var(--sand);
  cursor: zoom-in;
  aspect-ratio: 4 / 5;
  transition: transform 0.6s var(--ease-soft);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.08);
  transition: filter 0.7s ease;
}
@media (min-width: 1024px) {
  .gallery-card:hover { transform: translateY(-8px); }
  .gallery-card:hover img { filter: grayscale(0); }
}
.gallery-card__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: var(--space-3);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-soft);
}
@media (min-width: 1024px) {
  .gallery-card:hover .gallery-card__caption { transform: translateY(0); }
}
.gallery-card__cat {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}
.gallery-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

/* ==========================================================================
   GALLERY MONOGRAPH (editorial portfolio layout)
   ========================================================================== */

/* Margin marker (rotated, desktop only) */
.margin-marker {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: rotate(-90deg);
  transform-origin: left center;
  z-index: 40;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--hairline);
  pointer-events: none;
}
@media (max-width: 1100px) { .margin-marker { display: none; } }

/* Full-bleed hero */
.mono-hero {
  position: relative;
  height: min(92vh, 860px);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mono-hero__media { position: absolute; inset: 0; z-index: 0; }
.mono-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.mono-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.18);
}
.mono-hero__inner {
  position: relative;
  z-index: 1;
  color: var(--on-dark);
  padding-inline: var(--margin-safe);
}
.mono-hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  opacity: 0.9;
}
.mono-hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.25rem, 9vw, 5.5rem);
  line-height: 1;
  color: var(--on-dark);
  margin-bottom: var(--space-4);
}
.mono-hero__rule {
  display: inline-block;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(245, 242, 234, 0.5);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Series sections */
.series { padding-block: var(--section-gap); }
.series__intro { margin-bottom: var(--space-8); max-width: 42rem; }
.series__intro--spread {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
}
.series__intro--spread > .series__lead-wrap { max-width: 36rem; }
.series__num {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-2);
}
.series__title { margin-bottom: var(--space-3); }
.series__lead { color: var(--muted); max-width: 38rem; }
.series__count {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding-bottom: 0.4rem;
}

/* Plate (image + caption + hover lift) */
.plate {
  display: block;
  cursor: zoom-in;
  background: none;
  border: 0;
  padding: 0;
  width: 100%;
  text-align: left;
}
.plate__frame {
  overflow: hidden;
  background-color: var(--sand);
}
.plate__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-soft);
}
.plate--4x5 .plate__frame { aspect-ratio: 4 / 5; }
.plate--3x4 .plate__frame { aspect-ratio: 3 / 4; }
.plate--1x1 .plate__frame { aspect-ratio: 1 / 1; }
.plate--16x9 .plate__frame { aspect-ratio: 16 / 9; }
@media (min-width: 1024px) {
  .plate:hover .plate__frame img { transform: translateY(-8px) scale(1.02); }
}
.plate__caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.plate__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.plate__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
}
/* Caption that reveals on hover — only on true pointer devices.
   Touch devices (no hover) always show the caption. */
@media (hover: hover) and (min-width: 1024px) {
  .plate__caption--reveal { opacity: 0; transition: opacity 0.4s ease; }
  .plate:hover .plate__caption--reveal { opacity: 1; }
}

/* Feature spread: large image + side note */
.spread-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--gutter);
}
@media (min-width: 768px) {
  .spread-feature { flex-direction: row; }
  .spread-feature__main { width: 66%; }
  .spread-feature__aside { width: 34%; padding-bottom: var(--space-6); }
}
.spread-note {
  border-top: 1px solid var(--hairline);
  padding-top: var(--space-3);
}
.spread-note__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.spread-note p { color: var(--muted); font-size: 0.95rem; }

/* Offset pair */
.spread-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6) var(--gutter);
}
@media (min-width: 768px) {
  .spread-pair { grid-template-columns: repeat(12, 1fr); }
  .spread-pair__a { grid-column: 2 / span 5; }
  .spread-pair__b { grid-column: 8 / span 4; margin-top: var(--space-8); }
}

/* Tonal composite: tall left + two stacked squares */
.composite {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
}
@media (min-width: 768px) {
  .composite { grid-template-columns: 7fr 5fr; align-items: stretch; }
}
.composite__main .plate__frame { aspect-ratio: 4 / 5; }
@media (min-width: 768px) {
  .composite__main { display: flex; }
  .composite__main .plate { display: flex; }
  .composite__main .plate__frame { aspect-ratio: auto; height: 100%; width: 100%; }
}
.composite__side { display: flex; flex-direction: column; gap: var(--gutter); }

/* Full-bleed breakout */
.breakout {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-block: var(--section-gap);
  overflow: hidden;
}
.breakout img {
  display: block;
  width: 100%;
  height: clamp(460px, 82vh, 900px);
  object-fit: cover;
}
.breakout__note {
  position: absolute;
  bottom: var(--space-5);
  right: var(--margin-safe);
  max-width: 22rem;
  background-color: rgba(223, 219, 207, 0.82);
  backdrop-filter: blur(6px);
  padding: var(--space-4);
}
.breakout__note span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.breakout__note p { font-family: var(--font-display); font-style: italic; color: var(--ink); }
@media (max-width: 767px) { .breakout__note { display: none; } }

/* Soft glam asymmetric */
.spread-glam {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter);
}
.spread-glam__a { width: 100%; }
.spread-glam__b { width: 100%; }
.spread-glam__c { width: 100%; margin-top: var(--space-5); }
@media (min-width: 768px) {
  .spread-glam__a { width: calc(40% - 12px); }
  .spread-glam__b { width: calc(60% - 12px); }
  .spread-glam__c { width: 50%; margin-inline: auto; margin-top: var(--space-5); }
}

/* Interlude pull-quote (paper section) */
.interlude {
  padding-block: var(--section-gap);
  background-color: var(--paper);
}
.interlude__inner {
  max-width: 56rem;
  margin-inline: auto;
  padding-inline: var(--margin-safe);
  text-align: center;
}
.interlude blockquote {
  margin: 0;
  padding-block: var(--space-6);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  line-height: 1.3;
  color: var(--ink);
}

/* Closing CTA */
.mono-cta {
  padding-block: var(--section-gap);
  border-top: 1px solid var(--hairline);
  text-align: center;
}

/* --- Instagram feed --- */
.ig-feed { padding-block: var(--section-gap); }
.ig-feed__head { text-align: center; margin-bottom: var(--space-6); }
.ig-feed__handle {
  display: inline-block;
  margin-top: var(--space-2);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  transition: color 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft);
}
.ig-feed__handle:hover { color: var(--ink); border-color: var(--ink); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}
.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--sand);
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-soft);
}
.ig-tile:hover img { transform: scale(1.05); }
.ig-tile__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(8, 8, 6, 0.32);
  opacity: 0;
  transition: opacity 0.4s var(--ease-soft);
}
.ig-tile:hover .ig-tile__icon,
.ig-tile:focus-visible .ig-tile__icon { opacity: 1; }
.ig-tile__icon svg { width: 30px; height: 30px; fill: var(--on-dark); }
.ig-feed__cta { text-align: center; margin-top: var(--space-6); }
@media (max-width: 600px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--space-5);
  background-color: rgba(8, 8, 6, 0.95);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox__img {
  max-width: 92vw;
  max-height: 78vh;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.lightbox__img.is-loading { opacity: 0; }
.lightbox__counter {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--on-dark);
  opacity: 0.6;
}
.lightbox__caption {
  margin-top: var(--space-4);
  text-align: center;
  color: var(--on-dark);
}
.lightbox__caption-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: var(--space-1);
}
.lightbox__caption-cat {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}
.lightbox__btn {
  position: absolute;
  color: var(--on-dark);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.lightbox__btn:hover { opacity: 0.55; }
.lightbox__close { top: var(--space-4); right: var(--space-4); font-size: 2rem; }
.lightbox__prev { left: var(--space-2); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: var(--space-2); top: 50%; transform: translateY(-50%); }
@media (min-width: 768px) {
  .lightbox__prev { left: var(--space-5); }
  .lightbox__next { right: var(--space-5); }
}

/* --- Booking embed placeholder --- */
.booking-embed {
  max-width: 920px;
  margin-inline: auto;
}
/* The live Acuity iframe sits flush and fills the width; embed.js
   auto-resizes the height to fit the scheduler content. */
.booking-embed iframe {
  width: 100%;
  border: 0;
  display: block;
  min-height: 760px;
}
/* Placeholder variant (no live iframe): boxed, centered copy */
.booking-embed--placeholder {
  border: 1px dashed var(--hairline);
  background-color: var(--paper);
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-6) var(--space-4);
}
/* On small screens, give the scheduler more width and height so it
   does not feel cramped (pull it closer to the screen edges). */
@media (max-width: 600px) {
  .booking-embed {
    margin-inline: calc(10px - var(--margin-safe));
  }
  .booking-embed iframe { min-height: 920px; }
}
.booking-embed__mark {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-3);
}

/* --- Quote band --- */
.quote-band {
  text-align: center;
  padding-block: var(--section-gap);
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 60rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.25;
  color: var(--ink);
}

/* --- Testimonials --- */
.testimonial {
  text-align: center;
  max-width: 60rem;
  margin-inline: auto;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: var(--space-4);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.testimonial__cite {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* Testimonial wall (masonry-style column flow) */
.testimonial-wall {
  columns: 2;
  column-gap: var(--gutter);
}
.testimonial-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 var(--gutter);
  padding: var(--space-5);
  border: 1px solid var(--hairline);
  background-color: var(--bg);
}
.testimonial-card__quote {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--body);
  margin: 0 0 var(--space-4);
}
.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
}
@media (max-width: 768px) {
  .testimonial-wall { columns: 1; }
}

/* --- CTA band over image --- */
.cta-band {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  color: var(--on-dark);
  padding-inline: var(--margin-safe);
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--on-dark);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-5);
}

/* --- Map placeholder --- */
.map-frame {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background-color: var(--sand);
}
.map-frame img,
.map-frame iframe {
  width: 100%; height: 100%; object-fit: cover;
  border: 0; display: block;
  filter: grayscale(1);
  transition: filter 0.7s ease;
}
.map-frame img { opacity: 0.7; }
.map-frame:hover img,
.map-frame:hover iframe { filter: grayscale(0); }
.map-pin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.map-pin__chip {
  background-color: rgba(223, 219, 207, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--hairline);
  padding: var(--space-3) var(--space-4);
  text-align: center;
}

/* ==========================================================================
   10. ANIMATIONS
   ========================================================================== */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; transition: opacity 0.6s linear; }
  .strip__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   11. UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-xs { max-width: 22rem; }
.maxw-sm { max-width: 30rem; }
.maxw-md { max-width: 38rem; }
.maxw-lg { max-width: 46rem; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.grayscale { filter: grayscale(1); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-1);
  border-bottom: 1px solid var(--hairline);
}
.price-row span { font-size: 0.95rem; }

/* Service menu list (used on the Services page) */
.service-list { width: 100%; }
.service-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--hairline);
}
.service-row:first-child { padding-top: 0; }
.service-row__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--ink);
}
.service-row__meta {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.service-row__link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: var(--hairline);
  transition: text-decoration-color 0.35s ease;
}
.service-row__link .arrow {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.85em;
  transition: transform 0.35s ease;
}
.service-row__link:hover { text-decoration-color: var(--ink); }
.service-row__link:hover .arrow { transform: translateX(4px); }
.service-row__price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ink);
  white-space: nowrap;
}

/* --- Booking policies accordion --- */
.policy {
  border-top: 1px solid var(--hairline);
}
.policies .policy:last-child { border-bottom: 1px solid var(--hairline); }
.policy > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-4);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.35s ease;
}
.policy > summary::-webkit-details-marker { display: none; }
.policy > summary:hover { color: var(--muted); }
.policy > summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.policy__icon {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}
.policy__icon::before,
.policy__icon::after {
  content: "";
  position: absolute;
  background-color: var(--ink);
  transition: transform 0.35s var(--ease-soft), opacity 0.35s var(--ease-soft);
}
.policy__icon::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.policy__icon::after { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.policy[open] .policy__icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.policy__body { padding-bottom: var(--space-5); max-width: 60ch; }
.policy__body p { color: var(--muted); margin-bottom: var(--space-3); }
.policy__body p:last-child { margin-bottom: 0; }
.policy__list {
  list-style: disc;
  padding-left: 1.2em;
  margin-bottom: var(--space-3);
}
.policy__list li {
  color: var(--muted);
  margin-bottom: var(--space-2);
  padding-left: 0.2em;
}
.policy__list li::marker { color: var(--hairline); }

.spread {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
}

/* ==========================================================================
   12. RESPONSIVE REFINEMENTS
   ========================================================================== */
@media (max-width: 767px) {
  :root { --margin-safe: 20px; --section-gap: 80px; }
  .offset-down { margin-top: 0; }

  /* Hero: keep the wordmark and tagline inside the viewport */
  .hero { min-height: min(86vh, 720px); }
  .hero__title { font-size: clamp(3rem, 15vw, 4.25rem); }
  .hero__tagline { letter-spacing: 0.16em; font-size: 0.72rem; }
  .hero__eyebrow { letter-spacing: 0.02em; }

  /* Footer stacks vertically */
  .footer-bottom {
    margin-top: var(--space-5);
    flex-direction: column;
    gap: var(--space-1);
  }

  /* Section CTAs and bands give a touch more breathing room */
  .cta-band { min-height: 420px; }
  .quote-band blockquote { font-size: clamp(1.6rem, 7vw, 2rem); }
}

@media (max-width: 480px) {
  .btn { padding: 14px 22px; width: 100%; }
  .nav__actions .btn { width: auto; }
  .product-grid { grid-template-columns: 1fr; }
}
