/* ══════════════════════════════════════════
   THE VENUS IN FURS — Main Stylesheet
   Baroque / Rococo / Dark Luxury
══════════════════════════════════════════ */

/* ── Custom Properties ─────────────────── */
:root {
  --black:        #06020a;
  --dark:         #110509;
  --dark-mid:     #1a060e;
  --dark-surface: #220a14;
  --crimson:      #8B0000;
  --crimson-mid:  #A00010;
  --red:          #C41E3A;
  --red-light:    #D4304A;
  --gold:         #C9A84C;
  --gold-bright:  #D4AF37;
  --gold-light:   #E8C97A;
  --gold-dim:     #8B7330;
  --cream:        #F5E6C8;
  --cream-dim:    #C8B89A;
  --white:        #FFF8F0;
  --text:         #D8C9B0;
  --text-dim:     #8A7A65;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;

  --transition:   0.35s ease;
  --transition-slow: 0.65s ease;

  --section-pad:  clamp(80px, 10vw, 140px);
  --max-width:    1240px;
  --gutter:       clamp(20px, 5vw, 60px);
}

/* ── Reset & Base ────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  background-color: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

body.age-gate-open {
  overflow: hidden;
}

/* ── Duality Canvas ──────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 1;
}

/* Canvas behind everything */
/* Spirits float above all sections — pointer-events: none prevents blocking clicks */
.spirit { z-index: 10; }

/* All content sits above canvas */
#age-gate  { position: relative; z-index: 9999; }
#navbar    { z-index: 100; }
.hero,
.section,
.footer    { position: relative; z-index: 2; }

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold-light); }

::selection {
  background: var(--crimson);
  color: var(--cream);
}

/* ── Scrollbar ───────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── Typography ──────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}

em { font-style: italic; }
strong { font-weight: 600; color: var(--cream); }

/* ── Utility: Ornament Dividers ──────────── */
.ornament {
  color: var(--gold);
  font-size: 1.5rem;
  display: block;
  text-align: center;
  letter-spacing: 0.5em;
}

.divider-ornament {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.divider-ornament::before,
.divider-ornament::after {
  content: '';
  display: inline-block;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
  vertical-align: middle;
  margin: 0 16px;
}

.divider-ornament::after {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}

.divider-ornament span {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
}

.divider-ornament--hero::before,
.divider-ornament--hero::after { width: 120px; }

.divider-ornament--sm::before,
.divider-ornament--sm::after { width: 40px; }

/* ── Buttons — Baroque Cartouche / Scroll Banner ── */

/*
  Shape: horizontal hexagon — pointed at both ends, like a
  Renaissance scroll label or baroque cartouche.
  clip-path uses em units so points scale with font size.
*/
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 15px 3.8em;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  white-space: nowrap;

  /* Pointed-banner cartouche */
  clip-path: polygon(
    1.5em 0%,
    calc(100% - 1.5em) 0%,
    100% 50%,
    calc(100% - 1.5em) 100%,
    1.5em 100%,
    0% 50%
  );

  transition: filter var(--transition), transform var(--transition), color var(--transition);
}

/* ── Inner corner ornaments (appear on hover) ── */
.btn::before,
.btn::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.55em;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.btn::before { left: 2em; }
.btn::after  { right: 2em; }

.btn:hover::before,
.btn:hover::after { opacity: 0.7; }

/* ── Gold (primary) ── */
.btn--gold {
  background: linear-gradient(
    100deg,
    var(--gold-dim)   0%,
    var(--gold)       28%,
    var(--gold-bright) 50%,
    var(--gold)       72%,
    var(--gold-dim)  100%
  );
  color: var(--black);
  filter:
    drop-shadow(0 2px 10px rgba(201,168,76,0.18))
    drop-shadow(0 0 1px rgba(201,168,76,0.4));
}

