/* ==========================================================================
   PhotoBuffs LLC — design system

   Palette sampled directly from the brand mark:
     badge cream  #f7eedc   ·  script terracotta #af5050
     sparkle brass #ad8028  ·  wordmark black    #101010
   Accents are darkened from those samples so every one clears WCAG AA (4.5:1)
   on all four surfaces. No frameworks, no build step.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  /* surfaces, light → dark */
  --paper:   #fbf6ee;   /* page ground */
  --card:    #f6ecdd;   /* the badge cream — cards, alternating sections */
  --raised:  #efe1cd;   /* inputs, wells, hovers */
  --blush:   #f4e6de;   /* rose-tinted band */
  --deep:    #191309;   /* dark bands — CTA, footer, lightbox */
  --deep-2:  #241b10;

  /* type */
  --ink:     #1d1712;   /* headings, body            16.5:1 on paper */
  --ink-2:   #4c4038;   /* secondary copy             9.3:1 */
  --ink-3:   #6a5b4d;   /* meta, captions             6.1:1 */

  /* accents */
  --rose:      #9c3f37; /* primary — the "Buffs" script   6.1:1 */
  --rose-soft: #bd7a6d; /* decorative, or type on --deep */
  --brass:     #7c5d18; /* secondary — the sparkles       5.7:1 */
  --brass-soft:#c9a84c; /* decorative, or type on --deep */

  /* on the dark bands */
  --deep-fg:   #f7efe2;
  --deep-fg-2: #cdbfae;

  --line:      rgba(29, 23, 18, 0.12);
  --line-soft: rgba(29, 23, 18, 0.07);
  --line-deep: rgba(247, 239, 226, 0.16);

  --serif: 'Playfair Display', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:  'Raleway', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --step--1: clamp(0.78rem, 0.76rem + 0.10vw, 0.84rem);
  --step-0:  clamp(0.95rem, 0.92rem + 0.16vw, 1.06rem);
  --step-1:  clamp(1.10rem, 1.03rem + 0.34vw, 1.32rem);
  --step-2:  clamp(1.35rem, 1.20rem + 0.72vw, 1.85rem);
  --step-3:  clamp(1.70rem, 1.40rem + 1.45vw, 2.60rem);
  --step-4:  clamp(2.05rem, 1.55rem + 2.35vw, 3.45rem);

  --gap:   clamp(1rem, 0.7rem + 1.4vw, 1.75rem);
  --pad-y: clamp(3.5rem, 2rem + 6vw, 7rem);
  --pad-x: clamp(1.15rem, 0.6rem + 2.4vw, 2rem);
  --wrap:  1180px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --lift:   0 2px 4px -2px rgba(45, 30, 18, 0.10), 0 10px 26px -14px rgba(45, 30, 18, 0.22);
  --lift-2: 0 4px 8px -4px rgba(45, 30, 18, 0.14), 0 20px 44px -18px rgba(45, 30, 18, 0.30);

  --header-h: 68px;
  color-scheme: light;
}
@media (min-width: 900px) { :root { --header-h: 84px; } }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
[hidden] { display: none !important; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: var(--rose); text-decoration-thickness: 1px; text-underline-offset: 3px; }
ul, ol { list-style: none; padding: 0; }
:target { scroll-margin-top: calc(var(--header-h) + 20px); }

::selection { background: var(--rose); color: var(--paper); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--card); }
::-webkit-scrollbar-thumb { background: #d3c3ab; border: 3px solid var(--card); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #bda98c; }

/* ---------- focus ---------- */
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 2px; }
.skip {
  position: absolute; left: 12px; top: -100px; z-index: 200;
  background: var(--rose); color: var(--paper);
  padding: 12px 20px; font-weight: 700; font-size: var(--step--1);
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip:focus { top: 12px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad-x); }
.wrap--narrow { max-width: 860px; }
.section { padding-block: var(--pad-y); position: relative; }
.section--tint { background: var(--card); }
.section--blush { background: var(--blush); }
.section--rule { border-top: 1px solid var(--line-soft); }
.grid { display: grid; gap: var(--gap); }
@media (min-width: 720px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 500; line-height: 1.15; text-wrap: balance; }
h1 { font-size: var(--step-4); letter-spacing: -0.01em; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); font-weight: 600; }
h4 { font-size: var(--step-1); font-weight: 600; }
p  { text-wrap: pretty; }
em { font-style: italic; color: var(--rose); }
.lede { font-size: var(--step-1); color: var(--ink-2); line-height: 1.7; }
.measure { max-width: 60ch; }
.measure--tight { max-width: 46ch; }
.center .measure, .center .measure--tight { margin-inline: auto; }
.muted { color: var(--ink-3); }
.gold { color: var(--brass); }

