/* ═══════════════════════════════════════════════════════════════
   DIRT & STARLIGHT — style.css
   Combined stylesheet for all pages
   ═══════════════════════════════════════════════════════════════ */

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

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --teal:       #2A6E6C;
  --teal-dark:  #1C4A48;
  --teal-mid:   #236060;
  --teal-deep:  #152E2D;
  --gold:       #C4A873;
  --gold-light: #D4BC8E;
  --gold-dim:   rgba(196,168,115,0.45);
  --terra:      #EAD5C5;
  --terra-mid:  #D4B49A;
  --terra-dark: #2A1A14;
  --cream:      #F4ECE0;
  --header-h:   136px;
  --divider:    50%;
}

/* ─── BASE ──────────────────────────────────────────────────── */
html, body { overflow-x: hidden; cursor: default; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--teal-deep);
  color: var(--cream);
}


/* ─── CURSOR ─────────────────────────────────────────────────── */
.custom-cursor {
  position: fixed; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); mix-blend-mode: difference;
  transition: width .3s, height .3s, opacity .3s;
}
.cursor-ring {
  position: fixed; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(196,168,115,.5); pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); transition: width .3s, height .3s;
}

/* ─── HEADER ─────────────────────────────────────────────────── */
site-header {
  display: block; position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h); background: var(--teal-dark);
  border-bottom: 1px solid rgba(196,168,115,.12); z-index: 200;
}
nav {
  position: absolute; top: 0; left: 0; right: 0; height: 100%;
  display: flex; justify-content: space-between; align-items: center; padding: 0 48px;
}
.nav-left, .nav-right { display: flex; gap: 36px; align-items: center; }
.nav-left a, .nav-right a {
  font-family: 'Cinzel', serif; font-size: 10px; font-weight: 300;
  letter-spacing: .25em; text-decoration: none; text-transform: uppercase;
  color: rgba(244,236,224,.68); transition: color .3s;
  text-align: center; line-height: 1.8;
}
.nav-left a:hover  { color: var(--gold); }
.nav-right a:hover { color: rgba(244,236,224,.95); }
.nav-right a.active { color: var(--gold); }

/* ─── LOGO ──────────────────────────────────────────────────── */
.logo-wrap {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; pointer-events: none; z-index: 201;
}
.logo-img {
  height: 104px; width: auto;
  filter: invert(1) sepia(1) saturate(3.5) brightness(0.62);
  mix-blend-mode: screen;
}
.logo-wordmark {
  font-family: 'Cinzel', serif; font-size: 10px; font-weight: 300;
  letter-spacing: .3em; color: var(--gold); margin-top: 5px; text-transform: uppercase;
}

/* ─── BACKGROUND STARS (page-level fixed layer) ─────────────── */
.page-stars {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.page-stars .pstar {
  position: absolute; opacity: 0; animation: starFade 2.2s ease forwards;
}
@keyframes starFade {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(3.2); }
}

