/* ============================================
   Cole Curates — Goth-emo beach, silver + pearl
   Grunge, iridescent, no hard color breaks
   ============================================ */

:root {
  /* No gray — replaced with warm pearl / cream / sepia */
  --pearl: #ece6d6;
  --pearl-soft: #f4eedd;
  --pearl-deep: #d8cfb5;
  --cream: #f6efdb;
  --cream-deep: #e0d4b0;
  --ink-warm: #3a2814;
  --ink-warm-soft: #6b4a28;
  --bone: #f2ecde;
  --seafoam: #9dbdb5;
  --seafoam-deep: #4d7a72;
  --charcoal: #1a1410;      /* warm near-black, no blue-gray */
  --onyx: #0d0806;
  --ink: #0a0604;
  --sand: #d4c28c;
  --sand-deep: #9a8658;
  --iridescent-1: #f4c9d4;  /* warm pink */
  --iridescent-2: #9ccfbf;  /* seafoam */
  --iridescent-3: #f7b794;  /* peach */
  --iridescent-4: #f2e0a0;  /* warm gold */
  --iridescent-5: #d4a6c8;  /* mauve-pink */
  --shine: #ffffff;          /* pure white for highlights */
  --blood-red: #5a1d1d;

  /* Back-compat aliases — map any leftover silver refs to warm tones */
  --silver: var(--pearl-deep);
  --silver-deep: var(--ink-warm-soft);
  --metallic: var(--pearl-deep);

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --radius: 2px;
  --side-nav-w: 260px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  min-height: 100vh;
  background: var(--pearl);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  font-size: 19px;                /* bumped from 16 */
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  background:
    /* shiny highlight patches — replace dull gray with pearl-white sheen */
    radial-gradient(ellipse at 12% 18%, rgba(255,255,255,0.35) 0%, transparent 38%),
    radial-gradient(ellipse at 86% 62%, rgba(242,236,222,0.45) 0%, transparent 42%),
    linear-gradient(180deg,
      var(--pearl-soft) 0%,
      var(--cream) 14%,
      var(--pearl) 32%,
      var(--cream-deep) 50%,
      #d6c8a0 68%,
      #c8b685 82%,
      var(--sand) 100%);
}

/* Grunge noise overlay — globally across everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'><filter id='g'><feTurbulence type='turbulence' baseFrequency='0.01' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.95  0 0 0 0 0.95  0 0 0 0.15 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: screen;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--charcoal);
}

h1 { font-size: clamp(3.25rem, 7vw, 6rem); font-weight: 400; font-style: italic;}
h2 { font-size: clamp(2.5rem, 4.8vw, 4rem); font-weight: 500;}
h3 { font-size: clamp(1.6rem, 2.4vw, 2.25rem); }
h4 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }

p { max-width: 62ch; font-size: 1.05rem; line-height: 1.7; }
.lede, .page-header .lede { font-size: clamp(1.2rem, 1.8vw, 1.5rem) !important; line-height: 1.55 !important; }

a { color: var(--charcoal); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-color: var(--silver-deep); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* Iridescent gradient text — only on display headings */
.iridescent {
  background: linear-gradient(
    100deg,
    var(--iridescent-1) 0%,
    var(--iridescent-5) 22%,
    var(--iridescent-2) 44%,
    var(--iridescent-3) 66%,
    var(--iridescent-4) 85%,
    var(--iridescent-1) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: iridesce 9s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(201, 197, 224, 0.25));
}

@keyframes iridesce {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .iridescent { animation: none; }
}

/* Custom cursor removed — native cursor is fine */
.cursor-ring, .cursor-dot { display: none !important; }

/* ============================================
   Clamshell intro
   ============================================ */
.clamshell-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-start;     /* start from top so shell isn't cut off by bottom text */
  padding-top: clamp(2rem, 6vh, 5rem);
  flex-direction: column;
  transition: opacity 1.4s ease, visibility 1.4s ease, filter 1.1s ease;
  overflow: hidden;
  isolation: isolate;
  /* Deep blurred moody backdrop — blood-red + indigo-ink, no gray wash */
  background:
    radial-gradient(ellipse at 18% 14%, rgba(205, 184, 216, 0.22) 0%, transparent 40%),
    radial-gradient(ellipse at 82% 88%, rgba(90, 29, 29, 0.28) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(26, 16, 14, 0.88) 0%, rgba(6, 4, 3, 0.98) 100%),
    linear-gradient(180deg, #1a0f0a 0%, #0d0806 50%, #050302 100%);
  background-blend-mode: screen, screen, normal, normal;
}