.btn--gold:hover {
  color: var(--black);
  filter:
    drop-shadow(0 4px 18px rgba(201,168,76,0.4))
    drop-shadow(0 0 6px rgba(201,168,76,0.25))
    drop-shadow(0 0 1px var(--gold));
  transform: translateY(-2px);
}

.btn--gold::before,
.btn--gold::after { color: var(--black); }

/* ── Ghost (secondary) ── */
.btn--ghost {
  background: rgba(10, 4, 8, 0.88);
  color: var(--cream-dim);
  /* drop-shadow renders OUTSIDE the clip-path — creates the outlined baroque edge */
  filter:
    drop-shadow(0 0 1px var(--gold-dim))
    drop-shadow(0 0 0.5px var(--gold-dim));
}

.btn--ghost:hover {
  color: var(--cream);
  filter:
    drop-shadow(0 0 2px var(--gold))
    drop-shadow(0 0 6px rgba(201,168,76,0.2))
    drop-shadow(0 0 1px var(--gold));
  transform: translateY(-1px);
}

.btn--ghost::before,
.btn--ghost::after { color: var(--gold-dim); }

/* ── Large variant ── */
.btn--lg {
  padding: 18px 4.5em;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
}

/* ── Full-width (form submit) ── */
.btn--full {
  width: 100%;
  text-align: center;
  display: block;
  /* Wider shape for full-width looks more like a banner */
  clip-path: polygon(
    1em 0%,
    calc(100% - 1em) 0%,
    100% 50%,
    calc(100% - 1em) 100%,
    1em 100%,
    0% 50%
  );
}

/* ══════════════════════════════════════════
   AGE GATE
══════════════════════════════════════════ */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139,0,0,0.15) 0%, transparent 70%),
    radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 70%),
    var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
}

#age-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.015) 40px,
      rgba(201,168,76,0.015) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.015) 40px,
      rgba(201,168,76,0.015) 41px
    );
  pointer-events: none;
}

.age-gate__inner {
  max-width: 540px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--gold-dim);
  padding: clamp(40px, 6vw, 72px) clamp(30px, 5vw, 60px);
  position: relative;
  background: rgba(18, 8, 16, 0.92);
  box-shadow:
    0 0 80px rgba(139,0,0,0.2),
    0 0 0 1px rgba(201,168,76,0.1) inset;
}

.age-gate__inner::before,
.age-gate__inner::after {
  content: '✦';
  position: absolute;
  color: var(--gold-dim);
  font-size: 0.7rem;
}

.age-gate__inner::before { top: 12px; left: 16px; }
.age-gate__inner::after  { bottom: 12px; right: 16px; }

.age-gate__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--cream);
  margin: 1rem 0;
  font-style: italic;
}

.age-gate__text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
}

.age-gate__text strong {
  color: var(--gold-light);
}

.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 2rem;
}

.age-gate__disclaimer {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(8, 3, 5, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px var(--gutter);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15), 0 8px 32px rgba(0,0,0,0.4);
}

.nav__logo a {
  text-decoration: none;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

.nav__logo-text:hover { color: var(--cream); }

.nav__links {
  display: flex;
  list-style: none;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}

.nav__link {
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-light);
}

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__link--cta {
  color: var(--gold);
  padding: 9px 2.2em;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  clip-path: polygon(
    1.2em 0%,
    calc(100% - 1.2em) 0%,
    100% 50%,
    calc(100% - 1.2em) 100%,
    1.2em 100%,
    0% 50%
  );
  background: rgba(10,4,8,0.85);
  filter: drop-shadow(0 0 1px var(--gold-dim)) drop-shadow(0 0 0.5px var(--gold-dim));
  transition: filter var(--transition), color var(--transition), transform var(--transition);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  color: var(--gold-light);
  filter: drop-shadow(0 0 2px var(--gold)) drop-shadow(0 0 6px rgba(201,168,76,0.2));
  transform: translateY(-1px);
  background: rgba(10,4,8,0.85);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px var(--gutter) 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(139,0,0,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(139,0,0,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.04) 0%, transparent 70%);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 3px,
      rgba(201,168,76,0.012) 3px,
      rgba(201,168,76,0.012) 4px
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  width: 100%;
  animation: fadeInUp 1.2s ease both;
}