/* ─── PAGE WRAPPER ──────────────────────────────────────────── */
.page-wrapper { margin-top: var(--header-h); position: relative; z-index: 1; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--teal-dark);
  border-top: 1px solid rgba(196,168,115,.1);
  padding: 64px 48px 32px;
  position: relative; z-index: 1;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; margin: 0 0 48px;
}
.footer-logo-img {
  height: 52px; width: auto;
  filter: invert(1) sepia(1) saturate(3.5) brightness(0.62);
  mix-blend-mode: screen; display: block; margin-bottom: 10px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 13px; color: rgba(244,236,224,.35); letter-spacing: .04em;
}
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; }
.footer-col-title {
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col a {
  font-family: 'Cormorant Garamond', serif; font-size: 14px;
  color: rgba(244,236,224,.5); text-decoration: none;
  transition: color .2s; line-height: 1.5; margin-bottom: 6px;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(196,168,115,.08);
}
.footer-copy {
  font-size: 11px; font-style: italic;
  color: rgba(244,236,224,.25); letter-spacing: .04em;
}
.footer-socials { display: flex; gap: 24px; }
.footer-socials a {
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(196,168,115,.45);
  text-decoration: none; transition: color .2s;
}
.footer-socials a:hover { color: var(--gold); }

/* ─── HAMBURGER ──────────────────────────────────────────────── */
.hamburger {
  display: none; position: fixed; top: 0; right: 0;
  width: 56px; height: var(--header-h);
  background: none; border: none; cursor: pointer; z-index: 260;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--gold);
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU OVERLAY ────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; background: var(--teal-deep);
  z-index: 250; display: flex; flex-direction: column; align-items: center;
  padding: 56px 24px 48px; opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-logo { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.mobile-menu-logo img {
  height: 72px; width: auto;
  filter: invert(1) sepia(1) brightness(0.68) saturate(5) hue-rotate(-20deg);
  mix-blend-mode: lighten;
}
.mm-wordmark {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: .3em;
  color: var(--gold); margin-top: 8px; text-transform: uppercase;
}
.mobile-nav {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; text-align: center; flex: 1; justify-content: center;
}
.mobile-nav a {
  display: block; font-family: 'Cinzel', serif; font-size: 12px;
  letter-spacing: .35em; text-transform: uppercase;
  color: rgba(244,236,224,.7); text-decoration: none;
  padding: 18px 0; border-bottom: 1px solid rgba(196,168,115,.1);
  width: 200px; transition: color .2s;
}
.mobile-nav a:first-child { border-top: 1px solid rgba(196,168,115,.1); }
.mobile-nav a:hover { color: var(--gold); }

/* ─── FADE-UP ANIMATION ──────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── SHARED MOBILE BREAKPOINT ───────────────────────────────── */
@media (max-width: 600px) {
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex !important; }
  :root { --header-h: 92px; }
  .logo-img { height: 68px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  footer { padding: 48px 24px 32px; }
}


/* ═══════════════════════════════════════════════════════════════
   PAGE: INDEX (index.html)
   ═══════════════════════════════════════════════════════════════ */

/* Split hero */
.split-hero {
  position: relative; width: 100vw;
  height: calc(100vh - var(--header-h)); margin-top: var(--header-h);
  overflow: visible; user-select: none; z-index: 10;
  animation: panelReveal 1.4s ease 0.1s both;
}

/* Left panel */
.panel-left {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--teal); clip-path: inset(0 calc(100% - var(--divider)) 0 0);
  overflow: hidden;
}
.panel-left::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 65% 55% at 28% 58%, rgba(42,110,108,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 45% at 12% 88%, rgba(196,168,115,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(21,46,45,0.55) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* Stars inside panels */
.panel-stars { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.panel-stars .pstar { position: absolute; opacity: 0; animation: starFade 2.2s ease forwards; }

/* Right panel */
.panel-right {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--terra); clip-path: inset(0 0 0 var(--divider));
  overflow: hidden; transition: clip-path 0.05s linear;
}
.panel-right::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 72% 38%, rgba(212,180,154,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 75% 75% at 92% 92%, rgba(234,213,197,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 55% 5%, rgba(180,130,100,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Panel images */
.panel-image-left {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-70%, -50%);
  width: min(38vw, 380px); aspect-ratio: 3/4; z-index: 1; overflow: hidden;
}
.panel-image-right {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-30%, -50%);
  width: min(38vw, 380px); aspect-ratio: 3/4; z-index: 1; overflow: hidden;
}
.panel-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}

/* Panel text */
.panel-text-left { position: absolute; bottom: 13%; left: 7%; z-index: 2; max-width: 38%; }
.panel-text-right { position: absolute; bottom: 13%; right: 7%; z-index: 2; max-width: 38%; text-align: right; }

.panel-label {
  font-family: 'Cinzel', serif; font-size: clamp(9px, 0.75vw, 11px);
  letter-spacing: 0.3em; text-transform: uppercase; display: block; margin-bottom: 10px;
}
.panel-label.light { color: var(--gold); }
.panel-label.dark  { color: #7A5240; }

.panel-title {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-weight: 300; font-size: clamp(28px, 3.2vw, 52px); line-height: 1.1; margin-bottom: 16px;
}
.panel-title.light { color: rgba(244,236,224,0.82); }
.panel-title.dark  { color: var(--terra-dark); }

.panel-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.4vw, 20px); line-height: 1.7; font-weight: 300;
}
.panel-desc.light { color: rgba(244,236,224,0.82); }
.panel-desc.dark  { color: rgba(42,26,20,0.78); }

.panel-link {
  display: inline-block; margin-top: 22px;
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; text-decoration: none;
  padding-bottom: 4px; border-bottom: 1px solid; transition: opacity 0.25s, letter-spacing 0.25s;
}
.panel-link.light { color: var(--gold); border-color: rgba(196,168,115,0.4); }
.panel-link.dark  { color: var(--terra-dark); border-color: rgba(42,26,20,0.45); }
.panel-link:hover { letter-spacing: 0.4em; opacity: 0.72; }

/* Divider handle */
.divider {
  position: absolute; top: 0; left: var(--divider);
  transform: translateX(-50%); width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(196,168,115,0.4) 18%, rgba(196,168,115,0.65) 50%, rgba(196,168,115,0.4) 82%, transparent 100%);
  z-index: 10; cursor: col-resize;
}
.divider-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 36px; height: 36px;
  border: 1px solid rgba(196,168,115,0.55); border-radius: 50%;
  background: rgba(28,74,72,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; cursor: col-resize;
}
.divider-handle::before, .divider-handle::after {
  content: ''; display: block; width: 5px; height: 5px;
  border-top: 1px solid rgba(196,168,115,0.8); border-right: 1px solid rgba(196,168,115,0.8);
}
.divider-handle::before { transform: rotate(-135deg) translateX(-2px); }
.divider-handle::after  { transform: rotate(45deg) translateX(-2px); }

/* Index — About section */
.home-about {
  background: var(--teal-dark); padding: 120px 48px 100px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
}
.home-about::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 1px; height: 80px;
  background: linear-gradient(to bottom, rgba(196,168,115,0.45), transparent);
}
.about-inner { max-width: 640px; text-align: center; }
.section-ornament { display: block; margin: 0 auto 32px; width: 22px; height: 22px; opacity: 0.72; }
.about-heading {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-size: clamp(30px, 3.5vw, 48px); color: var(--cream); font-weight: 400;
  line-height: 1.2; margin-bottom: 28px;
}
.about-body { font-size: clamp(17px, 1.5vw, 21px); font-weight: 300; line-height: 1.9; color: rgba(244,236,224,0.75); }
.about-body em { font-style: italic; color: rgba(196,168,115,0.95); }
.about-divider { width: 60px; height: 1px; background: rgba(196,168,115,0.22); margin: 48px auto 0; }

/* Process section */
.process-section {
  background: var(--terra); padding: 100px 48px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; position: relative;
}
.process-item { padding: 48px; border-right: 1px solid rgba(42,26,20,0.1); position: relative; }
.process-item:last-child { border-right: none; }
.process-number {
  font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300;
  color: rgba(42,26,20,0.07); line-height: 1; margin-bottom: 16px;
}
.process-title {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: #7A5240; margin-bottom: 16px;
}
.process-text {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 300; line-height: 1.8; color: rgba(42,26,20,0.80);
}

/* Collection section (index) */
.collection-section { background: var(--teal); padding: 100px 48px; }
.collection-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.collection-title {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-weight: 300; font-size: clamp(28px, 3vw, 42px); color: var(--cream);
}
.collection-link-all {
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(196,168,115,0.3); padding-bottom: 3px; transition: letter-spacing 0.25s;
}
.collection-link-all:hover { letter-spacing: 0.4em; }

.collection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.collection-cell {
  aspect-ratio: 3/4; background: var(--teal-mid);
  position: relative; overflow: hidden; cursor: pointer;
}
.collection-cell::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(196,168,115,0.04); border: 1px solid rgba(196,168,115,0.08);
  z-index: 1; transition: background 0.35s, border-color 0.35s;
}
.collection-cell:hover::before { background: rgba(196,168,115,0.10); border-color: rgba(196,168,115,0.22); }
.collection-cell-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(to top, rgba(21,46,45,0.92), transparent);
  z-index: 2; transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.collection-cell:hover .collection-cell-label { transform: translateY(0); }