/* Heavy out-of-focus iridescent smoke — feels like looking through fogged glass */
.clamshell-overlay::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 36%, rgba(205, 184, 216, 0.55) 0%, transparent 24%),
    radial-gradient(circle at 72% 62%, rgba(184, 212, 204, 0.42) 0%, transparent 26%),
    radial-gradient(circle at 50% 12%, rgba(240, 216, 228, 0.35) 0%, transparent 18%),
    radial-gradient(circle at 20% 84%, rgba(122, 40, 40, 0.5) 0%, transparent 22%),
    radial-gradient(circle at 86% 22%, rgba(157, 189, 181, 0.3) 0%, transparent 18%);
  filter: blur(80px) saturate(1.1);
  opacity: 0.85;
  z-index: -2;
}

/* Grunge + chromatic noise scatter */
.clamshell-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch' seed='7'/><feColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.78  0 0 0 0 0.9  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'><filter id='c'><feTurbulence type='turbulence' baseFrequency='0.006' numOctaves='2' seed='3'/><feDisplacementMap in='SourceGraphic' scale='20'/></filter><g filter='url(%23c)'><rect width='100%25' height='100%25' fill='none'/></g></svg>");
  opacity: 0.28;
  mix-blend-mode: overlay;
}

/* Blood-red iridescent rim leaking from behind the shell */
.clamshell-scene::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(90, 29, 29, 0.55) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 50%, rgba(220, 200, 222, 0.4) 0%, transparent 28%);
  filter: blur(28px);
  z-index: -1;
  mix-blend-mode: screen;
  animation: bloodPulse 4.5s ease-in-out infinite;
}

@keyframes bloodPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* Scratch/crack overlay sitting over the shell — punk rock texture */
.clamshell-overlay .cracks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.35;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' preserveAspectRatio='none'><g stroke='%23e4e2dc' stroke-width='0.6' fill='none' opacity='0.7'><path d='M0,340 Q240,320 420,360 T780,400 L1000,390'/><path d='M0,560 Q180,520 380,580 T720,520 L1000,540'/><path d='M120,0 L180,220 Q200,340 160,460 L200,700 Q230,820 180,1000'/><path d='M860,0 L820,200 Q800,320 860,440 L830,660 Q820,820 880,1000'/><path d='M400,60 L420,220 L380,380 L440,540'/><path d='M560,720 L540,840 L580,940'/></g></svg>");
}

.clamshell-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.clamshell-scene {
  width: min(94vw, 780px);
  height: min(58vh, 480px);
  margin-top: auto;              /* pushes shell to vertical center with text below */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 1.2s cubic-bezier(.5,.1,.6,.3), opacity 1.1s ease;
}

/* shatter state — triggered on dismiss */
.clamshell-overlay.shattering .clamshell-scene {
  transform: translateY(60px) scale(1.04);
  filter: blur(0.5px);
}

#shell-canvas { width: 100%; height: 100%; display: block; }

.clamshell-text {
  opacity: 0;
  animation: textFadeIn 1.4s ease-out 1.6s forwards;
  text-align: center;
  margin-top: auto;              /* sits at bottom; shell stays centered above */
  margin-bottom: clamp(1.5rem, 5vh, 4rem);
  padding: 0 1.5rem;
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.5);
}

.clamshell-text h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);   /* bumped */
  margin-bottom: 0.5rem;
  font-style: italic;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.6));
}

.clamshell-text p {
  color: var(--bone);
  font-size: 1.1rem;                      /* bumped from 0.95 */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 44ch;
  opacity: 0.92;
}

@keyframes textFadeIn { to { opacity: 1; } }

.skip-intro {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: 1px solid rgba(220, 200, 222, 0.4);
  color: var(--pearl);
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 3;
}

.skip-intro:hover {
  background: var(--iridescent-5);
  color: var(--onyx);
  border-color: var(--iridescent-5);
}

.enter-prompt {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--pearl);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0;
  animation: textFadeIn 1s ease-out 2.8s forwards, pulse 2.5s ease-in-out 3.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .clamshell-text, .enter-prompt { opacity: 1; animation: none; }
}