.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.hero__title-small {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-dim);
  letter-spacing: 0.35em;
}

.hero__title-large {
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-shadow:
    0 0 80px rgba(201,168,76,0.15),
    0 0 160px rgba(139,0,0,0.2);
  line-height: 0.9;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: var(--text-dim);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.8;
}

.hero__cta { margin-top: 0.5rem; }

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-dim);
  font-size: 1.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}

/* ── Fixed Spirits — visible across ALL sections ──
   Outer .spirit: fixed position, JS updates --scroll-offset via top
   Inner .spirit__inner: handles the floating animation separately
   so scroll movement and float animation never conflict
────────────────────────────────────────────────────── */
.spirit {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);       /* always viewport-centered */
  width: clamp(150px, 18vw, 270px);
  pointer-events: none;
  user-select: none;
}

.spirit--cherub {
  left: clamp(8px, 2.5vw, 44px);
  color: var(--gold);
  opacity: 0.13;
}

.spirit--imp {
  right: clamp(8px, 2.5vw, 44px);
  color: var(--crimson);
  opacity: 0.15;
}

/* Inner wrapper: scroll sway via JS (rotate only) */
.spirit__inner {
  will-change: transform;
  transition: transform 0.25s ease-out;   /* smooth sway decay */
}

/* SVG: float animation lives here, sway lives on .spirit__inner above */
.spirit svg {
  width: 100%;
  height: auto;
  display: block;
  filter: blur(0.6px);
  animation: spiritFloat 9s ease-in-out infinite;
}

.spirit--imp svg {
  animation-duration: 11s;
  animation-direction: reverse;
}

@keyframes spiritFloat {
  0%, 100% { transform: translateY(0)     translateX(0)    rotate(0deg);   }
  25%       { transform: translateY(-18px) translateX(5px)  rotate(1deg);   }
  50%       { transform: translateY(-8px)  translateX(-4px) rotate(-0.5deg);}
  75%       { transform: translateY(-22px) translateX(3px)  rotate(1.1deg); }
}

/* ══════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
}

/* Alternate eyebrow color — odd sections get crimson */
#experience .section__eyebrow,
#testimonials .section__eyebrow,
#contact .section__eyebrow {
  color: var(--crimson-mid);
}

.section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.section__subtitle {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dim);
  margin-top: 1.25rem;
  line-height: 1.9;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about {
  background:
    radial-gradient(ellipse at 100% 50%, rgba(139,0,0,0.08) 0%, transparent 60%),
    var(--dark);
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.about__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about__image-frame {
  position: sticky;
  top: 100px;
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background:
    linear-gradient(160deg, rgba(139,0,0,0.15) 0%, transparent 60%),
    linear-gradient(to bottom, var(--dark-surface), var(--dark-mid));
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,168,76,0.1);
  pointer-events: none;
}

.about__image-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.about__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.about__image-placeholder:hover img {
  transform: scale(1.03);
}

.about__image-ornament {
  font-size: 3rem;
  color: var(--gold-dim);
  opacity: 0.5;
}

.about__image-caption {
  text-align: center;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 12px;
  letter-spacing: 0.15em;
}

.about__text p {
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about__lead {
  font-size: 1.2rem !important;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.9 !important;
  border-left: 2px solid var(--crimson);
  padding-left: 1.4rem;
  margin-left: -1.4rem;
}

.about__divider {
  text-align: center;
  color: var(--gold);
  margin: 2rem 0;
  font-size: 1.2rem;
}

.about__closing {
  font-size: 1.3rem !important;
  font-style: italic;
  color: var(--cream);
  text-align: center;
  margin-top: 2rem !important;
}

/* ══════════════════════════════════════════
   EXPERIENCE
══════════════════════════════════════════ */
.experience {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139,0,0,0.12) 0%, transparent 60%),
    var(--black);
}