.collection-cell-name {
  font-family: 'IM Fell French Canon', serif; font-style: italic;
  font-size: 15px; color: var(--cream);
}
.collection-cell-type {
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-top: 4px;
}
.cell-art { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.cell-art svg { opacity: 0.12; }

/* Index intro animations */
@keyframes fadeInLogo {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes panelReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.logo-animated { animation: fadeInLogo 1.2s ease 0.4s both; }

/* Index responsive */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-left, .nav-right { gap: 20px; }
  .panel-text-left, .panel-text-right { max-width: 42%; }
  .process-section { grid-template-columns: 1fr; }
  .process-item { border-right: none; border-bottom: 1px solid rgba(42,26,20,0.1); padding: 40px 24px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; gap: 40px; }
}
@media (max-width: 600px) {
  .split-hero { height: 100svh; }
  .panel-image-left  { width: 36vw; top: 10%; left: 25%; transform: translate(-50%, 0); }
  .panel-image-right { width: 36vw; top: 10%; left: 75%; transform: translate(-50%, 0); }
  .panel-text-left  { bottom: 10%; left: 4%;  max-width: 44%; }
  .panel-text-right { bottom: 10%; right: 4%; max-width: 44%; }
  .panel-title { font-size: clamp(22px, 5.5vw, 28px); margin-bottom: 10px; }
  .panel-desc  { font-size: clamp(13px, 3.2vw, 16px); line-height: 1.55; }
  .panel-link  { margin-top: 14px; font-size: 8px; }
  .collection-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}


/* ═══════════════════════════════════════════════════════════════
   PAGE: VENUS (venus.html)
   ═══════════════════════════════════════════════════════════════ */

/* Intro */
.page-intro {
  text-align: center;
  padding: 80px 48px 64px;
}
.page-intro-label {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block;
}
.page-intro-heading {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-weight: 300; font-size: clamp(32px, 4vw, 54px);
  color: var(--cream); line-height: 1.15; margin-bottom: 20px;
}
.page-intro-body {
  font-size: clamp(15px, 1.3vw, 17px); font-weight: 300; line-height: 1.8;
  color: rgba(244,236,224,.65); max-width: 480px; margin: 0 auto;
}

/* Venus section */
.venus-section { display: flex; justify-content: center; padding: 0 48px 80px; }
.venus-container {
  position: relative; width: 100%; max-width: 860px;
  aspect-ratio: 1.62 / 1; overflow: visible;
}
@media (min-width: 860px) { .venus-container { max-width: 60vw; } }

.venus-image {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  border: 1px solid rgba(196,168,115,.18);
  box-shadow: 0 0 0 1px rgba(28,74,72,.6), 0 20px 80px rgba(0,0,0,.55), 0 0 120px rgba(196,168,115,.04) inset;
}
.venus-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 55%, rgba(21,46,45,.45) 100%);
  pointer-events: none; z-index: 1;
}

/* Hotspots */
.hotspot { position: absolute; transform: translate(-50%, -50%); z-index: 10; cursor: pointer; }
.hs-pulse {
  position: absolute; top: 50%; left: 50%; width: 22px; height: 22px;
  border-radius: 50%; border: 1px solid rgba(196,168,115,.7);
  animation: hsPulse 2.4s ease-out infinite; pointer-events: none;
}
@keyframes hsPulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: .8; }
  100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0;  }
}
.hs-marker {
  width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, filter .2s ease; position: relative; z-index: 2;
  filter: drop-shadow(0 0 3px rgba(0,0,0,.8)) drop-shadow(0 0 8px rgba(196,168,115,.85));
}
.hs-marker svg { width: 22px; height: 22px; }
.hotspot:hover .hs-marker, .hotspot.active .hs-marker {
  transform: scale(1.45);
  filter: drop-shadow(0 0 3px rgba(0,0,0,.9)) drop-shadow(0 0 12px rgba(196,168,115,1));
}
.hotspot.active .hs-pulse { animation: hsPulseActive 1.4s ease-out infinite; border-color: var(--gold); }
@keyframes hsPulseActive {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.9); opacity: 0; }
}
.hs-tooltip { display: none; }

/* Venus results section */
.results-section {
  background: var(--teal-dark); padding: 0 48px;
  max-height: 0; overflow: hidden;
  transition: max-height .6s cubic-bezier(.25,.46,.45,.94), padding .6s ease;
}
.results-section.open { max-height: 1200px; padding: 72px 48px 80px; }
.results-header { display: flex; align-items: center; gap: 24px; margin-bottom: 52px; }
.results-ornament { flex-shrink: 0; }
.results-title {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-weight: 300; font-size: clamp(28px, 3.5vw, 46px); color: var(--cream);
}
.results-dismiss {
  margin-left: auto;
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(244,236,224,.4); cursor: pointer;
  background: none; border: none; padding: 4px 0;
  border-bottom: 1px solid rgba(244,236,224,.15);
  transition: color .2s, border-color .2s; flex-shrink: 0;
}
.results-dismiss:hover { color: rgba(244,236,224,.7); border-color: rgba(244,236,224,.35); }

.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.result-cell {
  aspect-ratio: 3/4; background: var(--teal-mid); position: relative;
  overflow: hidden; cursor: pointer; opacity: 0;
  transform: translateY(20px); transition: opacity .5s ease, transform .5s ease;
}
.result-cell.visible { opacity: 1; transform: translateY(0); }
.result-cell::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(196,168,115,.04); border: 1px solid rgba(196,168,115,.08);
  z-index: 1; transition: background .35s, border-color .35s;
}
.result-cell:hover::before { background: rgba(196,168,115,.10); border-color: rgba(196,168,115,.22); }
.result-cell img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform .5s ease;
}
.result-cell:hover img { transform: scale(1.04); }
.result-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px 18px;
  background: linear-gradient(to top, rgba(21,46,45,.92), transparent);
  z-index: 2; transform: translateY(100%);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.result-cell:hover .result-label { transform: translateY(0); }
.result-name {
  font-family: 'IM Fell French Canon', serif; font-style: italic;
  font-size: 15px; color: var(--cream);
}
.result-type {
  font-family: 'Cinzel', serif; font-size: 8px;
  letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-top: 4px;
}
.results-empty {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 18px; color: rgba(244,236,224,.5); padding: 40px 0;
}

/* Venus responsive */
@media (max-width: 900px) {
  .venus-section { padding: 0 20px 60px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .results-section.open { padding: 48px 24px 60px; }
}
@media (max-width: 600px) {
  .venus-container { aspect-ratio: auto; }
  .venus-image { height: 70vw; object-fit: cover; }
}


/* ═══════════════════════════════════════════════════════════════
   PAGE: COLLECTIONS (collections.html)
   ═══════════════════════════════════════════════════════════════ */

/* Ornament divider */
.ornament-divider {
  display: flex; align-items: center; gap: 24px;
  padding: 0 80px 56px; max-width: 960px; margin: 0 auto;
}
.ornament-divider::before,
.ornament-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,168,115,.22), transparent);
}

/* Collections grid */
.collections-section { padding: 0 48px 80px; }
.collections-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; max-width: 1140px; margin: 0 auto;
  background: rgba(196,168,115,.12);
}
.collection-card {
  position: relative; padding: 48px 40px 40px;
  cursor: pointer; background: var(--teal-deep); overflow: hidden;
  display: flex; flex-direction: column; min-height: 260px;
  transition: background .35s ease;
  opacity: 0; transform: translateY(18px);
}
.collection-card.visible { animation: cardFadeUp .55s ease forwards; }
@keyframes cardFadeUp { to { opacity: 1; transform: translateY(0); } }

