/* ===========================
   MARJO LEBBE — PAARDENKUNST
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0e0c0a;
  --offwhite: #f7f4ef;
  --cream:    #ede8df;
  --warm:     #c9b99a;
  --gold:     #a07840;
  --text:     #2a2018;
  --muted:    #7a6e62;
  --white:    #ffffff;
  --glass:    rgba(247, 244, 239, 0.16);
  --glass-border: rgba(255, 255, 255, 0.34);
  --glass-shadow: rgba(14, 12, 10, 0.28);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  background:
    radial-gradient(circle at 20% 0%, rgba(201,185,154,0.28), transparent 32rem),
    linear-gradient(180deg, var(--offwhite), var(--cream));
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, blockquote { font-family: 'Cormorant Garamond', serif; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1.1; font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.15; font-weight: 300; }
h3 { font-size: 1.1rem; font-weight: 400; font-family: 'Inter', sans-serif; }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 0.6rem;
  display: block;
}

blockquote {
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-dark  { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-light:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid rgba(44,40,32,0.4); }
.btn-outline:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 1rem; left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 2rem));
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.4rem;
  background: rgba(247, 244, 239, 0.72);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(14,12,10,0.16);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
  background: transparent;
}
.nav-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-left: 0.9rem;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(122,110,98,0.35);
  line-height: 1.2;
  white-space: nowrap;
  align-self: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0 2rem;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* nav dropdown */
.nav-links li.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 190px;
  background: var(--white);
  border: 1px solid rgba(201,185,154,0.4);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(14,12,10,0.16);
  padding: 0.6rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 60;
}
.nav-links li.has-dropdown:hover .nav-dropdown,
.nav-links li.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.3rem;
  color: var(--text) !important;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown a:hover { color: var(--gold) !important; background: rgba(201,185,154,0.12); }

.nav-cta {
  flex-shrink: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--black);
  color: var(--black);
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--black); color: var(--white); }

/* ===== HAMBURGER ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 5.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 2rem));
  z-index: 199;
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.4rem 1rem;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(14,12,10,0.16);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201,185,154,0.25);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu a.mm-sub {
  font-size: 0.7rem;
  padding: 0.55rem 0 0.55rem 1.1rem;
  color: var(--text);
  border-bottom: 1px solid rgba(201,185,154,0.14);
  text-transform: none;
  letter-spacing: 0.06em;
}
.mobile-menu a.mm-sub:hover { color: var(--gold); }

/* ===== NAV ON LIGHT PAGES (no hero) ===== */
.has-pagehead #nav .nav-links a { color: var(--muted); }
.nav-links a.active { color: var(--gold); }

/* ===== PAGE HEADER (interior pages) ===== */
.pagehead {
  padding: 9.5rem 2.5rem 4rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,185,154,0.32), transparent 30rem),
    linear-gradient(180deg, var(--cream), var(--offwhite));
  position: relative;
}
.pagehead::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1180px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,185,154,0.55), transparent);
}
.pagehead .eyebrow { display: block; color: var(--gold); }
.pagehead h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: 0.3rem 0 0.8rem; }
.pagehead h1 em { font-style: italic; color: var(--gold); }
.pagehead p { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 0.95rem; }
.pagehead.compact { padding: 8rem 2rem 1.5rem; }
.pagehead.compact p { display: none; }
.shop-statement {
  background: var(--offwhite);
  padding: 4.5rem 2.5rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,185,154,0.4);
}
.shop-statement-inner { max-width: 760px; margin: 0 auto; }
.shop-statement .eyebrow { color: var(--gold); display: block; margin-bottom: 1.2rem; }
.shop-statement blockquote {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.5;
  color: var(--text);
}
.shop-statement blockquote em { color: var(--gold); font-style: italic; }

/* ===== SHOP CATEGORIES ===== */
.shop-cats {
  background: var(--offwhite);
  padding: 5.5rem 2.5rem 5.5rem;
}
.shop-cats-head {
  max-width: 1180px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.shop-cats-head .eyebrow { color: var(--gold); display: block; margin-bottom: 0.6rem; }
.shop-cats-head h2 { margin: 0; }
.shop-cats-head h2 em { font-style: italic; color: var(--gold); }
.shop-cats-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.3rem;
}
.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(201,185,154,0.35);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(160,120,64,0.16);
  border-color: rgba(160,120,64,0.5);
}
.cat-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}
.cat-img-cover img { object-fit: cover; }
.cat-card:hover .cat-img-cover img { transform: scale(1.04); }