.eyebrow {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: ""; height: 1px; flex: 1; max-width: 56px;
  background: linear-gradient(90deg, transparent, var(--rose-soft));
}
.eyebrow::after { background: linear-gradient(90deg, var(--rose-soft), transparent); }
.center .eyebrow { justify-content: center; }
.eyebrow--start { justify-content: flex-start; }
.eyebrow--start::before { display: none; }

.section-head { margin-bottom: clamp(2.25rem, 1rem + 3.5vw, 4rem); }
.section-head p { margin-top: 1rem; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--rose);
  --btn-fg: var(--paper);
  --btn-bd: var(--rose);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--btn-bd);
  position: relative; overflow: hidden; isolation: isolate;
  text-align: center; text-wrap: balance;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--lift-2); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: rgba(29, 23, 18, 0.28);
}
.btn--ghost:hover { background: var(--raised); border-color: var(--ink); box-shadow: none; }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 0.8rem; }
.btn--sm { padding: 0.7rem 1.35rem; font-size: 0.68rem; }
.btn--block { width: 100%; }
.btn .icon { width: 1em; height: 1em; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.center .btn-row { justify-content: center; }

/* on the dark bands */
.on-deep .btn { --btn-bg: var(--brass-soft); --btn-fg: var(--deep); --btn-bd: var(--brass-soft); }
.on-deep .btn--ghost { --btn-bg: transparent; --btn-fg: var(--deep-fg); --btn-bd: rgba(247, 239, 226, 0.35); }
.on-deep .btn--ghost:hover { background: rgba(247, 239, 226, 0.08); border-color: var(--deep-fg); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose); text-decoration: none;
}
.link-arrow .icon { width: 0.9em; height: 0.9em; transition: transform 0.25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }
.link-arrow:hover { text-decoration: underline; }