.collection-card.active::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.collection-card:hover { background: rgba(30,58,56,.9); }
.collection-card.active { background: rgba(28,54,52,.95); }

.card-name {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-size: clamp(20px, 1.9vw, 28px); font-weight: 300;
  color: var(--cream); line-height: 1.2; margin-bottom: 18px; position: relative; z-index: 1;
}
.card-rule {
  width: 28px; height: 1px; background: rgba(196,168,115,.3);
  margin-bottom: 18px; transition: width .35s ease, background .35s;
}
.collection-card:hover .card-rule, .collection-card.active .card-rule {
  width: 48px; background: rgba(196,168,115,.65);
}
.card-desc {
  font-size: 14px; font-weight: 300; line-height: 1.8;
  color: rgba(244,236,224,.45); flex: 1; transition: color .3s; position: relative; z-index: 1;
}
.collection-card:hover .card-desc, .collection-card.active .card-desc { color: rgba(244,236,224,.68); }
.card-cta {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 28px;
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: .38em;
  text-transform: uppercase; color: rgba(196,168,115,.3); transition: color .3s, gap .3s;
  position: relative; z-index: 1;
}
.card-cta-arrow { display: inline-block; transition: transform .3s; }
.collection-card:hover .card-cta, .collection-card.active .card-cta { color: var(--gold); gap: 14px; }
.collection-card:hover .card-cta-arrow, .collection-card.active .card-cta-arrow { transform: translateX(4px); }

/* Collections results section (different grid from venus) */
.results-section--collections { transition: max-height .65s cubic-bezier(.25,.46,.45,.94), padding .65s ease; }
.results-section--collections.open { max-height: 1400px; }
.results-section--collections .results-header { gap: 20px; margin-bottom: 48px; }
.results-section--collections .results-title { flex: 1; font-size: clamp(24px, 3vw, 40px); }
.results-section--collections .results-dismiss {
  margin-left: 0; font-size: 8px; border: 1px solid rgba(196,168,115,.2);
  padding: 8px 18px; border-bottom-width: 1px;
}
.results-section--collections .results-dismiss:hover { color: var(--gold); border-color: rgba(196,168,115,.5); }

.results-section--collections .results-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
}
.results-section--collections .result-cell {
  aspect-ratio: auto; background: none; opacity: 0;
  transform: translateY(12px); transition: opacity .4s ease, transform .4s ease;
}
.results-section--collections .result-cell.show { opacity: 1; transform: translateY(0); }
.results-section--collections .result-cell::before { display: none; }
.results-section--collections .result-cell img { display: none; }
.result-img-wrap {
  aspect-ratio: 1; overflow: hidden;
  border: 1px solid rgba(196,168,115,.1); margin-bottom: 14px;
}
.result-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease;
}
.results-section--collections .result-cell:hover .result-img-wrap img { transform: scale(1.04); }
.results-section--collections .result-name {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 16px; color: var(--cream); margin-bottom: 4px;
}
.results-section--collections .result-type { color: rgba(196,168,115,.55); }
.results-section--collections .results-empty { font-style: italic; color: rgba(244,236,224,.4); font-size: 17px; padding: 24px 0; }

/* Collections responsive */
@media (max-width: 960px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-card:nth-child(9) { grid-column: span 2; }
}
@media (max-width: 600px) {
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card:nth-child(9) { grid-column: span 1; }
  .collections-section { padding: 0 0 60px; }
  .ornament-divider { padding: 0 24px 40px; }
  .results-section--collections { padding: 0 24px; }
  .results-section--collections.open { padding: 48px 24px 60px; }
}


/* ═══════════════════════════════════════════════════════════════
   PAGE: FIELD NOTES ARCHIVE (field-notes.html)
   ═══════════════════════════════════════════════════════════════ */

/* Shared page-intro for field-notes + about styles */
.page-intro-eyebrow {
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: .45em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.page-intro h1 {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-size: clamp(40px, 6vw, 72px); font-weight: 400;
  color: var(--cream); line-height: 1.1; margin-bottom: 24px; letter-spacing: .01em;
}
.page-intro-desc {
  font-size: 18px; font-style: italic;
  color: rgba(244,236,224,.55); line-height: 1.7; letter-spacing: .02em;
}

/* Gold rule */
.gold-rule {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 56px;
}

/* Filter bar */
.filter-bar {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
  padding: 0 48px 56px;
}
.filter-btn {
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: .35em;
  text-transform: uppercase; color: rgba(244,236,224,.45);
  background: none; border: 1px solid rgba(196,168,115,.18);
  padding: 8px 18px; cursor: pointer; transition: all .25s;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--gold); border-color: rgba(196,168,115,.6); background: rgba(196,168,115,.06);
}

/* Posts grid */
.posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(196,168,115,.12); margin: 0 48px 2px;
}
.post-card {
  background: var(--teal-deep); padding: 40px 36px 44px;
  display: flex; flex-direction: column; cursor: pointer; transition: background .25s;
  text-decoration: none; color: inherit; position: relative; overflow: hidden;
}
.post-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,168,115,.4), transparent);
  opacity: 0; transition: opacity .3s;
}
.post-card:hover { background: rgba(21,46,45,.6); }
.post-card:hover::before { opacity: 1; }
.post-card.featured { grid-column: span 2; flex-direction: row; gap: 40px; align-items: flex-start; }

.post-thumb {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  margin-bottom: 24px; filter: sepia(.2) brightness(.9); transition: filter .4s;
}
.post-card:hover .post-thumb { filter: sepia(.1) brightness(1); }
.post-thumb-wrap { flex-shrink: 0; width: 240px; }
.post-thumb-wrap .post-thumb { margin-bottom: 0; width: 100%; height: 180px; }
.post-thumb-placeholder {
  width: 100%; aspect-ratio: 3/2;
  background: linear-gradient(135deg, rgba(42,110,108,.6) 0%, rgba(21,46,45,.9) 100%);
  margin-bottom: 24px; display: flex; align-items: center; justify-content: center;
}
.post-thumb-placeholder svg { opacity: .25; }