.cat-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.cat-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}
.cat-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}
.cat-link {
  margin-top: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cat-link::after {
  content: '\2192';
  transition: transform 0.3s ease;
}
.cat-card:hover .cat-link::after { transform: translateX(4px); }
@media (max-width: 1024px) {
  .shop-cats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .shop-cats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .shop-cats { padding: 4rem 1.5rem 1.5rem; }
  .shop-cats-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
  transform: translate3d(0, var(--pax-bg, 0px), 0);
  will-change: transform;
}
.hero-img picture { display: block; width: 100%; height: 100%; }
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transform: scale(1.08);
  animation: heroParallax 18s ease-in-out infinite alternate;
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,12,10,0) 0%, rgba(14,12,10,0) 42%, rgba(14,12,10,0.18) 72%, rgba(14,12,10,0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 380px;
  margin: 0 3rem 3.5rem 0;
  padding: 2rem;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(14,12,10,0.34);
  transform: translate3d(0, var(--pax-fg, 0px), 0);
  will-change: transform;
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: block;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.2rem; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.hero-content h1 em { font-style: italic; color: var(--warm); }
.hero-headline .script-accent {
  font-style: italic;
  color: var(--warm);
}
.hero-sub {
  color: rgba(247,244,239,0.75);
  font-size: 0.95rem;
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Custom Art page: glass box in the open space top-right */
.custom-hero-page .hero { align-items: flex-start; justify-content: flex-end; }
.custom-hero-page .hero-content { margin: 8.5rem 3rem 0 0; }
.custom-hero-page .hero-img img {
  object-position: center 30%;
  image-rendering: auto;
}
.custom-hero-page .hero-img::after { display: none; }
.custom-hero-page .hero-content {
  background: linear-gradient(135deg, rgba(14,12,10,0.5), rgba(14,12,10,0.32));
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 18px 60px rgba(14,12,10,0.4);
}
@media (max-width: 760px) {
  .custom-hero-page .hero {
    display: flex;
    align-items: flex-end;
    justify-content: stretch;
    min-height: 100dvh;
    margin-top: 0;
    overflow: hidden;
  }
  .custom-hero-page .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .custom-hero-page .hero-img img {
    height: 100%;
    object-fit: cover;
    object-position: 18% 28%;
  }
  .custom-hero-page .hero-content {
    position: relative;
    z-index: 2;
    margin: 0 1.2rem 1.5rem;
    max-width: none;
    padding: 1.4rem 1.5rem;
    transform: none;
  }
  .custom-hero-page .hero-content h1 br { display: none; }
  .custom-hero-page .hero-content h1 { font-size: 1.5rem; margin-bottom: 0.7rem; }
  .custom-hero-page .hero-eyebrow { margin-bottom: 0.5rem; }
  .custom-hero-page .hero-sub { margin-bottom: 1.1rem; }
  .custom-hero-page .hero-actions .btn-light { display: none; }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}


@keyframes heroParallax {
  0% { transform: scale(1.08) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(-1.8%, -1.2%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img img, .marquee,
  .bio-hero-photo img, .contact-photo img { animation: none !important; }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: var(--black);
  padding: 0.9rem 0;
  overflow: hidden;
  width: 100%;
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 500;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== STORY ===== */
.story {
  padding: 7rem 0;
  background: var(--offwhite);
}
.story-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story.story-textonly .story-inner { grid-template-columns: 1fr; max-width: 820px; text-align: center; }
.story.story-textonly .story-image { display: none; }
.story.story-textonly .story-text p { margin-left: auto; margin-right: auto; max-width: 680px; }
.story-text h2 { margin-bottom: 1.5rem; }
.story-text h2 em { font-style: italic; color: var(--gold); }
.story-text p { color: var(--muted); margin-bottom: 1rem; font-size: 0.93rem; }
.story-text blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.8rem 0;
  color: var(--text);
}
.story-note { font-size: 0.85rem !important; color: var(--warm) !important; font-style: italic; }

/* ===== BIO QUOTE FEATURE ===== */
.bio-quote-feature {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 2.5rem 5rem;
  position: relative;
}
.bqf-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(14,12,10,0.18);
}
.bqf-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.bqf-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,12,10,0) 50%, rgba(14,12,10,0.55) 100%);
  pointer-events: none;
}
.bqf-floating {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.5rem;
  margin: 0;
  padding: 0 3rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(14,12,10,0.65);
  z-index: 2;
}
.bqf-glass {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  max-width: 520px;
  width: calc(100% - 4rem);
  padding: 2rem 2.4rem;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(14,12,10,0.34);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  z-index: 2;
}
.bqf-glass p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
  margin: 0;
  text-shadow: 0 1px 12px rgba(14,12,10,0.55);
}
.story-image {
  width: 100%;
  position: relative;
  overflow: visible;
}
.wip-image {
  position: relative;
  overflow: visible;
}
.wip-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.wip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(14,12,10,0.18);
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,12,10,0) 50%, rgba(14,12,10,0.55) 100%);
  pointer-events: none;
}
.wip-quote {
  position: absolute;
  top: -1.5rem;
  right: -3rem;
  margin: 0;
  padding: 1.4rem 1.7rem;
  max-width: 320px;
  background: var(--offwhite);
  border-left: 3px solid var(--gold);
  box-shadow: 0 14px 40px rgba(14,12,10,0.18);
  z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  text-align: left;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* ===== BIO PAGE ===== */
/* split glass hero: text card left, photo right */
.bio-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: end;
  padding: 0;
  background: var(--black);
  overflow: hidden;
}
.bio-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: var(--black);
}
.bio-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 30%;
  display: block;
  transform: scale(1.06);
  animation: kbDriftB 22s ease-in-out infinite alternate;
}
.bio-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,12,10,0) 35%, rgba(14,12,10,0.45) 100%);
  pointer-events: none;
}
.bio-hero-card {
  position: relative;
  z-index: 2;
  max-width: 480px;
  align-self: center;
  justify-self: end;
  margin: 8rem 4rem 8rem 2.5rem;
  padding: 2.4rem 2.6rem;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(14,12,10,0.34);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}
.bio-hero-card h1 { color: var(--white); margin-bottom: 1.2rem; }
.bio-hero-card h1 em { font-style: italic; color: var(--warm); }
.bio-hero-quote {
  color: rgba(247,244,239,0.9);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.55;
  margin: 0;
}

/* alternating section backgrounds + reversed layout */
.story.alt { background: var(--cream); }
.story.alt .story-inner { direction: rtl; }
.story.alt .story-inner > * { direction: ltr; }

/* three-image strip */
.bio-divider {
  position: relative;
  width: 100%;
  height: 60vh;
  max-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.bio-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(14,12,10,0.85) 0%, rgba(14,12,10,0.45) 22%, rgba(14,12,10,0) 45%);
  pointer-events: none;
}
.bd-floating {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0 0 3.5rem 5rem;
  max-width: 620px;
  text-align: left;
  align-self: flex-end;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--offwhite);
  text-shadow: 0 2px 20px rgba(14,12,10,0.7);
  letter-spacing: 0.005em;
}
.bd-floating em {
  font-style: italic;
  color: var(--warm);
  font-weight: 400;
}
.bio-divider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  z-index: 0;
}
.bio-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem 7rem;
}
.bio-trio figure { margin: 0; aspect-ratio: 3/4; overflow: hidden; border-radius: 14px; }
.bio-trio img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* the duplicated grandfather paragraph only appears between the photos on mobile */
.bio-grandfather-text-mobile { display: none; }

/* full-bleed feature with glass card */
/* full-bleed feature band (used by 'A Turn in the Road') */
.bio-feature {
  position: relative;
  overflow: hidden;
  background-color: var(--offwhite);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 35%;
  min-height: 88vh;
  padding: 5rem 2.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.bio-feature-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}
.bio-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,12,10,0.55) 0%, rgba(14,12,10,0.35) 50%, rgba(14,12,10,0.65) 100%);
}
.bio-feature-card {
  position: relative;
  z-index: 2;
  width: 480px;
  max-width: 480px;
  text-align: left;
  padding: 2.6rem 2.4rem;
  color: var(--white);
  transform: translate3d(0, var(--pax-fg, 0px), 0);
  will-change: transform;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(14,12,10,0.34);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}
.bio-feature-card h2 { color: var(--white); font-weight: 400; line-height: 1.25; }
.bio-feature-card h2 em { font-style: italic; color: var(--warm); }
.bio-feature-studio { background-position: center 35%; align-items: flex-end; }
.bio-feature-studio::before {
  display: block;
  background: linear-gradient(120deg, rgba(14,12,10,0.7) 0%, rgba(14,12,10,0.4) 32%, rgba(14,12,10,0.1) 58%, rgba(14,12,10,0) 78%);
}
.bio-feature-studio .bio-feature-inner { align-items: flex-start; }
.bio-feature-studio .bio-feature-card {
  width: 420px;
  max-width: 420px;
  padding: 2.1rem 2rem;
}
.bio-feature-studio .bio-feature-card h2 {
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.4;
}
.bf-quote {
  margin: 0 0 2rem;
  padding: 0 0 1.8rem;
  border-bottom: 1px solid rgba(247,244,239,0.18);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--warm);
  text-align: center;
  position: relative;
}
.bf-quote::before {
  content: "“";
  display: block;
  font-size: 3.2rem;
  line-height: 0.5;
  color: var(--warm);
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

/* vet photo reuses hero layout (big, square, glass card right) */
.bio-hero-feature { background: var(--black); }
.bio-hero-feature .bio-hero-photo {
  right: 26rem;            /* photo edge stops earlier so more of the photo shows */
  left: 0;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}
.bio-hero-feature .bio-hero-photo::after {
  background: linear-gradient(90deg, rgba(14,12,10,0) 55%, rgba(14,12,10,0.55) 100%);
}
.bio-hero-feature .bio-hero-photo img { object-position: center 30%; }
.bio-hero-card h2 { color: var(--white); font-weight: 400; line-height: 1.28; margin: 0; }
.bio-hero-card h2 em { font-style: italic; color: var(--warm); }

/* centered prose block */
.bio-prose {
  background: var(--offwhite);
  padding: 7rem 2.5rem;
}
.bio-prose-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.bio-prose .eyebrow { color: var(--gold); margin-bottom: 1.6rem; }
.bio-prose p { color: var(--muted); font-size: 0.96rem; line-height: 1.95; margin-bottom: 1.4rem; }
.bio-prose .bio-cue {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--text);
  margin: 2.4rem 0 1rem;
}
.bio-prose blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--text);
  max-width: 620px;
  margin: 0 auto 2.4rem;
}
.bio-prose blockquote::before { content: ''; }
.bio-prose blockquote.bio-quote-accent {
  color: var(--gold);
  text-align: center;
  max-width: none;
  white-space: nowrap;
}
.bio-closing .bio-signoff {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: 0.4rem;
}

