:root {
  --ground: #0B0A08;
  --ground-raised: #141210;
  --ground-elevated: #1B1815;
  --hairline: #2A251E;
  --gold: #C9A063;
  --gold-dim: #8A7047;
  --ember: #9B3A2A;
  --ivory: #EFE7D8;
  --ivory-dim: #9C9488;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ivory);
  font-family: 'Cormorant', serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ Ø motif ============ */
.oh {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.4px solid var(--gold);
  position: relative;
  flex-shrink: 0;
}
.oh::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.4px;
  background: var(--gold);
  transform: translate(-50%,-50%) rotate(-45deg);
}
.oh.small { width: 7px; height: 7px; }
.oh.small::after { width: 9px; }

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 36px 0;
}
.divider .line { flex: 1; height: 1px; background: var(--hairline); }

/* ============ Nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,10,8,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.logo-img {
  height: 19px;
  width: auto;
  display: block;
}
.footer-brand .logo-img { height: 22px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  padding: 10px 20px !important;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--ground) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ground-raised);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--hairline); }
  .nav-links a { display: block; padding: 16px 28px; }
  .nav-cta { border: none !important; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 110px 28px 90px;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  width: 1100px;
  height: 1100px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,160,99,0.12) 0%, rgba(155,58,42,0.07) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: breathe 10s ease-in-out infinite;
}
.hero-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1300px;
  max-width: 170%;
  height: auto;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
@keyframes breathe {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) { .hero-glow { animation: none; } }

.hero-eyebrow {
  position: relative;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 22px;
}
.hero-title {
  position: relative;
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.08;
  margin: 0 auto 26px;
  max-width: 780px;
  color: var(--ivory);
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}
.brand-mark-lg {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ivory);
}
.brand-inline {
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
}
.o-gold { color: var(--gold); }
.hero-sub {
  position: relative;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ivory-dim);
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-actions {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ Full-bleed hero (home) ============ */
.hero-fullbleed {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 28px 90px;
  text-align: center;
}
.hero-fullbleed .hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-fullbleed .hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,10,8,0.55) 0%, rgba(11,10,8,0.30) 42%, rgba(11,10,8,0.82) 100%);
  z-index: 1;
}
.hero-fullbleed .hero-bg-logo {
  z-index: 1;
  opacity: 0.08;
}
.hero-fullbleed .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-fullbleed .hero-eyebrow,
.hero-fullbleed .hero-title,
.hero-fullbleed .hero-sub,
.hero-fullbleed .hero-actions {
  position: relative;
}
@media (max-width: 760px) {
  .hero-fullbleed { min-height: 82vh; padding: 100px 22px 70px; }
  .hero-fullbleed .hero-bg-logo { opacity: 0.16; max-width: 92%; }
}

/* ============ Full-screen media slider (home) ============ */
.media-slider {
  position: relative;
  width: 100%;
  height: 92vh;
  overflow: hidden;
  background: #000;
}
.media-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.media-slider .slide.active { opacity: 1; pointer-events: auto; }
.media-slider .slide img,
.media-slider .slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-slider::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(11,10,8,0.75));
  pointer-events: none;
  z-index: 2;
}
.media-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}
.media-slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(239,231,216,0.45);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.media-slider-dots button.active { background: var(--gold); width: 22px; border-radius: 4px; }
.media-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11,10,8,0.35);
  border: none;
  color: var(--ivory);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.media-slider-arrow:hover { background: rgba(11,10,8,0.6); }
.media-slider-arrow.prev { left: 24px; }
.media-slider-arrow.next { right: 24px; }
@media (max-width: 760px) {
  .media-slider { height: 65vh; }
  .media-slider-arrow { width: 38px; height: 38px; font-size: 16px; }
  .media-slider-arrow.prev { left: 12px; }
  .media-slider-arrow.next { right: 12px; }
}

/* ============ Story section (home) ============ */
.story-prose {
  max-width: 700px;
  margin: 0 auto;
}
.story-prose p {
  font-size: 17.5px;
  line-height: 1.8;
  color: var(--ivory);
  margin-bottom: 22px;
}
.story-prose p:last-child { margin-bottom: 0; }