.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.post-category {
  font-family: 'Cinzel', serif; font-size: 7.5px; letter-spacing: .35em;
  text-transform: uppercase; color: var(--gold);
}
.post-meta-sep { width: 20px; height: 1px; background: rgba(196,168,115,.3); }
.post-date {
  font-family: 'Cormorant Garamond', serif; font-size: 12px;
  color: rgba(244,236,224,.35); letter-spacing: .06em;
}
.post-title {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-size: 22px; font-weight: 400; color: var(--cream);
  line-height: 1.25; margin-bottom: 14px; transition: color .25s;
}
.post-card:hover .post-title { color: var(--gold); }
.post-card.featured .post-title { font-size: 28px; }
.post-excerpt {
  font-family: 'Cormorant Garamond', serif; font-size: 15px;
  color: rgba(244,236,224,.48); line-height: 1.7; flex: 1; margin-bottom: 24px;
}
.post-read-more {
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: .35em;
  text-transform: uppercase; color: rgba(196,168,115,.55);
  transition: color .25s; display: flex; align-items: center; gap: 8px;
}
.post-read-more::after {
  content: '→'; font-family: Georgia, serif; font-style: normal;
  font-size: 13px; transition: transform .25s;
}
.post-card:hover .post-read-more { color: var(--gold); }
.post-card:hover .post-read-more::after { transform: translateX(4px); }

/* Field notes archive responsive */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .post-card.featured { grid-column: span 2; }
}
@media (max-width: 700px) {
  .posts-grid { grid-template-columns: 1fr; margin: 0 0 2px; }
  .post-card.featured { grid-column: span 1; flex-direction: column; }
  .post-thumb-wrap { width: 100%; }
  .post-thumb-wrap .post-thumb { height: auto; aspect-ratio: 3/2; }
  .filter-bar { padding: 0 24px 40px; }
}


/* ═══════════════════════════════════════════════════════════════
   PAGE: FIELD NOTES SINGLE POST (field-notes-post.html)
   ═══════════════════════════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 12px;
  padding: 36px 64px 0; max-width: 860px; margin: 0 auto;
}
.breadcrumb a {
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: .35em;
  text-transform: uppercase; color: rgba(196,168,115,.5); text-decoration: none; transition: color .2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(196,168,115,.25); font-size: 11px; }
.breadcrumb-current {
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: .35em;
  text-transform: uppercase; color: rgba(244,236,224,.3);
}

/* Post header */
.post-header { max-width: 860px; margin: 0 auto; padding: 48px 64px 56px; text-align: center; }
.post-header-meta { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 28px; }
.post-header-category {
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: .45em;
  text-transform: uppercase; color: var(--gold);
}
.post-header-sep { width: 32px; height: 1px; background: rgba(196,168,115,.3); }
.post-header-date {
  font-family: 'Cormorant Garamond', serif; font-size: 13px;
  color: rgba(244,236,224,.35); letter-spacing: .08em;
}
.post-header h1 {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-size: clamp(32px, 5vw, 58px); font-weight: 400;
  color: var(--cream); line-height: 1.12; margin-bottom: 24px; letter-spacing: .01em;
}
.post-header-deck {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic;
  color: rgba(244,236,224,.5); line-height: 1.6; max-width: 600px; margin: 0 auto;
}

/* Post hero image */
.post-hero { max-width: 960px; margin: 0 auto 64px; padding: 0 48px; }
.post-hero-img {
  width: 100%; aspect-ratio: 16/7;
  background: linear-gradient(135deg, rgba(42,110,108,.7) 0%, rgba(21,46,45,1) 60%, rgba(28,74,72,.4) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.post-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(21,46,45,.8) 100%);
}
.post-hero-img svg { opacity: .15; }

/* Post body */
.post-body { max-width: 680px; margin: 0 auto; padding: 0 48px 80px; }
.post-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; line-height: 1.85; color: rgba(244,236,224,.72); margin-bottom: 28px;
}
.post-body p:first-child::first-letter {
  font-family: 'IM Fell French Canon', Georgia, serif;
  font-size: 72px; font-style: italic; float: left;
  line-height: .8; margin-right: 8px; margin-top: 6px; color: var(--gold);
}
.post-body h2 {
  font-family: 'Cinzel', serif; font-size: 11px; font-weight: 300;
  letter-spacing: .4em; text-transform: uppercase; color: var(--gold); margin: 52px 0 20px;
}
.post-body blockquote {
  margin: 48px 0; padding: 32px 40px;
  border-left: 1px solid rgba(196,168,115,.4); background: rgba(42,110,108,.12);
}
.post-body blockquote p {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-size: 22px; line-height: 1.65; color: rgba(244,236,224,.78); margin-bottom: 0;
}
.post-body blockquote p::first-letter { all: unset; }
.post-body blockquote cite {
  display: block; margin-top: 16px;
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: .35em;
  text-transform: uppercase; color: rgba(196,168,115,.45);
}

/* Post signature */
.post-signature {
  display: flex; align-items: center; gap: 24px;
  padding: 40px 0 0; border-top: 1px solid rgba(196,168,115,.12); margin-top: 16px;
}
.post-signature-mark {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent); flex-shrink: 0;
}
.post-signature-text {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-size: 15px; color: rgba(196,168,115,.6);
}

/* Post tags */
.post-tags {
  max-width: 680px; margin: 0 auto; padding: 0 48px 64px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.post-tag {
  font-family: 'Cinzel', serif; font-size: 7.5px; letter-spacing: .35em;
  text-transform: uppercase; color: rgba(196,168,115,.4);
  border: 1px solid rgba(196,168,115,.15); padding: 6px 14px;
  text-decoration: none; transition: all .2s;
}
.post-tag:hover { color: var(--gold); border-color: rgba(196,168,115,.5); }

/* Post navigation */
.post-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(196,168,115,.1);
  margin: 0 48px; max-width: calc(100% - 96px);
}
.post-nav-item {
  padding: 40px 48px; text-decoration: none; transition: background .25s;
  display: flex; flex-direction: column; gap: 10px;
}
.post-nav-item:hover { background: rgba(42,110,108,.15); }
.post-nav-item + .post-nav-item { border-left: 1px solid rgba(196,168,115,.1); }
.post-nav-item.next { text-align: right; }
.post-nav-label {
  font-family: 'Cinzel', serif; font-size: 7.5px; letter-spacing: .4em;
  text-transform: uppercase; color: rgba(196,168,115,.4);
}
.post-nav-title {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-size: 18px; color: rgba(244,236,224,.65); line-height: 1.3; transition: color .25s;
}
.post-nav-item:hover .post-nav-title { color: var(--gold); }
.post-nav-back {
  display: flex; justify-content: center; align-items: center;
  padding: 48px; border-top: 1px solid rgba(196,168,115,.08);
}
.post-nav-back a {
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: .45em;
  text-transform: uppercase; color: rgba(196,168,115,.45);
  text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 12px;
}
.post-nav-back a::before { content: '←'; font-family: Georgia; font-size: 14px; }
.post-nav-back a:hover { color: var(--gold); }