/* ===== PAIN / PROMISE ===== */
.pain {
  padding: 4.5rem 2.5rem;
  background: var(--offwhite);
  text-align: center;
}
.pain-inner {
  max-width: 760px;
  margin: 0 auto;
}
.pain-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 300;
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.pain-title em { font-style: italic; color: var(--gold); }
.pain-divider {
  width: 48px;
  height: 1px;
  background: var(--warm);
  margin: 2.2rem auto;
}
.pain-body {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--muted);
  font-style: italic;
  margin-top: 1.6rem;
}
.pain-body strong { color: var(--text); font-weight: 500; }
.pain-eyebrow-paint { margin-top: 1.6rem; }

/* ===== FILM ===== */
.film-section {
  padding: 0 2.5rem 6rem;
  background: var(--offwhite);
}
.film-wrap {
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(14,12,10,0.22);
  font-size: 0;
}
.film {
  width: 100%;
  height: auto;
  display: block;
}
/* Verberg de donkere controlebalk in rust; toon bij hover/focus */
.film::-webkit-media-controls { opacity: 0; transition: opacity .25s ease; }
.film:hover::-webkit-media-controls,
.film:focus::-webkit-media-controls { opacity: 1; }
@media (max-width: 768px) {
  .film-section { padding: 0 1.5rem 4rem; }
  .film-wrap { border-radius: 12px; }
}

/* ===== WORKS ===== */
.works {
  padding: 5rem 2.5rem 7rem;
  background: var(--cream);
}
.works-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.works-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
}
.works-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.work-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--warm);
  display: block;
  transition: transform 0.4s ease;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.work-card:hover img { transform: scale(1.04); }
.work-card img.img-zoom { transform: scale(1.32) rotate(0.7deg); object-position: 40% 50%; }
.work-card:hover img.img-zoom { transform: scale(1.36) rotate(0.7deg); }
.work-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(14,12,10,0.78), transparent);
  color: var(--offwhite);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.work-card:hover .work-label { opacity: 1; }
@media (hover: none) {
  .work-label { opacity: 1; background: linear-gradient(to top, rgba(14,12,10,0.55), rgba(14,12,10,0)); }
}
.work-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.2;
}
.work-sub {
  font-size: 0.72rem;
  color: rgba(247,244,239,0.7);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}
.works-cta { text-align: center; margin-top: 3.5rem; }

/* ===== SHOP ROW ===== */
.shop-row-section {
  background: var(--offwhite);
  padding: 5rem 2.5rem;
}
.shop-row {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.shop-tile {
  border: 1px solid rgba(44,40,32,0.1);
  padding: 2.6rem 1.8rem 2.4rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  background: var(--white);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.shop-tile:hover {
  border-color: rgba(160,120,64,0.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(14,12,10,0.08);
}
.tile-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
  letter-spacing: 0.4em;
}
.tile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.tile-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.tile-price {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ===== ABOUT ===== */
.story-immortalized {
  position: relative;
  padding: 7rem 2.5rem;
  background-color: var(--white);
  background-size: cover;
  background-position: right 40%;
  overflow: hidden;
  text-align: left;
}
.story-immortalized::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,12,10,0.88) 0%, rgba(14,12,10,0.78) 22%, rgba(14,12,10,0.3) 40%, rgba(14,12,10,0) 52%);
}
.si-text {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
  transform: translate3d(0, var(--pax-fg, 0px), 0);
  will-change: transform;
}
.si-text > * { max-width: 460px; }
.si-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: normal;
  text-transform: none;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.si-body {
  font-size: 1.02rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.1rem;
}
.si-body:last-child { margin-bottom: 0; }
.si-accent { color: var(--warm); font-style: italic; }
.si-btn { margin-top: 1.8rem; }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding: 7rem 5rem;
  background: var(--cream);
}
.about-img-wrap {
  position: relative;
  max-width: 520px;
}
.about-img-wrap .about-img-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.12);
  transform-origin: center 60%;
}
.quote-chip {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--offwhite);
  padding: 1.7rem 1.9rem;
  max-width: 320px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 18px 50px rgba(14,12,10,0.12);
  z-index: 2;
}
.quote-chip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
}
.about-text {
  max-width: 460px;
}
.about-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.about-h em { font-style: italic; color: var(--gold); }
.about-p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* ===== CUSTOM PORTRAIT ===== */
.custom {
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(14,12,10,0.85) 0%, rgba(14,12,10,0.45) 22%, rgba(14,12,10,0) 45%);
}
.custom-text {
  position: relative;
  z-index: 2;
  color: var(--offwhite);
  padding: 5rem 4.5rem;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  align-items: flex-end;
  transform: translate3d(0, var(--pax-fg, 0px), 0);
  will-change: transform;
}
.eyebrow-on-dark { color: var(--warm); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; text-shadow: 0 1px 8px rgba(14,12,10,0.6); }
.custom-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.6vw, 3.9rem);
  font-weight: 300;
  line-height: 1.18;
  text-shadow: 0 2px 18px rgba(14,12,10,0.55);
  color: var(--offwhite);
  margin-bottom: 1.5rem;
}
.custom-h em { font-style: italic; color: var(--warm); }
.custom-p {
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(247,244,239,0.9);
  margin-bottom: 2.5rem;
  max-width: 42ch;
  text-shadow: 0 1px 12px rgba(14,12,10,0.55);
}
.custom-note {
  font-size: 0.75rem;
  color: rgba(247,244,239,0.82);
  margin-top: 1.1rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(14,12,10,0.4);
}

/* ===== COLLECTORS CLUB — newsletter ===== */
.club {
  background: var(--black);
  color: var(--offwhite);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.club::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(180,140,90,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(180,140,90,0.06), transparent 60%);
  pointer-events: none;
}
.club-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.club .eyebrow-on-dark {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.club-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--offwhite);
  margin-bottom: 1.4rem;
}
.club-h em {
  font-style: italic;
  color: var(--warm);
}
.club-sub {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(247,244,239,0.72);
  max-width: 52ch;
  margin: 0 auto 2.8rem;
}

.club-form {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
  max-width: 560px;
  margin: 0 auto 1.6rem;
  background: rgba(247,244,239,0.04);
  border: 1px solid rgba(247,244,239,0.14);
  border-radius: 2px;
  padding: 0.4rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.club-form:focus-within {
  border-color: var(--warm);
  background: rgba(247,244,239,0.06);
}
.club-field {
  display: flex;
  align-items: center;
}
.club-field-grow { flex: 1; min-width: 0; }
.club-form input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--offwhite);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1rem;
}
.club-form input::placeholder {
  color: rgba(247,244,239,0.42);
  font-weight: 300;
}
.club-submit {
  flex-shrink: 0;
  border: 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 1.8rem;
  border-radius: 1px;
}
.club-submit:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 2px;
}