.experience::before,
.experience::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.experience::before { top: 0; }
.experience::after  { bottom: 0; }

.experience__bg-ornament {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139,0,0,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.experience__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(48px, 6vw, 80px);
}

.experience__card {
  border: 1px solid rgba(201,168,76,0.15);
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
  text-align: center;
  background: rgba(18, 8, 16, 0.6);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.experience__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,0,0,0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.experience__card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 8px 40px rgba(139,0,0,0.15), 0 0 0 1px rgba(201,168,76,0.1) inset;
  transform: translateY(-4px);
}

.experience__card:hover::before { opacity: 1; }

.experience__card--center {
  border-color: rgba(139,0,0,0.4);
  background: rgba(28, 6, 14, 0.9);
  box-shadow: 0 0 40px rgba(139,0,0,0.12) inset, 0 4px 32px rgba(139,0,0,0.1);
}

.experience__card--center .experience__card-icon {
  color: var(--red);
  text-shadow: 0 0 16px rgba(196,30,58,0.5);
}

.experience__card--center .experience__card-title {
  color: var(--cream);
}

.experience__card-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.experience__card-title {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1rem;
}

.experience__card-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.85;
}

.experience__note {
  text-align: center;
}

.experience__note p {
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery {
  background: var(--dark);
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 12px;
  margin-bottom: 2rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--dark-surface);
  border: 1px solid rgba(201,168,76,0.1);
}

/* Real images fill the cell and zoom on hover */
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background:
    linear-gradient(135deg, rgba(139,0,0,0.12) 0%, transparent 50%, rgba(201,168,76,0.05) 100%),
    var(--dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-slow);
}

.gallery__item:hover .gallery__placeholder {
  transform: scale(1.04);
}

.gallery__placeholder-icon {
  font-size: 2rem;
  color: var(--gold-dim);
  opacity: 0.4;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__placeholder-icon { opacity: 0.7; }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,3,5,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__overlay span {
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--cream-dim);
}

.gallery__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(139,0,0,0.08) 0%, transparent 65%),
    var(--black);
}

.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.testimonials::before { top: 0; }
.testimonials::after  { bottom: 0; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.testimonial {
  border: 1px solid rgba(201,168,76,0.12);
  padding: clamp(28px, 3vw, 44px);
  background: rgba(12, 6, 10, 0.7);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.testimonial--featured {
  border-color: rgba(201,168,76,0.25);
  background: rgba(18, 8, 16, 0.85);
}

.testimonial__marks {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.65;
  font-style: italic;
  text-shadow: 0 0 20px rgba(196,30,58,0.4);
  position: absolute;
  top: 12px;
  left: 24px;
  user-select: none;
}

.testimonial__text {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--text);
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.testimonial__footer {
  text-align: right;
}

.testimonial__footer cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   SUPPORT
══════════════════════════════════════════ */
.support {
  background: var(--dark-mid);
}

.support::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.support__buttons {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.support__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 40px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(8,3,5,0.8);
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  min-width: 180px;
  text-align: center;
}

.support__btn:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.1) inset;
  transform: translateY(-3px);
  color: inherit;
}

.support__btn-icon {
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.support__btn-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.1em;
}