/* ============================================
   Editorial left side nav
   ============================================ */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--side-nav-w);
  padding: 2.25rem 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(90deg, rgba(246, 239, 219, 0.78) 0%, rgba(246, 239, 219, 0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-right: 1px solid rgba(58, 40, 20, 0.12);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.85rem;           /* bumped */
  font-weight: 500;
  line-height: 1;
  color: var(--charcoal);
  display: block;
}

.brand em {
  font-style: italic;
  color: var(--ink-warm-soft);
  display: block;
  font-size: 1.45rem;
  margin-top: 0.15rem;
}

.brand-mark {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-warm-soft);
  margin-top: 0.85rem;
  font-family: var(--font-body);
}

.side-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.side-nav-links a {
  font-family: var(--font-display);
  font-size: 1.5rem;            /* bumped from 1.25 */
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  display: inline-block;
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.side-nav-links a::before {
  content: "~";
  position: absolute;
  left: -12px;
  opacity: 0;
  color: var(--ink-warm-soft);
  transition: opacity 0.3s ease, left 0.3s ease;
}

.side-nav-links a:hover,
.side-nav-links a.active {
  padding-left: 18px;
  color: var(--onyx);
  text-decoration: none;
}

.side-nav-links a:hover::before,
.side-nav-links a.active::before {
  opacity: 1;
  left: 0;
}

.side-nav-foot {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-warm-soft);
  line-height: 1.8;
}

.side-nav-foot a { color: var(--ink-warm-soft); display: block; padding: 0.25rem 0;}
.side-nav-foot a:hover { color: var(--charcoal); text-decoration: none; }

/* Mobile: collapse side nav */
.mobile-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  background: var(--pearl-soft);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  :root { --side-nav-w: 0px; }
  .side-nav {
    width: 100vw;
    height: auto;
    bottom: auto;
    padding: 1rem 1.25rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .side-nav-links {
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: -100%;
    background: var(--pearl-soft);
    padding: 2rem;
    gap: 1rem;
    transition: right 0.3s;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    height: 100vh;
    width: min(80vw, 320px);
  }
  .side-nav-links.open { right: 0; }
  .side-nav-foot { display: none; }
  .mobile-toggle { display: block; }
}

/* ============================================
   Main content offset for side nav
   ============================================ */
.site-main {
  margin-left: var(--side-nav-w);
  position: relative;
  z-index: 3;
}

@media (max-width: 900px) {
  .site-main { margin-left: 0; padding-top: 70px; }
}

/* ============================================
   Hover reveal stage — for nav-hover interactions
   ============================================ */
.hover-stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  overflow: hidden;
}

.reveal {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.reveal.active { opacity: 1; }

/* 1. Create trip: skull hand + seashell paint */
#reveal-create .hand {
  position: absolute;
  right: -220px;
  top: 30%;
  width: 280px;
  height: 280px;
  transform: rotate(-12deg);
  transition: right 0.6s cubic-bezier(.22,1,.36,1);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
}
#reveal-create.active .hand { right: 15%; }

#reveal-create .painted-shell {
  position: absolute;
  top: 45%;
  left: 30%;
  width: 220px;
  height: 220px;
  stroke: var(--iridescent-5);
  fill: none;
  stroke-width: 1.2;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s;
  filter: drop-shadow(0 0 10px rgba(201, 197, 224, 0.6));
}
#reveal-create.active .painted-shell { opacity: 1; }
#reveal-create.active .painted-shell .shell-stroke { animation: drawShell 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards; }
#reveal-create.active .painted-shell g.shell-stroke path { animation: drawShell 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards; }

@keyframes drawShell {
  to { stroke-dashoffset: 0; }
}

/* Subtle hand-drawn jitter on idle — makes the line art feel breathed-on */
@keyframes haeckelBreathe {
  0%, 100% { transform: translate(0, 0) rotate(-12deg); }
  50% { transform: translate(0.6px, -0.8px) rotate(-11.7deg); }
}
#reveal-create.active .hand { animation: haeckelBreathe 3.2s ease-in-out 0.8s infinite; }

/* 2. Plan my trip: nautilus cracks open, itinerary unrolls from inside */
#reveal-plan .snail {
  position: absolute;
  top: 35%;
  left: 30%;
  width: 380px;
  filter: drop-shadow(0 10px 32px rgba(0,0,0,0.45)) drop-shadow(0 0 18px rgba(220, 200, 222, 0.25));
}
#reveal-plan .half-l, #reveal-plan .half-r {
  transform-origin: center;
  transition: transform 0.9s cubic-bezier(.6,-.3,.4,1.5);
}
#reveal-plan.active .half-l { transform: translate(-110px, 8px) rotate(-14deg); }
#reveal-plan.active .half-r { transform: translate(110px, 8px) rotate(14deg); }