.club-perks {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.45);
  margin: 0;
}
.club-perks .perk-sep {
  margin: 0 0.8rem;
  color: rgba(247,244,239,0.22);
}

.club-status {
  min-height: 1.4em;
  margin-top: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(247,244,239,0.55);
}
.club-status.is-error { color: #e8b8a4; }
.club-status.is-success { color: var(--warm); }

.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;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  padding: 8rem 5rem;
  text-align: center;
  background: var(--offwhite);
}
.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text);
  max-width: 920px;
  margin: 0 auto 2rem;
}
.t-author {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== BUTTON OUTLINE-ON-DARK (for hero) ===== */
.btn-outline-on-dark {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.75rem 1.8rem;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-outline-on-dark:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 7rem 0;
  background: var(--cream);
}
.section-header {
  max-width: 1140px;
  margin: 0 auto 2.5rem;
  padding: 0 2.5rem;
}
.section-header h2 { margin-bottom: 0.4rem; }
.section-sub { color: var(--muted); max-width: 560px; font-size: 0.9rem; margin-top: 0.4rem; }

.gallery-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
  column-count: 3;
  column-gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--warm);
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border: none;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  line-height: 0;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,12,10,0.45);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.5rem;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(14,12,10,0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4rem 1.5rem;
}
.lightbox.open { display: flex; animation: lbFade 0.3s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lb-stage {
  margin: 0;
  max-width: 92vw;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lb-img {
  max-width: 92vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}
.lb-caption {
  color: rgba(247,244,239,0.82);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  text-align: center;
  max-width: 600px;
}
.lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.4rem;
  height: 3.4rem;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-counter {
  position: absolute;
  bottom: 1.4rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(247,244,239,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}
@media (max-width: 760px) {
  .lb-nav { width: 2.8rem; height: 2.8rem; font-size: 1.8rem; }
  .lb-prev { left: 0.6rem; }
  .lb-next { right: 0.6rem; }
  .lb-img { max-height: 70vh; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox.open { animation: none; }
}

.gallery-cta {
  max-width: 1140px;
  margin: 2rem auto 0;
  padding: 0 2.5rem;
  text-align: center;
}

/* ===== FEATURE QUOTE ===== */
.feature-quote {
  background: var(--black);
}
.fq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.fq-image {
  overflow: hidden;
}
.fq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.fq-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  color: var(--white);
}
.fq-text .eyebrow { color: var(--warm); }
.fq-text blockquote {
  color: var(--offwhite);
  margin: 1rem 0 1.5rem;
}
.fq-text > p { color: var(--warm); font-size: 0.88rem; letter-spacing: 0.05em; }

/* ===== SHOP ===== */
.shop-section {
  padding: 7rem 0;
  background: var(--offwhite);
}
.shop-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.shop-card {
  display: block;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(14,12,10,0.12);
}
.shop-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
}
.shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.shop-card:hover .shop-img img { transform: scale(1.05); }

.shop-info { padding: 1rem 1rem 1.2rem; }
.shop-cat {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 0.35rem;
}
.shop-info h3 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--text); }
.shop-size { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.35rem; }
.shop-price { font-size: 0.9rem; font-weight: 500; color: var(--text); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--cream);
  padding: 4rem 2.5rem;
  border-top: 1px solid rgba(201,185,154,0.5);
  border-bottom: 1px solid rgba(201,185,154,0.5);
}
.trust-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-icon { font-size: 1.6rem; display: block; margin-bottom: 0.6rem; }
.trust-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.trust-item p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--black);
  padding: 6rem 2.5rem;
  text-align: center;
}
.nl-inner { max-width: 480px; margin: 0 auto; }
.newsletter .eyebrow { color: var(--warm); }
.newsletter h2 { color: var(--white); margin-bottom: 0.8rem; }
.newsletter p { color: rgba(247,244,239,0.6); font-size: 0.9rem; margin-bottom: 2rem; }
.nl-form { display: flex; gap: 0; }
.nl-form input {
  flex: 1;
  padding: 0.75rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(201,185,154,0.3);
  border-right: none;
  color: var(--white);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.3); }
.nl-form input:focus { border-color: var(--gold); }
.nl-form .btn { border-radius: 0; }

/* ===== GLASS NEWSLETTER (above footer, every page) ===== */
.glass-newsletter {
  position: relative;
  background: var(--black);
  padding: 7rem 2rem;
  overflow: hidden;
}
.glass-newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(180,140,90,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(180,140,90,0.06), transparent 60%);
  pointer-events: none;
}
.gn-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  align-items: center;
}
.gn-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 28px 80px rgba(0,0,0,0.45);
}
.gn-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.gn-glass {
  position: relative;
  z-index: 3;
  margin-left: -7rem;
  padding: 3rem 3rem 2.6rem;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.45);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}
.gn-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.6rem;
}
.gn-headline em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--warm);
}
.gn-glass .hero-eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm);
}
.gn-glass h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.gn-glass h2 em { font-style: italic; color: var(--warm); }
.gn-sub {
  color: rgba(247,244,239,0.78);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0 auto 2rem;
  max-width: 460px;
}
.gn-form {
  display: flex;
  gap: 0.8rem;
  max-width: 480px;
  margin: 0 auto;
}
.gn-field-grow { flex: 1; min-width: 0; }
.gn-form input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.gn-form input::placeholder { color: rgba(247,244,239,0.45); }
.gn-form input:focus {
  border-color: var(--warm);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 6px 22px -10px rgba(201,185,154,0.5);
}
.gn-form .btn { flex-shrink: 0; }
.gn-perks {
  margin-top: 1.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.55);
}
.gn-perks .perk-sep { margin: 0 0.6rem; color: var(--warm); }
.gn-status {
  margin-top: 1.1rem;
  min-height: 1rem;
  font-size: 0.8rem;
  color: var(--warm);
}
.gn-status.is-error { color: #e8b8a4; }
.gn-status.is-success { color: var(--warm); }
@media (max-width: 900px) {
  .gn-inner { grid-template-columns: 1fr; gap: 0; max-width: 640px; }
  .gn-glass { margin-left: 1.2rem; margin-right: 1.2rem; margin-top: -3rem; }
}
@media (max-width: 640px) {
  .glass-newsletter { padding: 5rem 1.3rem; }
  .gn-glass { padding: 2.2rem 1.4rem 2rem; }
  .gn-form { flex-direction: column; }
  .gn-form .btn { width: 100%; }
  .gn-perks .perk-sep { display: block; margin: 0.45rem 0; color: transparent; }
}

/* ===== SHARED SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.social-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.social-links a:hover { border-color: var(--gold); }

/* ===== CONTACT FORM (glass) ===== */
.contact-section {
  position: relative;
  overflow: hidden;
  min-height: 92dvh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: left;
  background: var(--black);
}
.contact-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.05);
  animation: kbDriftA 24s ease-in-out infinite alternate;
}
.contact-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,12,10,0) 0%, rgba(14,12,10,0) 45%, rgba(14,12,10,0.15) 72%, rgba(14,12,10,0.28) 100%);
  pointer-events: none;
}
.contact-glass {
  position: relative;
  z-index: 2;
  width: min(440px, 90%);
  margin: 5rem 4rem 5rem 0;
  padding: 2.6rem 2.6rem 2.2rem;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.45);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}