/* Single post responsive */
@media (max-width: 700px) {
  .breadcrumb, .post-header, .post-hero, .post-body, .post-tags { padding-left: 24px; padding-right: 24px; }
  .post-header h1 { font-size: 32px; }
  .post-nav { margin: 0; max-width: 100%; grid-template-columns: 1fr; }
  .post-nav-item + .post-nav-item { border-left: none; border-top: 1px solid rgba(196,168,115,.1); }
  .post-nav-item.next { text-align: left; }
}


/* ═══════════════════════════════════════════════════════════════
   PAGE: ABOUT (about.html)
   ═══════════════════════════════════════════════════════════════ */

/* About page intro overrides */
.page-intro--about { padding: 80px 48px 72px; max-width: 760px; margin: 0 auto; }

/* About section (two-column grid layout) */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(196,168,115,.1); margin: 0 0 2px;
}
.about-image-col {
  background: var(--teal-deep); position: relative; overflow: hidden; min-height: 560px;
}
.about-image-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(42,110,108,.55) 0%, rgba(21,46,45,.95) 55%, rgba(28,74,72,.3) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.about-image-placeholder svg { opacity: .18; }
.about-image-caption {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 13px; color: rgba(244,236,224,.3); letter-spacing: .06em; text-align: center; padding: 0 40px;
}
.about-text-col {
  background: var(--teal-deep); padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-label {
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: .45em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.about-text-col h2 {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-size: clamp(26px, 3vw, 38px); font-weight: 400;
  color: var(--cream); line-height: 1.2; margin-bottom: 32px;
}
.about-text-col p { font-size: 17px; line-height: 1.85; color: rgba(244,236,224,.62); margin-bottom: 22px; }
.about-text-col p:last-of-type { margin-bottom: 0; }

/* Details strip */
.details-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(196,168,115,.1); margin-bottom: 2px;
}
.detail-cell {
  background: rgba(21,46,45,.7); padding: 40px 44px;
  display: flex; flex-direction: column; gap: 10px;
}
.detail-cell .detail-label {
  font-family: 'Cinzel', serif; font-size: 7.5px; letter-spacing: .4em;
  text-transform: uppercase; color: rgba(196,168,115,.5);
}
.detail-cell .detail-value {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-size: 18px; color: rgba(244,236,224,.75); line-height: 1.4;
}

/* Section divider */
.section-divider {
  display: flex; align-items: center; gap: 32px;
  padding: 72px 64px 64px; max-width: 900px; margin: 0 auto;
}
.divider-rule { flex: 1; height: 1px; background: rgba(196,168,115,.15); }
.divider-star { flex-shrink: 0; opacity: .5; }

/* Contact section */
.contact-section {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 2px; background: rgba(196,168,115,.1); margin-bottom: 2px;
}
.contact-intro-col {
  background: var(--teal-deep); padding: 64px 48px;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.contact-intro-col h2 {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 400;
  color: var(--cream); line-height: 1.15; margin-bottom: 28px;
}
.contact-intro-col p { font-size: 16px; line-height: 1.8; color: rgba(244,236,224,.52); margin-bottom: 18px; }
.contact-details { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; flex-direction: column; gap: 5px; }
.contact-detail-label {
  font-family: 'Cinzel', serif; font-size: 7.5px; letter-spacing: .4em;
  text-transform: uppercase; color: rgba(196,168,115,.5);
}
.contact-detail-value { font-size: 15px; color: rgba(244,236,224,.6); font-style: italic; }
.contact-detail-value a { color: rgba(244,236,224,.6); text-decoration: none; transition: color .2s; }
.contact-detail-value a:hover { color: var(--gold); }

/* Contact form */
.contact-form-col { background: var(--teal-deep); padding: 64px 56px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-label {
  font-family: 'Cinzel', serif; font-size: 7.5px; letter-spacing: .4em;
  text-transform: uppercase; color: rgba(196,168,115,.55);
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,.03); border: 1px solid rgba(196,168,115,.18);
  color: var(--cream); font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px; padding: 14px 18px; outline: none;
  transition: border-color .25s, background .25s;
  appearance: none; -webkit-appearance: none; border-radius: 0; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(244,236,224,.2); font-style: italic; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(196,168,115,.55); background: rgba(255,255,255,.05);
}
.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='rgba(196,168,115,0.45)'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-select option { background: var(--teal-dark); color: var(--cream); }
.form-textarea { resize: vertical; min-height: 160px; line-height: 1.7; }
.form-note { font-size: 13px; font-style: italic; color: rgba(244,236,224,.28); line-height: 1.6; margin-top: 4px; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 8px; }
.form-submit {
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: .45em;
  text-transform: uppercase; color: var(--teal-deep); background: var(--gold);
  border: none; padding: 16px 40px; cursor: pointer; transition: background .25s, transform .15s;
}
.form-submit:hover { background: #d4b87e; transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }
.form-confirm { display: none; text-align: center; padding: 48px 0; }
.form-confirm-icon { margin: 0 auto 20px; width: 40px; height: 40px; }
.form-confirm h3 {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-size: 26px; color: var(--cream); margin-bottom: 12px;
}
.form-confirm p { font-size: 16px; font-style: italic; color: rgba(244,236,224,.5); line-height: 1.7; }

/* About responsive */
@media (max-width: 900px) {
  .about-section { grid-template-columns: 1fr; }
  .about-image-col { min-height: 320px; }
  .contact-section { grid-template-columns: 1fr; }
  .details-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .details-strip { grid-template-columns: 1fr; }
  .about-text-col, .contact-intro-col, .contact-form-col { padding: 48px 24px; }
  .page-intro--about { padding: 48px 24px 56px; }
  .section-divider { padding: 56px 24px 48px; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════════════
   PAGE: PRODUCT (product.html)
   ═══════════════════════════════════════════════════════════════ */

/* Product layout */
.woocommerce-product-section { display: flex; min-height: calc(100vh - var(--header-h)); }

/* Gallery column */
.woocommerce-product-gallery {
  width: 55%; position: sticky; top: var(--header-h);
  height: calc(100vh - var(--header-h)); overflow: hidden;
  background: var(--teal-dark); border-right: 1px solid rgba(196,168,115,0.2);
  display: flex; flex-direction: column;
}
.gallery-stars { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.gallery-stars .pstar { position: absolute; opacity: 0; animation: starFadeSmall 2.2s ease forwards; }
@keyframes starFadeSmall {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

.woocommerce-product-gallery__image { position: relative; flex: 1; overflow: hidden; }
.woocommerce-product-gallery__image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform 0.6s ease;
}
.woocommerce-product-gallery__image:hover img { transform: scale(1.03); }
.gallery-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(21,46,45,0.7), transparent 50%);
  pointer-events: none; z-index: 2;
}
.gallery-thumbnails {
  display: flex; gap: 6px; padding: 14px 16px;
  background: rgba(21,46,45,0.85); z-index: 4; flex-shrink: 0;
}
.gallery-thumb {
  width: 56px; height: 56px; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(196,168,115,0.15); flex-shrink: 0; transition: border-color 0.25s;
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: opacity 0.25s;
}
.gallery-thumb:hover img { opacity: 0.85; }

/* Summary column */
.summary.entry-summary {
  width: 45%; background: var(--cream); padding: 60px 52px;
  min-height: calc(100vh - var(--header-h));
}

/* Breadcrumb (product) */
.woocommerce-breadcrumb {
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.25em;
  color: rgba(42,26,20,0.45); text-transform: uppercase; margin-bottom: 28px;
}
.woocommerce-breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.woocommerce-breadcrumb a:hover { color: rgba(42,26,20,0.72); }
.woocommerce-breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

/* Product title */
.product_title.entry-title {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-weight: 300; font-size: 42px; line-height: 1.1;
  color: var(--terra-dark); margin-bottom: 18px;
}

/* Star divider */
.product-star-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.product-star-divider .star-line { flex: 1; height: 1px; background: rgba(196,168,115,0.25); }

/* OOAK badge */
.ooakbadge {
  display: inline-block; font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(196,168,115,0.45); padding: 4px 12px; margin-bottom: 22px;
}

/* Price */
p.price {
  font-family: 'Cormorant Garamond', serif; font-size: 36px;
  color: var(--terra-dark); margin-bottom: 20px; font-weight: 400;
}
.woocommerce-Price-amount.amount { color: var(--terra-dark); }

.product-divider { width: 100%; height: 1px; background: rgba(196,168,115,0.22); margin: 20px 0; }

/* Short description */
.woocommerce-product-details__short-description {
  font-family: 'Cormorant Garamond', serif; font-size: 21px;
  line-height: 1.8; color: rgba(42,26,20,0.78); margin-bottom: 28px;
}

/* Details list */
.product-details-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 28px;
}
.product-detail-item { display: flex; flex-direction: column; gap: 2px; }
.product-detail-item .detail-label {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(42,26,20,0.45);
}
.product-detail-item .detail-value {
  font-family: 'Cormorant Garamond', serif; font-size: 17px;
  color: rgba(42,26,20,0.80); line-height: 1.4;
}

/* Cart form */
form.cart { margin-bottom: 24px; }
.cart-row { display: flex; gap: 12px; align-items: stretch; margin-bottom: 14px; }
div.quantity {
  display: flex; align-items: center;
  border: 1px solid rgba(42,26,20,0.2); background: transparent; flex-shrink: 0;
}
.qty-btn {
  width: 36px; height: 100%; background: none; border: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; color: rgba(42,26,20,0.55);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, background 0.2s; padding: 0; line-height: 1; min-height: 48px;
}
.qty-btn:hover { color: var(--terra-dark); background: rgba(42,26,20,0.05); }
input.input-text.qty.text {
  width: 44px; height: 100%; border: none;
  border-left: 1px solid rgba(42,26,20,0.15); border-right: 1px solid rgba(42,26,20,0.15);
  background: transparent; text-align: center;
  font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--terra-dark);
  outline: none; -moz-appearance: textfield; min-height: 48px; padding: 0;
}
input.input-text.qty.text::-webkit-inner-spin-button,
input.input-text.qty.text::-webkit-outer-spin-button { -webkit-appearance: none; }

button.single_add_to_cart_button.button.alt {
  flex: 1; background: var(--teal-dark); color: var(--cream);
  border: none; border-radius: 0;
  font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 0.3em;
  text-transform: uppercase; padding: 18px 24px; cursor: pointer;
  transition: background 0.3s; display: block; width: 100%;
}
button.single_add_to_cart_button.button.alt:hover { background: var(--teal); }

.cart-note {
  font-family: 'Cinzel', serif; font-size: 10px; font-style: italic;
  color: rgba(42,26,20,0.45); letter-spacing: 0.1em; margin-top: 10px;
}

/* Product meta */
.product_meta {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.2em;
  color: rgba(42,26,20,0.45); line-height: 2.2; text-transform: uppercase;
  border-top: 1px solid rgba(42,26,20,0.1); padding-top: 20px; margin-top: 20px;
}
.product_meta span.sku_wrapper, .product_meta span.posted_in, .product_meta span.tagged_as { display: block; }
.product_meta a { color: rgba(42,26,20,0.55); text-decoration: none; transition: color 0.2s; }
.product_meta a:hover { color: var(--terra-dark); }

/* Tabs */
.woocommerce-tabs { background: var(--teal-dark); padding: 80px 72px; }
ul.tabs.wc-tabs {
  list-style: none; display: flex; gap: 0; margin-bottom: 48px;
  border-bottom: 1px solid rgba(196,168,115,0.12);
}
ul.tabs.wc-tabs li { position: relative; }
ul.tabs.wc-tabs li a {
  display: block; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; text-decoration: none; color: rgba(244,236,224,0.5);
  padding: 0 28px 16px; transition: color 0.25s; cursor: pointer;
}
ul.tabs.wc-tabs li a:hover { color: rgba(244,236,224,0.8); }
ul.tabs.wc-tabs li.active a { color: var(--gold); }
ul.tabs.wc-tabs li.active::after {
  content: ''; position: absolute; bottom: -1px; left: 28px; right: 28px;
  height: 1px; background: var(--gold);
}
ul.tabs.wc-tabs li + li::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 16px;
  width: 1px; background: rgba(196,168,115,0.18);
}
ul.tabs.wc-tabs li:first-child a { padding-left: 0; }
ul.tabs.wc-tabs li:first-child.active::after { left: 0; }

.woocommerce-Tabs-panel {
  display: none; font-family: 'Cormorant Garamond', serif;
  font-size: 21px; line-height: 1.9; color: rgba(244,236,224,0.78); max-width: 680px;
}
.woocommerce-Tabs-panel.active { display: block; }
.woocommerce-Tabs-panel h2 {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-weight: 300; font-size: 32px; color: var(--cream); margin-bottom: 24px;
}
.woocommerce-product-attributes {
  width: 100%; border-collapse: collapse;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; color: rgba(244,236,224,0.75);
}
.woocommerce-product-attributes th {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(196,168,115,0.7); text-align: left;
  padding: 10px 0; width: 140px; vertical-align: top;
  border-bottom: 1px solid rgba(196,168,115,0.1);
}
.woocommerce-product-attributes td {
  padding: 10px 0; border-bottom: 1px solid rgba(196,168,115,0.1); vertical-align: top;
}

/* Related products */
section.related.products { background: var(--teal); padding: 80px 48px; }
section.related.products h2 {
  font-family: 'IM Fell French Canon', Georgia, serif; font-style: italic;
  font-weight: 300; font-size: clamp(28px, 3vw, 42px); color: var(--cream); margin-bottom: 48px;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.product.wc-block-grid__product {
  aspect-ratio: 3/4; background: var(--teal-mid); position: relative; overflow: hidden; cursor: pointer;
}
.product.wc-block-grid__product::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(196,168,115,0.04); border: 1px solid rgba(196,168,115,0.08);
  z-index: 1; transition: background 0.35s, border-color 0.35s;
}
.product.wc-block-grid__product:hover::before {
  background: rgba(196,168,115,0.10); border-color: rgba(196,168,115,0.22);
}
a.woocommerce-loop-product__link {
  display: block; width: 100%; height: 100%; position: relative; text-decoration: none;
}
a.woocommerce-loop-product__link img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform 0.5s ease;
}
.product.wc-block-grid__product:hover a.woocommerce-loop-product__link img { transform: scale(1.04); }
.related-cell-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px 18px;
  background: linear-gradient(to top, rgba(21,46,45,0.92), transparent);
  z-index: 2; transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.product.wc-block-grid__product:hover .related-cell-label { transform: translateY(0); }