#reveal-plan .scroll-paper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 260px;
  transform: translate(-50%, -50%) scaleY(0);
  transform-origin: top center;
  background: linear-gradient(180deg, #e8e2d0, #d4cdb8);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 0 40px rgba(0,0,0,0.08);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(.22,1,.36,1) 0.3s, opacity 0.2s 0.3s;
  font-family: var(--font-display);
  font-size: 0.7rem;
  padding: 1.5rem 1rem;
  color: var(--charcoal);
  text-align: center;
  line-height: 1.8;
}
#reveal-plan.active .scroll-paper { transform: translate(-50%, -50%) scaleY(1); opacity: 0.92; }

/* 3. Trip accessories: glitter rain */
.glitter {
  position: absolute;
  top: -40px;
  width: 10px;
  height: 10px;
  background: conic-gradient(from 0deg, var(--iridescent-1), var(--iridescent-5), var(--iridescent-3), var(--iridescent-2), var(--iridescent-1));
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.5px);
  box-shadow: 0 0 6px rgba(220, 200, 222, 0.9);
}

#reveal-accessories.active .glitter {
  animation: glitterFall 2.4s ease-in forwards;
}

@keyframes glitterFall {
  0% { opacity: 0; transform: translateY(-40px) rotate(0deg); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(110vh) rotate(720deg); }
}

#reveal-accessories .chain {
  position: absolute;
  top: -30px;
  width: 2px;
  background: linear-gradient(180deg, #d8c88a, #8a6e2e);  /* warm brass, not gray */
  opacity: 0;
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
#reveal-accessories.active .chain {
  animation: chainDrop 2.8s ease-in forwards;
}
@keyframes chainDrop {
  0% { opacity: 0; transform: translateY(-50%) scaleY(0); }
  30% { opacity: 1; transform: translateY(-20%) scaleY(1); }
  100% { opacity: 0; transform: translateY(110vh) scaleY(1); }
}

/* 4. Group travel: crosswalk of sea creatures */
#reveal-group .creature {
  position: absolute;
  bottom: 30%;
  left: -120px;
  width: 80px;
  height: 80px;
  transition: transform 2.2s linear, opacity 0.5s;
  opacity: 0;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
#reveal-group.active .creature {
  opacity: 1;
  transform: translateX(calc(100vw + 200px));
}
#reveal-group.active .creature.c1 { transition-delay: 0s; }
#reveal-group.active .creature.c2 { transition-delay: 0.2s; }
#reveal-group.active .creature.c3 { transition-delay: 0.4s; }
#reveal-group.active .creature.c4 { transition-delay: 0.6s; }

/* 5. Event curation: suitcase chased by surfer boy */
#reveal-event .suitcase,
#reveal-event .surfer {
  position: absolute;
  bottom: 30%;
  left: -200px;
  transition: left 2.5s linear, opacity 0.3s;
  opacity: 0;
}
#reveal-event .suitcase {
  width: 90px;
  font-size: 80px;
  line-height: 1;
}
#reveal-event .surfer {
  width: 100px;
  font-size: 90px;
  line-height: 1;
  transition-delay: 0.25s;
  transform: scaleX(-1);
}
#reveal-event.active .suitcase { left: calc(100vw + 100px); opacity: 1; }
#reveal-event.active .surfer { left: calc(100vw + 50px); opacity: 1; }

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: clamp(5rem, 12vh, 9rem) 2rem clamp(3rem, 8vh, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: lowercase;
  color: var(--ink-warm-soft);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-top: 1px solid rgba(21,22,26,0.2);
  border-bottom: 1px solid rgba(21,22,26,0.2);
}

.hero h1 {
  margin: 0 auto 1.5rem;
  max-width: 14ch;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  font-style: italic;
  opacity: 0.82;
}

.motif-svg {
  margin: 0 auto 1.5rem;
  opacity: 0.7;
  display: block;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--onyx);
  text-decoration: none;
  position: relative;
}

.btn-primary { background: var(--onyx); color: var(--pearl); }

.btn-primary:hover {
  background: transparent;
  color: var(--onyx);
  text-decoration: none;
  box-shadow: 0 0 24px rgba(201, 197, 224, 0.4);
}

.btn-ghost { background: transparent; color: var(--charcoal); }

.btn-ghost:hover {
  background: var(--onyx);
  color: var(--pearl);
  text-decoration: none;
}

/* ============================================
   Offer paths — transparent, no hard break
   ============================================ */