.contact-glass h1, .contact-glass h2 { color: var(--white); margin-bottom: 0.7rem; }
.contact-glass h1 em, .contact-glass h2 em { font-style: italic; color: var(--warm); }
.contact-glass-sub {
  color: rgba(247,244,239,0.78);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 440px;
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form .field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form label {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(247,244,239,0.45); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--warm);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 6px 22px -10px rgba(201,185,154,0.5);
}
.contact-form .btn { align-self: flex-start; margin-top: 0.5rem; }
.form-note { font-size: 0.78rem; color: var(--warm); min-height: 1rem; margin: 0; }

.contact-glass-foot {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.contact-glass-foot a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.85);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.contact-glass-foot a:hover { color: var(--warm); border-color: var(--warm); }
.cgf-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.3); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: rgba(247,244,239,0.6);
  padding: 5rem 2.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-banner {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: var(--black);
}
.footer-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.footer-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,12,10,0) 55%, rgba(14,12,10,0.95) 100%);
  pointer-events: none;
}
@media (max-width: 640px) {
  .footer-banner { height: 260px; }
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  color: var(--offwhite);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col-brand .footer-logo:hover { color: var(--gold); }
.footer-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-email a {
  color: rgba(247,244,239,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer-email a:hover { color: var(--gold); border-color: var(--gold); }

.footer-label {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.footer-links,
.footer-social {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a,
.footer-social a {
  color: rgba(247,244,239,0.65);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-links a:hover,
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-social svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.footer-social a:hover svg { transform: translateY(-1px); }

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-copy {
  color: rgba(247,244,239,0.4);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.footer-legal {
  font-size: 0.72rem;
  color: rgba(247,244,239,0.35);
}
.footer-legal a {
  color: rgba(247,244,239,0.55);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer-legal a:hover { color: var(--gold); border-color: var(--gold); }
.legal-sep { margin: 0 0.55rem; color: rgba(247,244,239,0.25); }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    column-count: 2;
  }
  .fq-inner { grid-template-columns: 1fr; }
  .fq-image { height: 320px; }
  .fq-text { padding: 3.5rem 3rem; }
  .contact-glass { margin: 4rem 2.5rem 4rem 0; width: min(420px, 92%); }

  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card:nth-child(3) { grid-column: span 2; aspect-ratio: 16/9; }
  .shop-row { grid-template-columns: repeat(2, 1fr); }
  .shop-tile:nth-child(3) { grid-column: span 2; }
  .about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 3rem; }
  .story-immortalized { padding: 4.5rem 1.5rem; background-position: center; }
  .story-immortalized::before { background: linear-gradient(to right, rgba(14,12,10,0.9) 0%, rgba(14,12,10,0.72) 45%, rgba(14,12,10,0) 75%); }
  .si-text { margin: 0; transform: none; }
  .si-text > * { max-width: 100%; }
  .custom-text { transform: none; }
  .about-img-wrap { max-width: 460px; margin: 0 auto; }
  .custom { aspect-ratio: 3 / 2; min-height: 0; }
  .custom-text { max-width: 100%; padding: 4.5rem 2rem; }
  .custom-text { padding: 4rem 3rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-col-brand { grid-column: span 2; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  #nav { padding: 0.5rem 1rem; }
  .nav-links { display: none; }
  .nav-logo img { height: 68px; }
  .nav-tagline { display: none; }
  .nav-cta { padding: 0.45rem 0.9rem; font-size: 0.68rem; margin-left: auto; margin-right: 0.6rem; }
  .nav-toggle { display: flex; }

  .hero {
    display: block;
    min-height: 0;
    overflow: visible;
    padding-bottom: 3rem;
  }
  .hero-img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 74vh;
    transform: none;
  }
  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none;
    animation: none;
  }
  .hero-img::after {
    display: block;
    background: linear-gradient(180deg, rgba(14,12,10,0) 55%, rgba(14,12,10,0.5) 100%);
  }
  .hero-content {
    margin: -5.5rem 1.2rem 0;
    padding: 1.5rem;
    max-width: none;
    background: linear-gradient(135deg, rgba(20,16,12,0.84), rgba(20,16,12,0.72));
    box-shadow: 0 20px 60px rgba(14,12,10,0.5);
    transform: none;
  }
  .hero-sub { font-size: 0.88rem; }

  .story { padding: 4.5rem 0; }
  /* make the space below the "The Beginning" text equal to the gap above its
     photo, so text->childhood-photo and text->grandfather-photo match (2.5rem) */
  .story-textonly:has(+ .bio-trio) { padding-bottom: 2.5rem; }
  .story-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  .story-image { order: -1; aspect-ratio: 4/3; }
  .story.story-textonly .story-inner { grid-template-columns: 1fr; text-align: left; }
  .story.story-textonly .story-image { display: block; }
  .story.story-textonly .story-text p { margin-left: 0; margin-right: 0; max-width: none; }
  .story.alt .story-inner { direction: ltr; }
  .bio-quote-feature { padding: 0.5rem 1.5rem 4.5rem; }
  .bqf-photo { aspect-ratio: 4 / 3; border-radius: 12px; }
  .bqf-glass { width: calc(100% - 2.5rem); padding: 1.4rem 1.6rem; }
  .bqf-glass p { font-size: 1.15rem; }
  .bio-hero { grid-template-columns: 1fr; min-height: auto; margin-top: 5rem; justify-items: stretch; overflow: visible; }
  .bio-hero-photo { position: relative; inset: auto; order: 1; height: auto; min-height: 0; border-radius: 14px; }
  .bio-hero-photo img { height: auto; object-fit: contain; object-position: center top; border-radius: 14px; }
  .bio-hero-photo::after { display: none; }
  .bio-hero-card { order: 2; margin: -1.6rem 1.2rem 3rem; padding: 1.7rem 1.5rem; max-width: none; justify-self: stretch; }
  .bio-hero-quote { font-size: 1.05rem; }
  .bio-trio { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 1.5rem 2.5rem; }
  .bio-hero-feature {
    margin-top: 1.5rem;
    /* dark behind the box, fading into the cream of "Why I Paint" so there's no seam */
    background: linear-gradient(180deg, var(--black) 60%, var(--cream) 100%);
  }
  /* lift the Turning Point glass box higher onto its photo, keep it glassy,
     and let the next section's photo run up behind the box */
  .bio-hero-feature { margin-bottom: 0; padding-bottom: 2rem; }
  .bio-hero-feature .bio-hero-card {
    position: relative;
    z-index: 3;
    margin: -5rem 1.2rem 0;
    background: linear-gradient(135deg, rgba(20,16,12,0.5), rgba(20,16,12,0.34));
    border-color: rgba(255,255,255,0.22);
    backdrop-filter: blur(26px) saturate(130%);
    -webkit-backdrop-filter: blur(26px) saturate(130%);
  }
  /* same background as "Why I Paint" so there is no visible seam */
  .bio-hero-feature + .story.alt { padding-top: 0; }
  .bio-trio figure { aspect-ratio: 4/3; }
  .bio-trio .trio-childhood { display: none; }
  .bio-grandfather-text { display: none; }
  .bio-grandfather-text-mobile {
    display: block;
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
  }
  .bio-divider { height: 42vh; max-height: 360px; }
  .bio-trio .trio-grandfather img { object-position: center top; }
  .bio-feature {
    position: relative;
    min-height: 0;
    padding: 0 1.2rem 3rem;
    background-image: none !important;
    background-color: var(--offwhite);
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .bio-feature::before { display: none; }
  .bio-feature::after {
    content: '';
    display: block;
    order: -1;
    width: 100%;
    height: 62vh;
    margin-bottom: -3.5rem;
    background-image:
      linear-gradient(180deg, rgba(14,12,10,0) 45%, rgba(14,12,10,0.45) 72%, rgba(14,12,10,0.82) 100%),
      url('assets/uploads/bio-painting-horses.jpg');
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center 18%;
    border-radius: 14px;
  }
  .bio-feature-studio::after {
    background-image:
      linear-gradient(180deg, rgba(14,12,10,0) 45%, rgba(14,12,10,0.45) 72%, rgba(14,12,10,0.82) 100%),
      url('assets/uploads/mqgg7pbu-72cb-image-f1ee88fad3e2.jpeg');
    background-position: center, center 30%;
  }
  .bio-feature-inner { align-items: stretch; width: 100%; }
  .bio-feature-card {
    position: relative;
    z-index: 3;
    width: auto;
    max-width: none;
    margin: 0 0.4rem;
    padding: 1.7rem 1.5rem;
    text-align: center;
    transform: none;
    background: linear-gradient(135deg, rgba(20,16,12,0.72), rgba(20,16,12,0.58));
    border-color: rgba(255,255,255,0.22);
    backdrop-filter: blur(26px) saturate(130%);
    -webkit-backdrop-filter: blur(26px) saturate(130%);
  }
  .bio-feature-studio .bio-feature-inner { align-items: stretch; }
  .bio-feature-studio .bio-feature-card {
    width: auto;
    max-width: none;
    margin: 0 0.4rem;
    padding: 1.7rem 1.5rem;
    background: linear-gradient(135deg, rgba(20,16,12,0.72), rgba(20,16,12,0.58));
    border-color: rgba(255,255,255,0.22);
    backdrop-filter: blur(26px) saturate(130%);
    -webkit-backdrop-filter: blur(26px) saturate(130%);
  }

  .bio-prose { padding: 4.5rem 1.5rem; }
  .bio-prose blockquote.bio-quote-accent {
    white-space: normal;
    font-size: clamp(1.15rem, 5.2vw, 1.7rem);
  }

  .gallery-section { padding: 4.5rem 0; }
  .section-header { padding: 0 1.5rem; }
  .gallery-grid {
    padding: 0 1.5rem;
    column-count: 2;
    column-gap: 0.75rem;
  }
  .gallery-item { margin-bottom: 0.75rem; }
  .gallery-cta { padding: 0 1.5rem; }

  .fq-image { height: 240px; }
  .fq-text { padding: 2.5rem 1.5rem; }

  .shop-section { padding: 4.5rem 0; }
  .shop-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .trust-bar { padding: 3rem 1.5rem; }
  .trust-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  .newsletter { padding: 4rem 1.5rem; }
  .nl-form { flex-direction: column; }
  .nl-form input { border-right: 1.5px solid rgba(201,185,154,0.3); border-bottom: none; }

  .contact-section { display: block; min-height: auto; padding-bottom: 4rem; }
  .contact-photo { position: relative; height: 42vh; min-height: 240px; }
  .contact-photo img { object-position: center 35%; }
  .contact-photo::after {
    background: linear-gradient(180deg, rgba(14,12,10,0.05) 0%, rgba(14,12,10,0.35) 100%);
  }
  .contact-glass { width: calc(100% - 2.4rem); margin: -3rem 1.2rem 0; padding: 1.9rem 1.5rem; }
  .contact-form .field-row { grid-template-columns: 1fr; gap: 1.1rem; }
  .contact-form .btn { align-self: stretch; text-align: center; }
  .contact-glass-foot { flex-wrap: wrap; gap: 0.7rem 1.1rem; }

  .pagehead { padding: 7.5rem 1.5rem 3rem; }

  .hero-scroll { display: none; }

  .pain { padding: 3rem 1.5rem; }
  .works { padding: 4rem 1.5rem 5rem; }
  .works-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .work-card:nth-child(3) { grid-column: span 1; aspect-ratio: 3/4; }
  .shop-row-section { padding: 3.5rem 1.5rem; }
  .shop-row { grid-template-columns: 1fr; gap: 0.9rem; }
  .shop-tile:nth-child(3) { grid-column: span 1; }
  .about { padding: 4.5rem 1.5rem; gap: 2.5rem; }
  .quote-chip { right: 0; bottom: -1.5rem; max-width: 240px; }
  .custom { aspect-ratio: 2 / 3; min-height: 0; align-items: flex-end; justify-content: flex-start; background-image: url('assets/uploads/mpwnmwu2-0b0b-image-2953a29ebe68.jpeg') !important; background-size: cover; background-position: center 20%; }
  .custom::before { background: linear-gradient(90deg, rgba(14,12,10,0.5) 0%, rgba(14,12,10,0.25) 45%, rgba(14,12,10,0) 100%); }
  .custom-text { padding: 0 1.6rem 0.7rem; justify-content: flex-end; gap: 0.35rem; text-align: left; align-items: flex-start; }
  .custom-h { margin-bottom: 0.6rem; }
  .custom-p { margin-bottom: 1rem; }
  .custom-p { font-size: 0.98rem; color: rgba(247,244,239,0.95); }
  .custom-text { padding: 3.5rem 1.5rem; }
  .testimonial { padding: 5rem 1.5rem; }

  .club { padding: 5rem 1.3rem; }
  .club-form {
    flex-direction: column;
    padding: 0.5rem;
    gap: 0.4rem;
  }
  .club-field { width: 100%; }
  .club-form input { padding: 0.9rem 0.9rem; }
  .club-submit { width: 100%; padding: 1rem 1.8rem; margin-top: 0.3rem; }
  .club-perks { font-size: 0.66rem; }
  .club-perks .perk-sep { display: block; margin: 0.5rem 0; color: transparent; }

  .site-footer { padding: 3rem 1.5rem 1.3rem; }
  .footer-inner { grid-template-columns: repeat(3, 1fr); gap: 1.8rem 1rem; padding-bottom: 2.5rem; }
  .footer-col-brand { grid-column: 1 / -1; text-align: center; margin-bottom: 0.5rem; }
  .footer-label { font-size: 0.6rem; margin-bottom: 0.8rem; }
  .footer-links, .footer-social { gap: 0.55rem; }
  .footer-links a, .footer-social a { font-size: 0.82rem; }
  .footer-social span { display: none; }
  .footer-social { flex-direction: row; gap: 1rem; }
  .footer-social svg { width: 20px; height: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .footer-legal { font-size: 0.7rem; }
}

/* ===== LEGAL PAGE ===== */
.legal-page {
  background: var(--offwhite);
  padding: 4.5rem 2.5rem 6rem;
}
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(201,185,154,0.4);
}
.legal-toc a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.legal-toc a:hover { color: var(--gold); border-color: var(--gold); }
.legal-block { margin-bottom: 3.5rem; scroll-margin-top: 6rem; }
.legal-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text);
  margin-bottom: 1.4rem;
  padding-bottom: 0.6rem;
  position: relative;
}
.legal-block h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 2px;
  background: var(--gold);
}
.legal-block h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 0.7rem;
}
.legal-block p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.legal-block p em { font-style: italic; color: var(--gold); }
.legal-block p a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(160,120,64,0.45);
  transition: border-color 0.25s ease;
}
.legal-block p a:hover { border-color: var(--gold); }
.legal-updated {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-style: italic;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,185,154,0.4);
}
@media (max-width: 700px) {
  .legal-page { padding: 3rem 1.5rem 4.5rem; }
  .legal-block { margin-bottom: 2.8rem; }
}