/* ---------- icons ---------- */
.icon { width: 1.25rem; height: 1.25rem; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon--fill { fill: currentColor; stroke: none; }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(251, 246, 238, 0.72);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.header[data-stuck="true"] {
  background: rgba(251, 246, 238, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px -12px rgba(45, 30, 18, 0.5);
}
.header__inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { height: 40px; width: auto; }
@media (min-width: 900px) { .brand img { height: 52px; } }
.brand__name {
  font-family: var(--serif); font-weight: 600; font-size: 1.05rem;
  color: var(--ink); letter-spacing: 0.04em; line-height: 1.1;
}
.brand__name small {
  display: block; font-family: var(--sans); font-size: 0.53rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose); margin-top: 3px;
}

.nav { display: none; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.1rem); }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a:not(.btn) {
  position: relative; padding: 4px 0;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  transition: color 0.2s var(--ease);
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: var(--rose); transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav a:not(.btn):hover { color: var(--rose); }
.nav a:not(.btn):hover::after,
.nav a:not(.btn)[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a:not(.btn)[aria-current="page"] { color: var(--rose); }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; color: var(--ink);
  border: 1px solid var(--line);
}
@media (min-width: 900px) { .burger { display: none; } }
.burger .icon { width: 1.35rem; height: 1.35rem; }
.burger[aria-expanded="true"] .burger__open,
.burger[aria-expanded="false"] .burger__close { display: none; }

.drawer {
  display: none; border-top: 1px solid var(--line);
  background: var(--paper); box-shadow: var(--lift);
  padding: 1.25rem var(--pad-x) 1.75rem;
}
.drawer[data-open="true"] { display: block; }
@media (min-width: 900px) { .drawer { display: none !important; } }
.drawer a:not(.btn) {
  display: block; padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
.drawer a:not(.btn)[aria-current="page"] { color: var(--rose); }
.drawer .btn { margin-top: 1.35rem; }
.drawer__contact { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.25rem; font-size: 0.8rem; }
.drawer__contact a:not(.btn) { display: inline; border: 0; padding: 0; letter-spacing: 0.04em; text-transform: none; color: var(--ink-3); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: min(100svh, 880px);
  padding-top: calc(var(--header-h) + clamp(1.75rem, 4.5vw, 3.25rem));
  padding-bottom: clamp(3rem, 7vw, 5rem);
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse 90% 70% at 15% 5%, #fffcf7 0%, transparent 65%),
    linear-gradient(155deg, var(--paper) 0%, #f8efe6 48%, var(--blush) 100%);
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 46% 42% at 78% 38%, rgba(189, 122, 109, 0.22) 0%, transparent 68%),
    radial-gradient(ellipse 40% 40% at 8% 84%, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.22; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.30'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; z-index: 1; display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center; }
@media (min-width: 1000px) { .hero__inner { grid-template-columns: 1.14fr 0.86fr; } }
.hero__logo { width: clamp(96px, 14vw, 132px); margin-bottom: 1.35rem; }
.hero h1 { margin-block: 0.5rem 0; }
.hero h1 em { display: block; }
.hero__sub { margin-top: 1.25rem; max-width: 36rem; font-size: var(--step-0); }
.hero .btn-row { margin-top: 1.85rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 0.55rem 1.35rem; margin-top: 1.85rem;
  padding-top: 1.35rem; border-top: 1px solid var(--line);
  font-size: 0.71rem; letter-spacing: 0.04em; color: var(--ink-3);
}
.hero__trust li { display: flex; align-items: center; gap: 0.5rem; }
.hero__trust .icon { width: 0.95rem; height: 0.95rem; color: var(--brass); }

/* photo-strip motif — a camera that feeds the strips out on scroll ---------- */
.printer { position: relative; padding-top: 106px; }
.printer__cam {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: clamp(150px, 46vw, 208px); height: auto; z-index: 4;
  filter: drop-shadow(0 14px 22px rgba(45, 30, 18, 0.28));
}

.strip-stage {
  position: relative; display: flex; justify-content: center; align-items: flex-start;
  min-height: 300px; padding-top: 12px;
  /* clip only the top edge, at the slot line — sides and bottom stay open so the
     fan and its shadows are never cut */
  clip-path: inset(0 -40% -45% -40%);
}
@media (max-width: 999px) { .strip-stage { min-height: 260px; } }

.strip {
  --tilt: -7deg;
  --strip-w: min(178px, 40vw);
  --fx: 0px;
  position: relative;
  width: var(--strip-w);
  padding: 10px 10px 38px;
  background: #fffdf9;
  border: 1px solid rgba(29, 23, 18, 0.07);
  box-shadow: 0 1px 2px rgba(45, 30, 18, 0.10), 0 18px 40px -18px rgba(45, 30, 18, 0.45);
  transform: rotate(var(--tilt));
}
.strip:nth-child(1) { --fx: calc(var(--strip-w) - 26px); --delay: 0.15s;  margin-top: 16px; z-index: 1; }
.strip:nth-child(2) { --tilt: 6deg;  --fx: 0px; --delay: 0.95s; margin-left: -26px; margin-top: 34px; z-index: 3; }
.strip:nth-child(3) { --tilt: -3deg; --fx: calc((var(--strip-w) - 26px) * -1); --delay: 1.75s; margin-left: -26px; margin-top: 0; z-index: 2; display: none; }
@media (min-width: 620px) { .strip:nth-child(3) { display: block; } }

.strip__frames { display: grid; gap: 8px; }
.strip__frames img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--raised); }
.strip__foot {
  position: absolute; left: 0; right: 0; bottom: 11px;
  text-align: center; font-size: 0.44rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; color: #7a6a58;
}

/* Before printing, each strip is tucked behind the camera and above the slot
   line, so the clip-path hides it entirely. Guarded on JS being present, since
   without it there is nothing to trigger the animation. */
html:not(.no-js) .printer:not(.is-printing) .strip {
  transform: translate(var(--fx), -112%) rotate(0deg);
}
html:not(.no-js) .printer.is-printing .strip {
  /* the delay rides inside the shorthand — a separate animation-delay rule would
     be reset by this shorthand and every strip would feed out at once */
  animation: feed 1.15s linear var(--delay, 0s) both;
}

@keyframes feed {
  /* phase 1: pushed straight down out of the slot, square to the camera */
  0%   { transform: translate(var(--fx), -112%) rotate(0deg);
         animation-timing-function: cubic-bezier(0.42, 0.12, 0.58, 0.94); }
  /* phase 2: slides across and settles into the fan */
  56%  { transform: translate(var(--fx), 0) rotate(0deg);
         animation-timing-function: cubic-bezier(0.22, 0.7, 0.3, 1); }
  100% { transform: translate(0, 0) rotate(var(--tilt)); }
}

/* flash pops as each strip is taken */
@keyframes flash {
  0%, 3%, 28%, 34%, 54%, 60%, 100% { fill: #e7d09a; }
  5%, 31%, 57%                     { fill: #fffaf0; }
}
.printer.is-printing .printer__flash { animation: flash 2.95s linear 0.05s 1; }
@keyframes shutter {
  0%, 2%, 27%, 33%, 53%, 59%, 100% { transform: translateY(0); }
  4%, 30%, 56%                     { transform: translateY(2.5px); }
}
.printer.is-printing .printer__shutter { animation: shutter 2.95s linear 0.05s 1; }

/* Reduced motion: no feed, no flash — the finished arrangement, immediately. */
@media (prefers-reduced-motion: reduce) {
  html:not(.no-js) .printer:not(.is-printing) .strip,
  html:not(.no-js) .printer.is-printing .strip {
    transform: rotate(var(--tilt));
    animation: none;
  }
  .printer.is-printing .printer__flash,
  .printer.is-printing .printer__shutter { animation: none; }
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-3);
}
@media (min-width: 1000px) and (min-height: 720px) { .hero__scroll { display: flex; } }
.hero__scroll span.line {
  width: 1px; height: 42px;
  background: linear-gradient(180deg, transparent, var(--rose));
  animation: drop 2.4s var(--ease) infinite;
}
@keyframes drop { 0%, 100% { transform: scaleY(0.4); opacity: 0.35; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- stat band ---------- */
.stats {
  display: grid; gap: 1px; background: var(--line);
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 780px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats li { background: var(--card); padding: clamp(1.5rem, 3vw, 2.4rem) 1rem; text-align: center; }
.stats b {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.9rem, 1.2rem + 2.2vw, 2.9rem); color: var(--rose); line-height: 1;
}
.stats span {
  display: block; margin-top: 0.6rem;
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-3);
}

/* ---------- cards ---------- */
.card {
  position: relative; background: var(--paper);
  border: 1px solid var(--line); padding: clamp(1.6rem, 3vw, 2.25rem);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.section--tint .card, .section--blush .card { background: var(--paper); }
.card:hover { border-color: rgba(29, 23, 18, 0.22); transform: translateY(-3px); box-shadow: var(--lift); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 1.35rem;
  background: var(--blush);
  border: 1px solid var(--line-soft); color: var(--rose);
}
.card__icon .icon { width: 1.5rem; height: 1.5rem; }
.card h3, .card h4 { margin-bottom: 0.8rem; }
.card p { color: var(--ink-2); font-size: var(--step-0); }

/* experience cards */
.xp { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--lift); }
.xp__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--raised); }
.xp__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.xp:hover .xp__media img { transform: scale(1.06); }
.xp__tag {
  position: absolute; z-index: 1; top: 1rem; left: 1rem;
  padding: 0.4rem 0.9rem; background: var(--paper); color: var(--rose);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  box-shadow: var(--lift);
}
.xp--rose .xp__tag { color: var(--brass); }
.xp__body { padding: clamp(1.6rem, 3vw, 2.25rem); display: flex; flex-direction: column; flex: 1; gap: 1.1rem; }
.xp__rule { width: 46px; height: 2px; background: var(--rose); }
.xp--rose .xp__rule { background: var(--brass); }
.ticks { display: grid; gap: 0.7rem; margin-top: auto; }
.ticks li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.88rem; color: var(--ink-2); line-height: 1.55; }
.ticks .icon { width: 1rem; height: 1rem; margin-top: 0.28rem; color: var(--rose); }
.xp__note {
  margin-top: 0.35rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft);
  font-size: 0.8rem; line-height: 1.65; color: var(--ink-3);
}
.xp__body .btn { margin-top: 0.25rem; }
/* the two booking paths carry equal weight: same button style, stacked so
   neither label has to wrap inside a card column */