.support__btn-sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.support__note {
  text-align: center;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(139,0,0,0.08) 0%, transparent 55%),
    var(--dark);
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Form */
.contact__form-wrap {
  border: 1px solid rgba(201,168,76,0.15);
  padding: clamp(32px, 4vw, 52px);
  background: rgba(8,3,5,0.6);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__group--check {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 8px;
}

.form__label span { color: var(--crimson-mid); }

.form__input {
  width: 100%;
  background: rgba(18,8,16,0.8);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form__input::placeholder {
  color: var(--text-dim);
  font-style: italic;
}

.form__input:focus {
  border-color: var(--crimson-mid);
  box-shadow: 0 0 0 2px rgba(139,0,0,0.15), 0 0 12px rgba(139,0,0,0.08);
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238B7330'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__select option {
  background: var(--dark);
  color: var(--cream);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.form__check-label {
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1.5;
  margin-bottom: 0;
  letter-spacing: normal;
  text-transform: none;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid var(--gold-dim);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: border-color var(--transition);
}

input[type="checkbox"]:checked {
  background: var(--crimson);
  border-color: var(--crimson-mid);
}

input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  color: var(--cream);
}

.form__status {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding: 12px 16px;
  display: none;
}

.form__status.success {
  display: block;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
}

.form__status.error {
  display: block;
  border: 1px solid rgba(139,0,0,0.4);
  color: var(--red-light);
  background: rgba(139,0,0,0.08);
}

/* Aside */
.contact__aside-inner {
  border: 1px solid rgba(201,168,76,0.15);
  padding: clamp(28px, 3vw, 44px);
  background: rgba(8,3,5,0.5);
  position: sticky;
  top: 100px;
}

.contact__aside-title {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.contact__aside-text {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin: 1.25rem 0;
}

.contact__aside-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__aside-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__aside-icon {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}

.contact__aside-link {
  font-size: 0.9rem;
  color: var(--text);
  word-break: break-all;
  transition: color var(--transition);
}

a.contact__aside-link:hover { color: var(--gold-light); }

.contact__aside-divider {
  text-align: center;
  color: var(--gold-dim);
  margin: 1.5rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
}

.contact__aside-note {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.footer__title {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer__newsletter-title,
.footer__social-title {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.footer__newsletter-text {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.footer__newsletter-form {
  display: flex;
  gap: 0;
}

.footer__newsletter-input {
  flex: 1;
  background: rgba(18,8,16,0.8);
  border: 1px solid rgba(201,168,76,0.15);
  border-right: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
}

.footer__newsletter-input::placeholder { color: var(--text-dim); font-style: italic; }
.footer__newsletter-input:focus { border-color: var(--gold-dim); }

.footer__newsletter-form .btn {
  padding: 12px 24px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.footer__social-links {
  list-style: none;
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold-dim);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  text-decoration: none;
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
}

.footer__ornament {
  text-align: center;
  color: var(--gold-dim);
  letter-spacing: 0.4em;
  padding: 2rem 0;
  font-size: 0.9rem;
  opacity: 0.6;
}

.footer__bottom {
  padding: 0 0 clamp(32px, 4vw, 48px);
  text-align: center;
}

.footer__legal {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.footer__disclaimer {
  font-size: 0.72rem;
  color: rgba(138, 122, 101, 0.5);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .about__grid {
    grid-template-columns: 300px 1fr;
  }
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__image-frame {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }

  .experience__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__aside-inner {
    position: static;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════ */
@media (max-width: 640px) {
  html { font-size: 16px; }

  /* Nav mobile */
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    background: rgba(8,3,5,0.97);
    backdrop-filter: blur(12px);
    padding: 60px 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid rgba(201,168,76,0.15);
    z-index: 99;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__links li {
    width: 100%;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }

  .nav__link,
  .nav__link--cta {
    display: block;
    padding: 18px 0;
    font-size: 1rem;
    border: none;
    letter-spacing: 0.25em;
  }

  .nav__link--cta { border: none; }
  .nav__link::after { display: none; }

  /* hamburger animation */
  .nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support__buttons {
    flex-direction: column;
    align-items: center;
  }

  .support__btn {
    width: 100%;
    max-width: 280px;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__brand { grid-column: span 1; }

  .footer__newsletter-form {
    flex-direction: column;
  }

  .footer__newsletter-input {
    border-right: 1px solid rgba(201,168,76,0.15);
  }

  .footer__newsletter-form .btn {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .age-gate__buttons {
    flex-direction: column;
    width: 100%;
  }

  .age-gate__buttons .btn {
    width: 100%;
    text-align: center;
  }
}