/* ============================================================
   CREDENTIALS / CV PAGE
   ============================================================ */
.cv-hero {
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--offwhite);
  padding: 8rem clamp(1.5rem, 6vw, 6rem) clamp(3rem, 6vw, 5rem);
}
.cv-hero-inner { max-width: 860px; transform: translate3d(0, var(--pax-fg, 0px), 0); will-change: transform; }
.cv-hero h1 {
  color: var(--offwhite);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.02;
  font-weight: 300;
  margin: 0.4rem 0 1.4rem;
}
.cv-hero h1 em { font-style: italic; color: var(--warm); }

/* Compact banner variant with quote as title */
.cv-hero.cv-hero-banner {
  min-height: 56vh;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7.5rem clamp(1.5rem, 6vw, 6rem) clamp(3rem, 5vw, 4rem);
  background-position: center 72%;
}
.cv-hero-banner .cv-hero-inner { max-width: 940px; }
.cv-hero-banner .cv-hero-quote {
  font-family: 'Cormorant Garamond', serif;
  color: var(--offwhite);
  font-size: clamp(1.5rem, 3.4vw, 2.9rem);
  line-height: 1.28;
  font-weight: 300;
  font-style: italic;
  margin: 0.6rem 0 0;
}
.cv-hero-banner .cv-hero-quote em { color: var(--warm); font-style: italic; }
.cv-hero-banner .cv-hero-banner-title {
  color: var(--offwhite);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.06;
  font-weight: 300;
  margin: 0.5rem 0 0;
}
.cv-hero-banner .cv-hero-banner-title em { color: var(--warm); font-style: italic; }
.cv-hero-lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
  color: rgba(247,244,239,0.86);
  max-width: 640px;
  font-weight: 300;
}
.cv-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 5vw, 4rem);
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.22);
}
/* Stats band under the compact banner */
.cv-stats-band {
  background: var(--black);
  border-top: 1px solid rgba(201,185,154,0.22);
  padding: clamp(1.2rem, 2.5vw, 1.7rem) clamp(1.5rem, 6vw, 6rem);
}
.cv-stats-band-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 8vw, 6rem);
}
.cv-stats-band .cv-stat { align-items: center; text-align: center; }
.cv-stats-band .cv-stat-num { font-size: clamp(2rem, 3.5vw, 2.7rem); }
.cv-stats-band .cv-stat-label { color: rgba(201,185,154,0.85); }