.xp__actions { display: grid; gap: 0.6rem; margin-top: 0.25rem; }
.xp__actions .btn { margin-top: 0; width: 100%; }
.xp__actions .btn .icon { width: 0.8em; height: 0.8em; }
.xp--rose .ticks .icon { color: var(--brass); }

/* included grid */
.included { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 640px) { .included { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .included { grid-template-columns: repeat(4, 1fr); } }
/* 6-item variant — 3x2 fills exactly, no empty cells */
@media (min-width: 900px) { .included--three { grid-template-columns: repeat(3, 1fr); } }
.included li { background: var(--paper); padding: 1.6rem 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; }
.included .icon { width: 1.35rem; height: 1.35rem; color: var(--rose); }
.included b { font-family: var(--serif); font-size: 1.02rem; font-weight: 600; color: var(--ink); }
.included p { font-size: 0.83rem; color: var(--ink-3); line-height: 1.65; }

/* ways to share */
.share {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem;
}
.share li {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 1.15rem; background: var(--paper); border: 1px solid var(--line);
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-2);
}
.share .icon { width: 1rem; height: 1rem; color: var(--rose); }

/* equipment credential */
.kit {
  max-width: 62ch; margin: clamp(2.25rem, 4vw, 3rem) auto 0;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background: var(--paper); border: 1px solid var(--line);
  border-left: 3px solid var(--rose);
  text-align: left;
}
.kit .label { color: var(--rose); margin-bottom: 0.6rem; }
.kit p { font-size: 0.9rem; color: var(--ink-2); line-height: 1.8; }
.kit strong { color: var(--ink); font-weight: 700; }