/* ============ Split hero (home, with equipment image) ============ */
.hero-split {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 70px 28px 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; padding-top: 50px; gap: 40px; }
  .hero-split .hero-image { order: -1; }
}
.hero-split .hero-eyebrow,
.hero-split .hero-title,
.hero-split .hero-sub {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.hero-split .hero-actions { justify-content: flex-start; }
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, var(--ground-elevated), var(--ground-raised));
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(201,160,99,0.14) 0%, transparent 65%);
}
.hero-image .oh {
  width: 40px;
  height: 40px;
  opacity: 0.3;
  position: relative;
}
.hero-image .oh::after { width: 50px; height: 2px; }
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.hero-image-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { opacity: 0.9; }
.btn-primary { background: var(--gold); color: var(--ground); }
.btn-dark { background: var(--ground-elevated); color: var(--ivory); border: 1px solid var(--gold); }
.btn-outline { background: transparent; color: var(--gold); }
.btn-block { display: block; width: 100%; }

/* ============ Section scaffolding ============ */
section { padding: 90px 0; }
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: center;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 44px);
  text-align: center;
  color: var(--ivory);
  max-width: 640px;
  margin: 0 auto 18px;
  line-height: 1.2;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ivory-dim);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

/* ============ Division cards (home) ============ */
.division-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) { .division-grid { grid-template-columns: 1fr; } }
.division-card {
  background: var(--ground-raised);
  border: 1px solid var(--hairline);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease;
}
.division-card:hover { border-color: var(--gold-dim); }
.division-card .oh { margin-bottom: 24px; width: 26px; height: 26px; }
.division-card .oh::after { width: 33px; height: 2px; }
.division-card h3 {
  font-family: 'Cormorant SC', serif;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 0 0 12px;
}
.division-card p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ivory-dim);
  margin: 0 0 28px;
  flex: 1;
}
.division-card a.card-link {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
}
.division-card a.card-link:hover { color: var(--gold); }

/* ============ Stat strip ============ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
@media (max-width: 760px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  background: var(--ground);
  padding: 32px 20px;
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ivory-dim);
  line-height: 1.5;
}

/* ============ Feature cards (3-col) ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--ground-raised);
  border: 1px solid var(--hairline);
  padding: 32px 28px;
}
.feature-card .oh { margin-bottom: 18px; }
.feature-card h4 {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ivory);
  margin: 0 0 10px;
}
.feature-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ivory-dim);
  margin: 0;
}

/* ============ Equipment catalog (rental page) ============ */
.eq-category { margin-bottom: 64px; }
.eq-category:last-child { margin-bottom: 0; }
.eq-category-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant SC', serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 28px;
}
.eq-category-title .line { flex: 1; height: 1px; background: var(--hairline); }
.eq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 760px) { .eq-grid { grid-template-columns: 1fr; } }
.eq-card {
  background: var(--ground-raised);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.eq-card:hover { border-color: var(--gold-dim); }
.eq-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(155deg, var(--ground-elevated), var(--ground));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--hairline);
}
.eq-card-image .oh { width: 22px; height: 22px; opacity: 0.3; }
.eq-card-image .oh::after { width: 28px; height: 2px; }
.eq-card-image img { width: 100%; height: 100%; object-fit: cover; }
.eq-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.eq-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}
.eq-card-brand {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.eq-card-qty {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
  border: 1px solid var(--hairline);
  padding: 3px 10px;
  white-space: nowrap;
}
.eq-card-name {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  color: var(--ivory);
  margin: 4px 0 16px;
}
.eq-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.eq-spec {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: var(--ivory-dim);
  border: 1px solid var(--hairline);
  padding: 6px 12px;
}
.eq-spec strong { color: var(--gold); font-weight: 500; }

/* ============ Form ============ */
.form-card {
  background: var(--ground-raised);
  border: 1px solid var(--hairline);
  padding: 44px;
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 600px) { .form-card { padding: 30px 22px; } }
.field { margin-bottom: 24px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  color: var(--ivory);
  font-family: 'Cormorant', serif;
  font-size: 18px;
  padding: 10px 2px;
  outline: none;
  font-weight: 400;
}
.field textarea { resize: vertical; min-height: 90px; font-family: 'Cormorant', serif; }
.field select option { background: var(--ground-raised); }
.field:focus-within label { color: var(--gold); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 560px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Cormorant', serif;
  font-size: 16px;
  color: var(--ivory);
}
.checkbox-item input { width: auto; accent-color: var(--gold); }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 26px;
}
.consent input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.consent span {
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ivory-dim);
}
.consent a { color: var(--gold); }

.error {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--ember);
  margin-bottom: 16px;
  text-align: center;
  min-height: 14px;
}