.cv-stat { display: flex; flex-direction: column; }
.cv-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--warm);
  font-weight: 300;
}
.cv-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.72);
  margin-top: 0.5rem;
}

/* Intro quote band */
.cv-quote-band {
  background: var(--black);
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 6vw, 4rem);
  text-align: center;
}
.cv-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.4;
  color: var(--offwhite);
  max-width: 900px;
  margin: 0 auto;
}

/* Chapters */
.cv-chapter {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 3rem);
}
.cv-chapter-alt { background: rgba(201,185,154,0.08); max-width: none; }
.cv-chapter-alt .cv-chapter-head,
.cv-chapter-alt .cv-timeline { max-width: 1100px; margin-left: auto; margin-right: auto; }
.cv-chapter-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.cv-chapter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.8;
  color: var(--warm);
  font-weight: 300;
  opacity: 0.85;
}
.cv-chapter-num-band {
  display: block;
  text-align: center;
  margin: 0 0 0.4rem;
  opacity: 0.7;
}
.cv-chapter-head h2 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 300;
  line-height: 1.03;
  margin: 0.2rem 0 1.1rem;
}
.cv-chapter-head h2 em { font-style: italic; color: var(--gold); }
.cv-chapter-intro {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 640px;
}

/* Timeline */
.cv-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.cv-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--warm), rgba(201,185,154,0.15));
}
.cv-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.4rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.cv-item.is-in { opacity: 1; transform: none; }
.cv-item:last-child { margin-bottom: 0; }
.cv-marker {
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--offwhite);
  border: 2px solid rgba(201,185,154,0.55);
  box-shadow: 0 0 0 4px rgba(201,185,154,0.1);
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}
/* Only the item nearest the centre of the viewport gets the gold marker —
   it moves up and down the timeline as you scroll (a single travelling dot) */
.cv-item.is-active .cv-marker {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(160,120,64,0.18);
  transform: scale(1.15);
}
.cv-marker-gold { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 4px rgba(160,120,64,0.2); }
.cv-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(122,110,98,0.35);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.7rem;
}
.cv-tag-gold { color: var(--gold); border-color: rgba(160,120,64,0.45); }
.cv-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 400;
  color: var(--text);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.cv-body p { color: var(--muted); font-size: 0.94rem; line-height: 1.7; margin: 0; max-width: 620px; }

/* Feature bands */
.cv-feature {
  min-height: 46vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 6rem);
}
.cv-feature-card { max-width: 620px; transform: translate3d(0, var(--pax-fg, 0px), 0); will-change: transform; }
.cv-feature-card h2 {
  color: var(--offwhite);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 0.6rem;
}
.cv-feature-card h2 em { font-style: italic; color: var(--warm); }