.offer-paths {
  padding: clamp(3rem, 6vh, 5rem) 2rem clamp(4rem, 10vh, 7rem);
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
  position: relative;
}

.section-head .eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--ink-warm-soft);
  margin-bottom: 0.8rem;
}

.section-head::before, .section-head::after {
  content: "~ ~ ~";
  letter-spacing: 0.5em;
  color: var(--silver-deep);
  opacity: 0.5;
  display: block;
  font-size: 0.7rem;
  margin: 0.5rem 0;
}

/* ============================================
   Pirate treasure map layout
   ============================================ */
.path-grid {
  --parchment: #f2e6c4;
  --parchment-deep: #d8c28e;
  --ink-sepia: #4a3018;
  --ink-sepia-soft: #7a5a34;
  --rope: #a0805a;
  --rope-light: #d8bc88;
  --blood: #7a2828;

  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem);
  counter-reset: path;
  font-family: var(--font-display);
  color: var(--ink-sepia);

  /* aged parchment — softer, lighter, genuinely faded */
  background:
    /* subtle age spots */
    radial-gradient(circle at 14% 24%, rgba(140, 100, 50, 0.09) 0%, transparent 5%),
    radial-gradient(circle at 80% 42%, rgba(140, 100, 50, 0.07) 0%, transparent 4%),
    radial-gradient(circle at 26% 70%, rgba(140, 100, 50, 0.08) 0%, transparent 5%),
    radial-gradient(circle at 70% 86%, rgba(110, 80, 40, 0.09) 0%, transparent 6%),
    /* soft feathered edge vignette — NOT a harsh border */
    radial-gradient(ellipse at 50% 50%, transparent 62%, rgba(150, 110, 60, 0.18) 88%, rgba(150, 110, 60, 0.26) 100%),
    /* creamy paper base, much lighter than before */
    linear-gradient(135deg, #f6ecd0 0%, #f0e2b8 50%, #e8d8a4 100%);
  border: none;              /* let the soft vignette do the edge work */
  box-shadow:
    0 0 0 1px rgba(255, 250, 235, 0.5) inset,
    0 30px 60px -40px rgba(120, 90, 50, 0.35);
  /* Soft mask to feather the whole parchment edge — avoids harsh clip-path line */
  -webkit-mask-image: radial-gradient(ellipse 95% 96% at 50% 50%, #000 72%, rgba(0,0,0,0.85) 88%, rgba(0,0,0,0.4) 96%, transparent 100%);
  mask-image: radial-gradient(ellipse 95% 96% at 50% 50%, #000 72%, rgba(0,0,0,0.85) 88%, rgba(0,0,0,0.4) 96%, transparent 100%);
  /* Gentle torn-edge hint — much less jagged than before */
  clip-path: polygon(
    0% 2%, 6% 0.6%, 20% 1.5%, 38% 0.8%, 56% 1.4%, 72% 0.7%, 88% 1.2%, 99% 0.8%, 100% 3%,
    99% 30%, 99.5% 60%, 99% 90%, 98% 99.2%,
    86% 99%, 68% 99.5%, 48% 99%, 28% 99.4%, 10% 99%, 1% 98.5%,
    0.5% 70%, 1% 40%, 0% 12%
  );
}

/* Paper fiber / coffee-stain noise overlay — lighter so parchment stays readable */
.path-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.28  0 0 0 0 0.18  0 0 0 0 0.08  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'><filter id='f'><feTurbulence type='turbulence' baseFrequency='0.01' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.35  0 0 0 0 0.22  0 0 0 0 0.1  0 0 0 0.1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23f)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.3;             /* was 0.55 — much gentler */
  z-index: 1;
}

/* Dashed meandering treasure trail (absolute, runs through waypoints) */
.path-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 130px;
  bottom: 110px;
  width: 60%;
  transform: translateX(-50%);
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 800' preserveAspectRatio='none'><path d='M200,20 C 120,80 120,140 200,180 C 280,220 280,280 200,320 C 120,360 120,420 200,460 C 280,500 280,560 200,600 C 160,630 160,680 200,720 L 200,780' fill='none' stroke='%233a2814' stroke-width='3' stroke-dasharray='2 10' stroke-linecap='round' opacity='0.85'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.75;
  z-index: 1;
}

/* Compass rose top-right corner */
.path-grid .compass {
  position: absolute;
  top: 1.8rem;
  right: 1.5rem;
  width: 84px;
  height: 84px;
  opacity: 0.65;
  z-index: 2;
  animation: compassDrift 30s linear infinite;
}