.thanks-box { text-align: center; padding: 20px 0; }
.thanks-box .oh { width: 30px; height: 30px; margin: 0 auto 22px; }
.thanks-box .oh::after { width: 38px; height: 2px; }
.thanks-title {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 14px;
}
.thanks-text { font-size: 17px; line-height: 1.7; color: var(--ivory-dim); }

/* ============ CTA band ============ */
.cta-band {
  text-align: center;
  padding: 90px 28px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cta-band .section-title { margin-bottom: 34px; }

/* ============ Footer ============ */
.site-footer { padding: 70px 0 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand .nav-logo { display: block; margin-bottom: 14px; }
.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ivory-dim);
  max-width: 260px;
}
.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  color: var(--ivory-dim);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  color: var(--ivory-dim);
  margin: 0;
}
.footer-legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  color: var(--ivory-dim);
}
.footer-legal-links a:hover { color: var(--gold); }

/* ============ Cookie banner ============ */
#cookie-banner p a { color: var(--gold); }

.hidden { display: none; }

/* ============ Gallery (events page) ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.event-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 220px));
  justify-content: center;
  gap: 14px;
}
.gallery-tile { cursor: zoom-in; }

/* ============ Past-event cards (Galerie) ============ */
.event-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .event-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .event-card-grid { grid-template-columns: 1fr; } }
.event-card {
  display: block;
  background: var(--ground-raised);
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.event-card:hover { border-color: var(--gold-dim); }
.event-card-cover { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ground-elevated); }
.event-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.event-card-body { padding: 18px 20px 22px; }
.event-card-title {
  font-family: 'Cormorant SC', serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: var(--ivory);
  margin-bottom: 6px;
}
.event-card-date {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  color: var(--ivory-dim);
  margin-bottom: 10px;
}
.event-card-count {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.gallery-tile {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(155deg, var(--ground-elevated), var(--ground-raised));
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-tile .oh {
  width: 30px;
  height: 30px;
  opacity: 0.35;
}
.gallery-tile .oh::after { width: 38px; height: 2px; }
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ Product detail page ============ */
.breadcrumb {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
  margin-bottom: 40px;
}
.breadcrumb a { color: var(--ivory-dim); }
.breadcrumb a:hover { color: var(--gold); }

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) { .product-layout { grid-template-columns: 1fr; gap: 36px; } }

.product-gallery-main {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ground-elevated);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  cursor: zoom-in;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

/* ============ Lightbox ============ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,10,8,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px 20px;
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-gallery-thumbs img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  background: var(--ground-elevated);
  border: 1px solid var(--hairline);
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.product-gallery-thumbs img:hover { opacity: 1; }
.product-gallery-thumbs img.active { opacity: 1; border-color: var(--gold); }

.product-category {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.product-brand {
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ivory-dim);
  margin-bottom: 6px;
}
.product-title {
  font-family: 'Cormorant SC', serif;
  font-size: 36px;
  letter-spacing: 0.03em;
  color: var(--ivory);
  margin: 0 0 16px;
}
.product-tagline {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ivory-dim);
  line-height: 1.6;
  margin-bottom: 26px;
}
.product-qty-badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  margin-bottom: 28px;
}
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.product-features li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Cormorant', serif;
  font-size: 17px;
  color: var(--ivory);
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
}
.product-features li .oh { margin-top: 3px; }

.product-description {
  max-width: 720px;
  margin: 0 auto 60px;
}
.product-description h3 {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 21px;
  color: var(--gold);
  margin-top: 28px;
  margin-bottom: 10px;
}
.product-description p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ivory);
}

.specs-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
}
.specs-table tr { border-bottom: 1px solid var(--hairline); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
  padding: 14px 4px;
  font-size: 15.5px;
}
.specs-table td:first-child {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
  width: 42%;
}
.specs-table td:last-child {
  font-family: 'Cormorant', serif;
  color: var(--ivory);
  font-size: 17px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }

/* ============ Legal pages ============ */
.legal-body { padding-bottom: 60px; }
.legal-body h2 {
  font-family: 'Cormorant SC', serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-top: 38px;
  margin-bottom: 10px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ivory);
  margin-top: 22px;
  margin-bottom: 8px;
}
.legal-body p, .legal-body li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ivory);
}
.legal-body li { margin-bottom: 7px; margin-left: 4px; }
.legal-body ul { padding-left: 20px; margin-top: 8px; margin-bottom: 18px; }
.legal-body a { color: var(--gold); }

/* ============ Utility ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