/* steps */
.steps { counter-reset: step; display: grid; gap: var(--gap); }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { position: relative; padding-top: 2.6rem; }
.steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--serif); font-size: 1.6rem; color: var(--rose); line-height: 1;
}
.steps li::after {
  content: ""; position: absolute; top: 0.75rem; left: 3rem; right: -0.75rem; height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
@media (max-width: 859px) { .steps li::after { display: none; } }
.steps li:last-child::after { display: none; }
.steps h3 { font-size: var(--step-1); font-weight: 600; margin-bottom: 0.6rem; }
.steps p { font-size: 0.88rem; color: var(--ink-3); }

/* ---------- gallery ---------- */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.chip {
  padding: 0.6rem 1.3rem; border: 1px solid var(--line); color: var(--ink-2); background: var(--paper);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase;
  transition: all 0.22s var(--ease);
}
.chip:hover { color: var(--rose); border-color: var(--rose-soft); }
.chip[aria-pressed="true"] { background: var(--rose); border-color: var(--rose); color: var(--paper); }

.masonry { columns: 2; column-gap: 12px; }
@media (min-width: 700px)  { .masonry { columns: 3; } }
@media (min-width: 1040px) { .masonry { columns: 4; } }
/* a small set reads better in fewer, larger columns than in a sparse grid */
@media (min-width: 1040px) { .masonry--few { columns: 3; } }
.tile {
  break-inside: avoid; margin-bottom: 12px; position: relative; display: block; width: 100%;
  overflow: hidden; background: var(--raised); border: 1px solid var(--line-soft); padding: 0;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tile img { width: 100%; height: auto; object-fit: cover; transition: transform 0.8s var(--ease); }
.tile figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.5rem 1rem 0.9rem; text-align: left;
  background: linear-gradient(to top, rgba(25, 19, 9, 0.86), transparent);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--deep-fg);
  opacity: 0; transform: translateY(8px); transition: all 0.3s var(--ease);
}
.tile:hover img, .tile:focus-visible img { transform: scale(1.07); }
.tile:hover figcaption, .tile:focus-visible figcaption { opacity: 1; transform: translateY(0); }
.tile:hover, .tile:focus-visible { border-color: var(--rose-soft); box-shadow: var(--lift); }