@keyframes compassDrift {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(4deg); }
}

/* Decorative "HERE BE TREASURES" stamp */
.path-grid .map-title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--ink-sepia-soft);
  margin-bottom: 2.5rem;
  padding: 0.6rem 1rem;
  display: inline-block;
  width: 100%;
}

.path-grid .map-title span {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1.5px double var(--ink-sepia-soft);
  color: var(--ink-sepia);
  letter-spacing: 0.4em;
  transform: rotate(-1.5deg);
  background: rgba(255, 245, 210, 0.3);
}

/* Waypoint cards */
.path-card {
  counter-increment: path;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 0;
  background: transparent;
  border: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Alternate side-to-side like a real pirate map trail */
.path-card:nth-child(odd) { text-align: right; transform: translateX(-2%); }
.path-card:nth-child(even) { text-align: left; transform: translateX(2%); }
.path-card:nth-child(odd) .path-content { grid-column: 1; }
.path-card:nth-child(odd) .path-link-wrap { grid-column: 3; justify-self: start; padding-left: 1.5rem; }
.path-card:nth-child(even) .path-content { grid-column: 3; }
.path-card:nth-child(even) .path-link-wrap { grid-column: 1; justify-self: end; padding-right: 1.5rem; }

.path-card:hover { transform: translateX(0) scale(1.02); }
.path-card:hover .waypoint { transform: rotate(-8deg) scale(1.12); box-shadow: 0 10px 24px -8px rgba(80, 40, 10, 0.5); }

/* The circular waypoint marker — "X marks the spot" */
.path-card::after {
  content: counter(path);
  grid-column: 2;
  grid-row: 1 / -1;
  justify-self: center;
  align-self: center;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--parchment);
  background: var(--ink-sepia);
  border: 2px solid var(--rope-light);
  border-radius: 50%;
  box-shadow:
    0 0 0 3px var(--ink-sepia),
    0 0 0 5px var(--rope-light),
    0 6px 14px -4px rgba(60, 30, 10, 0.55),
    inset 0 2px 8px rgba(255, 230, 180, 0.15);
  transform: rotate(-4deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  position: relative;
}

.path-card .waypoint { /* if an explicit element is present, we inherit styling */ }

.path-card .path-content { display: flex; flex-direction: column; gap: 0.25rem; }

.path-card .icon {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-sepia-soft);
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  margin-bottom: 0.35rem;
}

.path-card h3 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);    /* bumped */
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--ink-sepia);
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 1px 0 rgba(255, 245, 210, 0.4);
}

.path-card .tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blood);
  font-size: 0.9rem;                           /* bumped */
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.path-card p {
  font-size: 1.1rem;                           /* bumped from 0.95 */
  color: var(--ink-sepia);
  opacity: 0.95;
  margin: 0.55rem 0 0;
  max-width: 42ch;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.5;
}
.path-card:nth-child(odd) p { margin-left: auto; }

.path-card .path-link-wrap { align-self: center; }

.path-card .path-link {
  font-family: var(--font-body);
  font-size: 0.82rem;                          /* bumped from 0.68 */
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-sepia);
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--ink-sepia);
  background: rgba(255, 245, 210, 0.55);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 1px 1px 0 var(--rope);
  transform: rotate(-1deg);
  display: inline-block;
}

.path-card:nth-child(even) .path-link { transform: rotate(1deg); }

.path-card .path-link:hover {
  background: var(--ink-sepia);
  color: var(--parchment);
  box-shadow: 2px 2px 0 var(--blood);
  text-decoration: none;
}

@media (max-width: 780px) {
  .path-grid { padding: 3rem 1.5rem; clip-path: none; }
  .path-grid::after { display: none; }
  .path-grid .compass { width: 56px; height: 56px; top: 1rem; right: 1rem; }
  .path-card {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto;
    text-align: left !important;
    transform: none !important;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px dashed rgba(80, 50, 18, 0.3);
  }
  .path-card:last-child { border-bottom: none; }
  .path-card::after {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  .path-card:nth-child(odd) .path-content,
  .path-card:nth-child(even) .path-content { grid-column: 2; grid-row: 1; text-align: left; }
  .path-card:nth-child(odd) .path-link-wrap,
  .path-card:nth-child(even) .path-link-wrap {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    padding: 0;
    margin-top: 0.75rem;
  }
  .path-card:nth-child(odd) p { margin-left: 0; }
}

/* ============================================
   .path-grid.simple — for pages without a 5-waypoint journey
   (Event Curation, etc.) — single column, no trail, no waypoint badge
   ============================================ */
.path-grid.simple::after { display: none; }     /* no meandering trail */
.path-grid.simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem 2rem;
  padding: clamp(2.5rem, 5vw, 4rem);
}
.path-grid.simple .path-card {
  counter-increment: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.25rem;
  text-align: left !important;
  transform: none !important;
  grid-template-columns: none;
  border-top: 1px solid rgba(74, 48, 24, 0.25);
}
.path-grid.simple .path-card::after { display: none; }   /* no waypoint badge */
.path-grid.simple .path-card h3 { margin-top: 0.15rem; }
.path-grid.simple .path-card p { max-width: none; margin-top: 0.5rem; }
.path-grid.simple .path-card:hover { transform: none; }