/* Publication feature */
.cv-publication {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 6rem);
  max-width: 1100px;
  margin: 0 auto;
}
.cv-pub-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(1.6rem, 3.5vw, 2.8rem);
  align-items: center;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.cv-pub-grid + .cv-pub-grid {
  margin-top: clamp(1.8rem, 4vw, 3rem);
  padding-top: clamp(1.8rem, 4vw, 3rem);
  border-top: 1px solid rgba(201,185,154,0.32);
}
.cv-pub-grid.is-reversed .cv-pub-figure { order: 2; }
.cv-pub-figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(42,32,24,0.6);
  border: 1px solid rgba(201,185,154,0.32);
}
.cv-pub-figure img { display: block; width: 100%; height: auto; }
.cv-pub-figure-small {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.cv-pub-body { max-width: 460px; }
.cv-pub-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.9rem;
  display: block;
}
.cv-pub-body h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
.cv-pub-body h3 em { font-style: italic; color: var(--gold); }
.cv-pub-mag {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.3rem;
  font-weight: 600;
}
.cv-pub-body p { color: var(--muted); line-height: 1.75; font-size: 0.94rem; margin-bottom: 1.3rem; }
.cv-pub-inset {
  max-width: 320px;
  margin: 0 0 1.6rem;
  box-shadow: 0 20px 44px -30px rgba(42,32,24,0.55);
}
.cv-pub-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
}
.cv-pub-meta li {
  font-size: 0.82rem;
  color: var(--ink, #2a2018);
}
.cv-pub-meta li span { color: var(--muted); display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.15rem; }
@media (max-width: 820px) {
  .cv-pub-grid { grid-template-columns: 1fr; }
  .cv-pub-body { max-width: none; }
}

/* Cards grid */
.cv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.cv-card {
  background: var(--white);
  border: 1px solid rgba(201,185,154,0.32);
  border-radius: 4px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 18px 40px -30px rgba(42,32,24,0.55);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.cv-card.is-in { opacity: 1; transform: none; }
.cv-card:hover { border-color: var(--warm); box-shadow: 0 26px 52px -28px rgba(42,32,24,0.6); }
.cv-card-wide { grid-column: 1 / -1; background: #14110c; border: 1px solid rgba(201,185,154,0.35); }
.cv-cards .cv-card-wide h3 { color: #f7f4ef; font-size: 1.6rem; }
.cv-cards .cv-card-wide p { color: rgba(247,244,239,0.82); font-size: 0.96rem; }
.cv-cards .cv-card-wide .cv-card-kicker,
.cv-cards .cv-card-wide .cv-card-kicker-gold { color: #e8d5ac; opacity: 1; }
.cv-card-kicker {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.cv-card-kicker-gold { color: var(--warm); }
.cv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 0.6rem;
}
.cv-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }
.cv-card em { font-style: italic; color: var(--gold); }
.cv-card-wide em { color: #e8d5ac; }

/* Collections band */
.cv-collections {
  background-size: cover;
  background-position: center;
  color: var(--offwhite);
  padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 6vw, 4rem);
  text-align: center;
}
.cv-collections-tall {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(5rem, 11vw, 9rem);
  padding-bottom: clamp(5rem, 11vw, 9rem);
}
.cv-collections-top {
  align-items: flex-start;
  padding-bottom: clamp(6rem, 14vw, 11rem);
}
.cv-collections-inner { max-width: 760px; margin: 0 auto; transform: translate3d(0, var(--pax-fg, 0px), 0); will-change: transform; }
.cv-collections h2 {
  color: var(--offwhite);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 0.6rem 0 1.2rem;
}
.cv-collections h2 em { font-style: italic; color: var(--warm); }
.cv-collections-body {
  color: rgba(247,244,239,0.85);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 2rem;
  font-weight: 300;
}
.cv-collections-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.cv-collections-tags span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(14,12,10,0.55);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 4px rgba(14,12,10,0.6);
}

/* Closing CTA */
.cv-close {
  background: var(--black);
  padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 6vw, 4rem);
  text-align: center;
}
.cv-close-inner { max-width: 760px; margin: 0 auto; }
.cv-close h2 {
  color: var(--offwhite);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 0.6rem 0 1.3rem;
}
.cv-close h2 em { font-style: italic; color: var(--warm); }
.cv-close-body {
  color: rgba(247,244,239,0.8);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 2.2rem;
  font-weight: 300;
}
.cv-close-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cv-close-actions .btn-outline { color: var(--offwhite); border-color: rgba(255,255,255,0.5); }
.cv-close-actions .btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

@media (max-width: 640px) {
  .cv-hero { min-height: 68vh; padding-top: 6.5rem; }
  .cv-hero-inner, .cv-feature-card, .cv-collections-inner { transform: none; }
  .cv-chapter-head { grid-template-columns: 1fr; gap: 0.4rem; }
  .cv-chapter-num { font-size: 3rem; }
  .cv-close-actions { flex-direction: column; }
  .cv-close-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .cv-item, .cv-card { opacity: 1 !important; transform: none !important; transition: none; }
  .cv-marker { transition: none; }
}

/* ===== LANGUAGE SWITCH (EN | NL) ===== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 1.4rem;
  border: 1px solid rgba(160,120,64,0.45);
  border-radius: 999px;
  padding: 0.15rem;
  flex-shrink: 0;
}
.lang-switch a {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
}
.lang-switch a:hover { color: var(--black); }
.lang-switch a.is-active {
  background: var(--gold);
  color: var(--white);
}

/* Mobile language switch inside the mobile menu — hidden; the nav-bar pill is used instead */
.mobile-lang { display: none; }

/* Keep the language pill in the nav bar on mobile, beside the hamburger */
@media (max-width: 768px) {
  .lang-switch { margin-left: auto; margin-right: 0.7rem; padding: 0.12rem; }
  .lang-switch a { font-size: 0.64rem; padding: 0.26rem 0.5rem; }
}

/* ============================================================
   SCROLL EFFECTS — parallax, ken-burns variants, reveal
   Hardware-accelerated (transform / background-position only).
   Driven by parallax.js; all disabled for reduced-motion.
   ============================================================ */

/* Background-image sections get a subtle vertical parallax.
   JS updates --pax (a small px offset) on scroll. */
[data-parallax] {
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: calc(50% + var(--pax, 0px));
  will-change: background-position;
}
/* These photo sections stay a fixed base layer (no background shift) so their
   baked-in fade can never separate and no in-frame drift occurs. The relative
   parallax motion comes entirely from the text/card gliding over them via
   --pax-fg. */
.bio-feature[data-parallax] { background-position-y: 35%; }
.cv-hero[data-parallax],
.cv-feature[data-parallax],
.cv-collections[data-parallax] { background-position-y: center; }
.custom[data-parallax] { background-position-y: center; }
.story-immortalized[data-parallax] { background-position-y: 40%; }

/* Slow ken-burns drift for atmosphere — two alternating flavours
   so neighbouring sections don't move identically. */
.kenburns-a::before,
.kenburns-b::before { animation-play-state: running; }

@keyframes kbDriftA {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.13) translate3d(1.6%, -1.4%, 0); }
}
@keyframes kbDriftB {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(-1.8%, 1.2%, 0); }
}

/* Gentle fade + rise as sections enter the viewport */
.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax] { background-position-y: 50% !important; }
  .bio-feature[data-parallax] { background-position-y: 35% !important; }
  .bio-feature-card,
  .cv-hero-inner, .cv-feature-card, .cv-collections-inner,
  .custom-text, .si-text,
  .hero-content { transform: none !important; }
  .hero-img { transform: none !important; inset: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .kenburns-a::before, .kenburns-b::before { animation: none !important; }
}

/* ===========================
   HOME — PRESS / AWARDS STRIP
   =========================== */
.press-strip {
  background: var(--black);
  color: var(--offwhite);
  padding: clamp(2.2rem, 5vw, 3.2rem) clamp(1.5rem, 6vw, 4rem);
}
.press-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.press-strip-label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1.4rem;
}
.press-strip-label br { display: none; }
.press-cta-below {
  display: block;
  text-align: center;
  margin-top: 1.4rem;
}
.press-strip-list {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem clamp(1.4rem, 4vw, 2.6rem);
}

/* Marquee track (auto-scroll left to right) */
.press-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.press-track {
  display: flex;
  width: max-content;
  align-items: baseline;
  gap: clamp(1.8rem, 4vw, 3rem);
  animation: pressScroll 32s linear infinite;
}
.press-marquee:hover .press-track { animation-play-state: paused; }
.press-track .press-item { flex: 0 0 auto; }
.press-track .press-sep {
  flex: 0 0 auto;
  align-self: center;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201,185,154,0.5);
}
@keyframes pressScroll {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .press-track { animation: none; }
}
.press-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.press-item .press-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--offwhite);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.press-item .press-meta {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,185,154,0.75);
}
.press-strip a.press-cta {
  color: var(--warm);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,185,154,0.4);
  padding-bottom: 1px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.press-strip a.press-cta:hover { color: var(--white); border-color: var(--white); }
@media (max-width: 720px) {
  .press-track { animation-duration: 24s; }
}