.related-cell-name {
  font-family: 'IM Fell French Canon', serif; font-style: italic;
  font-size: 19px; color: var(--cream);
}
.related-cell-price {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-top: 4px;
}

/* Product responsive */
@media (max-width: 768px) {
  .woocommerce-product-section { flex-direction: column; min-height: 0; }
  .woocommerce-product-gallery { width: 100%; position: relative; top: 0; height: 60vh; flex-shrink: 0; }
  .summary.entry-summary { width: 100%; min-height: 0; padding: 40px 24px; }
  .woocommerce-tabs { padding: 60px 24px; }
  section.related.products { padding: 60px 24px; }
  .related-grid { grid-template-columns: 1fr; gap: 2px; }
  .product_title.entry-title { font-size: 32px; }
}
@media (max-width: 480px) {
  .product-details-list { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE: MAGICAL OBJECTS (magical-objects.html)
   ═══════════════════════════════════════════════════════════════ */

/* Active state for left-nav links */
.nav-left a.active { color: var(--gold); }

/* Shop toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px 48px;
  flex-wrap: wrap;
}
.woocommerce-result-count {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(244,236,224,.3);
  margin: 0;
  flex-shrink: 0;
}
.shop-filters {
  display: flex;
  gap: 6px;
  flex: 1;
  flex-wrap: wrap;
}
.shop-filter-btn {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(244,236,224,.4);
  background: none;
  border: 1px solid rgba(196,168,115,.15);
  padding: 7px 16px;
  cursor: pointer;
  transition: all .2s;
}
.shop-filter-btn:hover,
.shop-filter-btn.active {
  color: var(--gold);
  border-color: rgba(196,168,115,.55);
  background: rgba(196,168,115,.06);
}
.woocommerce-ordering {
  flex-shrink: 0;
}
.woocommerce-ordering .form-select {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244,236,224,.45);
  background-color: transparent;
  border: 1px solid rgba(196,168,115,.18);
  padding: 8px 36px 8px 14px;
  cursor: pointer;
  width: auto;
}

/* Product grid */
.woocommerce ul.wc-block-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(196,168,115,.08);
  margin: 0 48px;
  padding: 0;
}

/* Product card */
li.wc-block-grid__product {
  background: var(--teal-deep);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease, background .25s;
}
li.wc-block-grid__product.visible {
  opacity: 1;
  transform: translateY(0);
}
li.wc-block-grid__product.hidden {
  display: none;
}
li.wc-block-grid__product:hover {
  background: rgba(28,58,56,.85);
}

/* Product image */
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--teal-mid);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease, filter .4s;
  filter: sepia(.1) brightness(.92);
}
li.wc-block-grid__product:hover .product-img-wrap img {
  transform: scale(1.04);
  filter: sepia(0) brightness(1);
}
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21,46,45,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
li.wc-block-grid__product:hover .product-img-overlay {
  opacity: 1;
}
.product-quick-view {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(244,236,224,.55);
  padding: 10px 20px;
}