/* ============================================
   Testimonials (no hard breaks)
   ============================================ */
.testimonials {
  padding: clamp(4rem, 10vh, 7rem) 2rem clamp(4rem, 8vh, 6rem);
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
}

.testimonial {
  padding: 2rem;
  border-left: 1px solid var(--silver-deep);
  position: relative;
}

.testimonial::before {
  content: "";
  position: absolute;
  left: -0.5px;
  top: 0;
  width: 2px;
  height: 40%;
  background: linear-gradient(180deg, var(--iridescent-5), transparent);
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-deep);
}

/* ============================================
   Email capture
   ============================================ */
.email-capture {
  padding: clamp(4rem, 8vh, 6rem) 2rem clamp(4rem, 8vh, 6rem);
  text-align: center;
  position: relative;
}

.email-capture h2 { margin-bottom: 0.75rem; font-style: italic;}

.email-capture p { margin: 0 auto 2rem; color: var(--charcoal); opacity: 0.85;}

.email-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.email-form input {
  flex: 1;
  min-width: 240px;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(21, 22, 26, 0.3);
  background: rgba(255,255,255,0.25);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

.email-form input:focus { outline: none; border-color: var(--charcoal); background: rgba(255,255,255,0.5);}
.email-form input::placeholder { color: var(--silver-deep); font-style: italic; }

/* ============================================
   Sand area: fades up into the preceding section
   with drifting grain particles rising
   ============================================ */
.sand-area {
  position: relative;
  margin-top: 0;
  padding-top: 10rem;
  min-height: 620px;
  overflow: visible; /* let grains drift above the section */
}

#sand-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: auto;
  cursor: grab;
  /* soft feather on top so there's no hard edge */
  mask-image: linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,0.15) 5%,
    rgba(0,0,0,0.5) 14%,
    rgba(0,0,0,0.85) 22%,
    #000 32%);
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,0.15) 5%,
    rgba(0,0,0,0.5) 14%,
    rgba(0,0,0,0.85) 22%,
    #000 32%);
}