/* lightbox — stays dark so photographs read correctly */
.lightbox { padding: 0; border: 0; background: rgba(15, 11, 6, 0.96); color: var(--deep-fg); max-width: 100vw; max-height: 100dvh; width: 100%; height: 100%; overflow: hidden; }
.lightbox::backdrop { background: rgba(15, 11, 6, 0.95); backdrop-filter: blur(6px); }
.lightbox__stage { width: 100%; height: 100%; display: grid; place-items: center; padding: clamp(1rem, 4vw, 3.5rem); }
.lightbox__stage img { max-width: min(1200px, 92vw); max-height: 78dvh; width: auto; object-fit: contain; box-shadow: 0 30px 70px -30px #000; }
.lightbox__bar {
  position: absolute; inset: auto 0 0 0; padding: 1rem clamp(1rem, 4vw, 2rem) 1.6rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  color: var(--deep-fg); font-size: 0.78rem;
}
.lightbox__count { font-variant-numeric: tabular-nums; color: var(--deep-fg-2); letter-spacing: 0.14em; font-size: 0.7rem; }
.lb-btn {
  width: 46px; height: 46px; display: inline-grid; place-items: center;
  border: 1px solid rgba(247, 239, 226, 0.3); color: var(--deep-fg); background: rgba(25, 19, 9, 0.6);
  transition: all 0.2s var(--ease);
}
.lb-btn:hover { background: var(--brass-soft); color: var(--deep); border-color: var(--brass-soft); }
.lightbox :focus-visible { outline-color: var(--brass-soft); }
.lightbox__close { position: absolute; top: clamp(0.8rem, 3vw, 1.5rem); right: clamp(0.8rem, 3vw, 1.5rem); }
.lightbox__prev { position: absolute; top: 50%; left: clamp(0.5rem, 2vw, 1.5rem); transform: translateY(-50%); }
.lightbox__next { position: absolute; top: 50%; right: clamp(0.5rem, 2vw, 1.5rem); transform: translateY(-50%); }

/* ---------- reviews ---------- */
.score {
  display: grid; gap: 2rem; align-items: center; text-align: center;
  padding: clamp(2rem, 4vw, 3rem); background: var(--card); border: 1px solid var(--line);
}
@media (min-width: 720px) { .score { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.score__n { font-family: var(--serif); font-size: clamp(2.6rem, 1.8rem + 3vw, 4rem); color: var(--rose); line-height: 1; font-weight: 600; }
.score__n sup { font-size: 0.45em; vertical-align: super; }
.score__label { margin-top: 0.75rem; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); }
.score > div + div { border-top: 1px solid var(--line); padding-top: 2rem; }
@media (min-width: 720px) { .score > div + div { border-top: 0; border-left: 1px solid var(--line); padding-top: 0; } }
.stars { display: inline-flex; gap: 3px; color: var(--brass); }
.stars .icon { width: 1rem; height: 1rem; fill: currentColor; stroke: none; }

.quote { display: flex; flex-direction: column; gap: 1.15rem; padding: clamp(1.6rem, 3vw, 2.2rem); background: var(--paper); border: 1px solid var(--line); }
.section--tint .quote { background: var(--paper); }
.quote__mark { font-family: var(--serif); font-size: 3rem; line-height: 0.6; color: var(--rose-soft); height: 1.4rem; }
.quote blockquote { font-size: 0.95rem; line-height: 1.85; color: var(--ink-2); font-style: italic; flex: 1; }
.quote figcaption { display: flex; flex-direction: column; gap: 0.35rem; padding-top: 1.15rem; border-top: 1px solid var(--line-soft); }
.quote cite { font-style: normal; font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--ink); }
.quote .meta { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--rose); }