/* Product card body */
.product-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid rgba(196,168,115,.08);
}
.product-card-tag {
  font-family: 'Cinzel', serif;
  font-size: 7px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(196,168,115,.45);
  margin-bottom: 8px;
}
.woocommerce-loop-product__title {
  font-family: 'IM Fell French Canon', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.woocommerce-loop-product__title a {
  color: var(--cream);
  text-decoration: none;
  transition: color .2s;
}
li.wc-block-grid__product:hover .woocommerce-loop-product__title a {
  color: var(--gold);
}
.ooakbadge-sm {
  font-family: 'Cinzel', serif;
  font-size: 6.5px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,168,115,.3);
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 12px;
  width: fit-content;
}
li.wc-block-grid__product p.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: rgba(244,236,224,.7);
  margin-bottom: 16px;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.add-to-cart-btn {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--gold);
  border: none;
  padding: 11px 0;
  width: 100%;
  cursor: pointer;
  transition: background .2s, letter-spacing .2s;
}
.add-to-cart-btn:hover {
  background: var(--gold-light);
  letter-spacing: .42em;
}

/* Pagination */
.woocommerce-pagination {
  padding: 64px 48px 80px;
  display: flex;
  justify-content: center;
}
ul.page-numbers {
  list-style: none;
  display: flex;
  gap: 4px;
}
ul.page-numbers li { display: flex; }
.page-numbers {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .3em;
  color: rgba(244,236,224,.4);
  text-decoration: none;
  border: 1px solid rgba(196,168,115,.15);
  padding: 10px 16px;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}
.page-numbers:hover {
  color: var(--gold);
  border-color: rgba(196,168,115,.5);
  background: rgba(196,168,115,.06);
}
span.page-numbers.current {
  color: var(--gold);
  border-color: rgba(196,168,115,.5);
  background: rgba(196,168,115,.08);
}

/* Magical objects responsive */
@media (max-width: 1100px) {
  .woocommerce ul.wc-block-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .woocommerce ul.wc-block-grid { grid-template-columns: repeat(2, 1fr); margin: 0 24px; }
  .shop-toolbar { padding: 0 24px 40px; flex-wrap: wrap; gap: 16px; }
  .shop-filters { order: 3; width: 100%; }
}
@media (max-width: 480px) {
  .woocommerce ul.wc-block-grid { grid-template-columns: 1fr; }
}