/* Grain drift layer — sits ABOVE the canvas + extends upward into prior section */
.sand-grains {
  position: absolute;
  left: 0;
  right: 0;
  top: -260px;
  height: 480px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.sand-grains .grain {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 2px;
  background: radial-gradient(circle, #d8c898 0%, rgba(184, 168, 104, 0.6) 60%, transparent 100%);
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 1px rgba(184, 168, 104, 0.4));
  animation: grainDrift linear infinite;
}

.sand-grains .grain.lg { width: 3px; height: 3px; background: radial-gradient(circle, #e4d4a4 0%, rgba(200, 184, 140, 0.7) 60%, transparent 100%); }
.sand-grains .grain.sm { width: 1.5px; height: 1.5px; opacity: 0.7; }

@keyframes grainDrift {
  0%   { transform: translate3d(0, 0, 0) scale(0.9); opacity: 0; }
  8%   { opacity: 0.9; }
  50%  { transform: translate3d(var(--dx, 10px), -200px, 0) scale(1); opacity: 0.55; }
  100% { transform: translate3d(var(--dx2, -6px), -440px, 0) scale(0.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sand-grains { display: none; }
}

.sand-content {
  position: relative;
  z-index: 3;
  padding: 3rem 2rem;
  max-width: var(--maxw);
  margin: 0 auto;
  color: var(--onyx);
  pointer-events: none; /* let clicks through to canvas */
}

/* Re-enable clicks on actual interactive children */
.sand-content a,
.sand-content button,
.sand-content input { pointer-events: auto; }

.sand-content .dig-hint {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(10,11,13,0.6);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  text-align: center;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--onyx);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-grid a {
  color: var(--onyx);
  display: block;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  opacity: 0.78;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.footer-grid a:hover { opacity: 1; text-decoration: underline; color: var(--charcoal); }

.footer-bottom {
  border-top: 1px solid rgba(10, 11, 13, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--onyx);
  opacity: 0.7;
}

/* ============================================
   Scroll bowl (shell falling) — decorative
   ============================================ */
.scroll-bowls {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

.bowl {
  position: absolute;
  width: 110px;
  height: 60px;
  opacity: 0;
  transition: opacity 0.3s;
}

/* ============================================
   Page-specific — subpages (no hard breaks)
   ============================================ */
.page-header {
  padding: 6rem 2rem 3rem;
  text-align: center;
  position: relative;
}

.page-header h1 { margin: 1rem auto; max-width: 20ch; font-style: italic; }

.page-header .lede {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  max-width: 56ch;
  margin: 0 auto;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.55;
  opacity: 0.92;
}

.section {
  padding: clamp(4rem, 9vh, 7rem) 2rem;
  position: relative;
}

/* Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: var(--maxw);
  margin: 3rem auto 0;
}

.package {
  background: transparent;
  padding: 2.5rem 1.5rem;
  position: relative;
  border: none;
  border-top: 1px solid rgba(21,22,26,0.2);
}

.package + .package { border-left: 1px solid rgba(21,22,26,0.1); }

.package.featured {
  position: relative;
}
.package.featured::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-top: 2px solid transparent;
  background: linear-gradient(90deg, var(--iridescent-1), var(--iridescent-5), var(--iridescent-3)) top / 100% 2px no-repeat;
  pointer-events: none;
}

@media (max-width: 900px) {
  .package + .package { border-left: none; }
}
.package.featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--iridescent-1), var(--iridescent-5), var(--iridescent-3));
}

.package .tier {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-deep);
  margin-bottom: 0.75rem;
}

.package h3 { margin-bottom: 0.5rem; font-style: italic;}

.package .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
  margin: 1rem 0 1.5rem;
  font-style: italic;
}

.package .price small {
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: var(--silver-deep);
  letter-spacing: 0.05em;
  font-style: normal;
}

.package ul { list-style: none; margin: 1.5rem 0 2rem; }

.package li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(21, 22, 26, 0.08);
}

.package li::before {
  content: "~";
  position: absolute;
  left: 0;
  color: var(--silver-deep);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: var(--maxw);
  margin: 3rem auto 0;
}

.product {
  background: transparent;
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product:hover { transform: translateY(-3px); }
.product:hover .product-image { filter: grayscale(0) brightness(1); }

.product-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--silver), var(--pearl-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--charcoal);
  opacity: 0.6;
  filter: grayscale(0.3);
}

.product-info { padding: 1.25rem; }

.product h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.25rem; font-style: italic;}

.product .product-price { font-weight: 500; color: var(--charcoal); font-size: 0.95rem; }

.product .category {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-deep);
  margin-bottom: 0.5rem;
}

/* Resources */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--maxw);
  margin: 3rem auto 0;
}

.resource {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(21,22,26,0.15);
  padding: 2rem 0.5rem;
  transition: padding 0.3s ease;
}

.resource:hover { padding-left: 1.5rem; }

.resource .type {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-deep);
  margin-bottom: 0.75rem;
}

.resource h3 { margin-bottom: 0.75rem; font-size: 1.3rem; font-style: italic;}
.resource p { font-size: 0.95rem; margin-bottom: 1.25rem; }

/* IATA value block */
.value-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 0 3rem 2.5rem;
  background: transparent;
  border-left: 2px solid var(--silver-deep);
  position: relative;
}
.value-block::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 4px;
  height: 48%;
  background: linear-gradient(180deg, var(--iridescent-5), transparent);
}

.value-block h3 { margin-bottom: 1rem; font-style: italic;}
.value-block p + p { margin-top: 1rem; }

/* Events */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: var(--maxw);
  margin: 3rem auto 0;
}

.event {
  background: transparent;
  border: none;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.event:hover { transform: translateY(-4px); }

.event-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--iridescent-5), var(--seafoam-deep), var(--charcoal));
  position: relative;
  filter: grayscale(0.2) brightness(0.9);
}

.event-image .date-stamp {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--pearl);
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.event-body { padding: 1.75rem; }
.event-body h3 { margin-bottom: 0.5rem; font-style: italic;}
.event-body .location {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-deep);
  margin-bottom: 1rem;
}