/* third-party vendor badge — their asset, their colours, so it is given its own
   quiet surface rather than fought with */
.tk-proof {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
}
.tk-badge { display: inline-block; line-height: 0; transition: transform 0.25s var(--ease); }
.tk-badge:hover { transform: scale(1.04); }
.tk-badge img { width: 150px; height: 150px; }
.tk-proof p { font-size: 0.78rem; letter-spacing: 0.04em; }

/* ---------- areas ---------- */
.areas { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.areas li {
  padding: 0.55rem 1.15rem; border: 1px solid var(--line); background: var(--paper);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2);
  transition: all 0.25s var(--ease);
}
.areas li:hover { border-color: var(--rose-soft); color: var(--rose); }

/* ---------- faq ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0.25rem; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: var(--step-1); font-weight: 600; color: var(--ink);
  transition: color 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--rose); }
.faq summary .icon { width: 1.1rem; height: 1.1rem; color: var(--rose); transition: transform 0.3s var(--ease); }
.faq details[open] summary .icon { transform: rotate(45deg); }
.faq details > div { padding: 0 0.25rem 1.6rem; color: var(--ink-2); max-width: 68ch; }
.faq details > div > * + * { margin-top: 0.85rem; }

/* ---------- forms ---------- */
.form { display: grid; gap: 1.35rem; }
.form__row { display: grid; gap: 1.35rem; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field > label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--ink-3); }
.field .req { color: var(--rose); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--paper); color: var(--ink);
  border: 1px solid rgba(29, 23, 18, 0.22); border-radius: 0;
  font-size: 0.92rem; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 8.5rem; line-height: 1.7; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239c3f37' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 1rem; padding-right: 2.6rem;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(156, 63, 55, 0.14);
}
.field input::placeholder, .field textarea::placeholder { color: #948474; }
.field .hint { font-size: 0.74rem; color: var(--ink-3); }
.field .error { font-size: 0.74rem; color: #a4322a; display: none; }
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: #a4322a; }
.field[data-invalid="true"] .error { display: block; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form__status { padding: 1rem 1.15rem; border: 1px solid var(--line); background: var(--card); font-size: 0.88rem; color: var(--ink-2); }
.form__status[data-tone="error"] { border-color: #c07a6c; background: #fbeee9; color: #8c2a22; }

.sent { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.15rem; padding: clamp(2.5rem, 5vw, 4rem) 2rem; border: 1px solid var(--line); background: var(--card); }
.sent .icon { width: 2.5rem; height: 2.5rem; color: var(--rose); }

/* contact aside */
.info { display: grid; gap: 1.6rem; padding: clamp(1.6rem, 3vw, 2.2rem); background: var(--card); border: 1px solid var(--line); }
.info__item { display: flex; gap: 1rem; align-items: flex-start; }
.info__item .icon { width: 1.1rem; height: 1.1rem; color: var(--rose); margin-top: 0.4rem; }
.info__item b { display: block; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.2rem; }
.info__item a, .info__item span { color: var(--ink); font-size: 0.95rem; text-decoration: none; }
.info__item a:hover { color: var(--rose); text-decoration: underline; }
.note { padding: 1.35rem; background: var(--blush); border: 1px solid var(--line-soft); }
.note b { display: block; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.6rem; }
.note p { font-size: 0.88rem; color: var(--ink-2); }

.label {
  display: block; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.17em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.9rem;
}
.divider-top { padding-top: 1.25rem; border-top: 1px solid var(--line); }

.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.socials a {
  display: inline-flex; align-items: center; gap: 0.45rem; height: 40px; padding-inline: 0.85rem;
  border: 1px solid var(--line); color: var(--rose); text-decoration: none;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  transition: all 0.22s var(--ease);
}
.socials a[aria-label]:not(:has(span)) { width: 40px; padding: 0; justify-content: center; }
.socials a:hover { background: var(--blush); border-color: var(--rose-soft); }

/* ---------- dark bands: CTA + footer ---------- */
.on-deep { background: var(--deep); color: var(--deep-fg-2); }
.on-deep h1, .on-deep h2, .on-deep h3, .on-deep h4 { color: var(--deep-fg); }
.on-deep .lede { color: var(--deep-fg-2); }
.on-deep .eyebrow { color: var(--brass-soft); }
.on-deep .eyebrow::before { background: linear-gradient(90deg, transparent, var(--brass-soft)); }
.on-deep .eyebrow::after  { background: linear-gradient(90deg, var(--brass-soft), transparent); }
.on-deep a:not(.btn) { color: var(--brass-soft); }
.on-deep :focus-visible { outline-color: var(--brass-soft); }

.cta {
  position: relative; overflow: hidden; text-align: center;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: linear-gradient(135deg, #191309 0%, #2b2013 52%, #191309 100%);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 30% 50%, rgba(189, 122, 109, 0.16), transparent 70%),
    radial-gradient(ellipse 50% 80% at 75% 50%, rgba(201, 168, 76, 0.14), transparent 70%);
}
.cta > * { position: relative; }

/* ---------- footer ---------- */
.footer { background: var(--deep); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1.3fr; } }
.footer h2 {
  font-family: var(--sans); font-size: 0.63rem; font-weight: 700; line-height: 1.4;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 1.25rem;
}
.footer p, .footer li { font-size: 0.88rem; color: var(--deep-fg-2); }
.footer a:not(.btn) { font-size: 0.88rem; color: var(--deep-fg-2); text-decoration: none; }
.footer a:not(.btn):hover { color: var(--brass-soft); text-decoration: underline; }
.footer__links { display: grid; gap: 0.8rem; }
.footer__contact { display: grid; gap: 0.9rem; }
.footer__contact li { display: flex; align-items: flex-start; gap: 0.7rem; }
.footer__contact .icon { width: 1rem; height: 1rem; color: var(--brass-soft); margin-top: 0.35rem; }
.footer__logo { width: 118px; margin-bottom: 1.25rem; }
.footer .socials a { border-color: var(--line-deep); color: var(--brass-soft); }
.footer .socials a:hover { background: rgba(247, 239, 226, 0.07); border-color: var(--brass-soft); text-decoration: none; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.75rem; border-top: 1px solid var(--line-deep);
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: var(--deep-fg-2);
}

/* ---------- mobile action bar ---------- */
.actionbar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr;
  background: rgba(251, 246, 238, 0.97); border-top: 1px solid var(--line);
  box-shadow: 0 -2px 24px -12px rgba(45, 30, 18, 0.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(100%); transition: transform 0.35s var(--ease);
}
.actionbar[data-show="true"] { transform: translateY(0); }
@media (min-width: 900px) { .actionbar { display: none; } }
.actionbar a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 0.5rem; text-decoration: none;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
}
.actionbar a:first-child { color: var(--ink); border-right: 1px solid var(--line); }
.actionbar a:last-child { background: var(--rose); color: var(--paper); }
.actionbar .icon { width: 1rem; height: 1rem; }
body:has(.actionbar[data-show="true"]) .footer { padding-bottom: 5.5rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- page header (interior) ---------- */
.pagehead {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--blush) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line-soft);
}
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.breadcrumb a:not(.btn) { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--rose); }

/* ---------- print ---------- */
@media print {
  .header, .actionbar, .hero__glow, .hero__grain, .cta { display: none !important; }
  body { background: #fff; color: #000; }
  .footer { background: #fff; }
  .footer p, .footer a, .footer li, .footer__bottom { color: #333; }
  h1, h2, h3, h4 { color: #000; }
}
