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

body {
  font-family: 'Georgia', serif;
  color: #2a2a2a;
  background: #fafaf8;
  line-height: 1.7;
  overflow-x: hidden;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(250, 250, 248, 0), rgba(250,250,248,0));
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem 4rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}

.logo {
  font-size: 1.1rem;
  letter-spacing: 3px;
  font-weight: 400;
  color: #3d3d3db6;
}

.nav-links {
  display: flex;
  gap: 3rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-links a {
  color: #d4cbcb;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.6;
}
/* Prevent visited links from changing color in nav (mobile + desktop) */
.nav-links a,
.nav-links a:visited,
.nav-links a:hover,
.nav-links a:active,
.nav-links a:focus {
  color: inherit;
  text-decoration: none;
}

/* Same idea for the slide-over mobile menu links */
.mobile-menu-nav a,
.mobile-menu-nav a:visited,
.mobile-menu-nav a:hover,
.mobile-menu-nav a:active,
.mobile-menu-nav a:focus {
  color: #2a2a2a;
  text-decoration: none;
}

/* If you want the hero theme to stay white even after visiting */
.theme-hero .nav-links a,
.theme-hero .nav-links a:visited,
.theme-hero .nav-links a:hover,
.theme-hero .nav-links a:active,
.theme-hero .nav-links a:focus {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

/* Optional: remove iOS tap flash that can look like "whiting out" */
.nav-links a,
.mobile-menu-nav a {
  -webkit-tap-highlight-color: transparent;
}

/* HERO */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  width: 100%;
}

.hero-column {
  position: relative;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
  animation: fadeInUp 1.2s ease;
  color: #fafaf8;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
  z-index: -1;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1.5rem;
  font-family: 'Helvetica', sans-serif;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #ffffff;
}

.hero-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #e2e2e2;
  font-weight: 300;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 700px;
  height: 500px;
  background: linear-gradient(to bottom right, #e8e6e1, #f5f3f0);
  margin: 3rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b7355;
  font-size: 0.9rem;
  letter-spacing: 2px;
  border: 1px solid rgba(139, 115, 85, 0.1);
}

.cta-primary {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: #2a2a2a00;
  color: #fafaf8;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: 'Helvetica', sans-serif;
  border: 2px solid #2a2a2a00;
}

.cta-primary:hover {
  color: #2a2a2a;
  border-color: #fafaf8;
}

.section {
  padding: 8rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-tight {
  padding: 6rem 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 1rem;
  font-family: 'Helvetica', sans-serif;
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #5a5a5a;
  line-height: 1.8;
}

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}

.heritage-card {
  text-align: center;
  padding: 2rem;
}

.heritage-image {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #e8e6e1, #f5f3f0);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b7355;
  font-size: 0.85rem;
  letter-spacing: 2px;
  filter: grayscale(100%);
}

.heritage-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.heritage-title {
  font-size: 0.9rem;
  color: #8b7355;
  font-style: italic;
  margin-bottom: 1rem;
}

.heritage-text {
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.7;
}

.product-showcase {
  background: #ffffff;
  padding: 8rem 4rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 6rem;
}

.product-grid:last-of-type {
  margin-bottom: 0;
}

/* PRODUCT IMAGE (fade carousel) */
.product-image {
  width: 100%;
  height: 650px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #f5f3f0, #e8e6e1);
}

/* Fade stacking */
.product-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  pointer-events: none;
}

.product-slide.active {
  opacity: 1;
  pointer-events: auto;



}

.product-slide img,
.product-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* subtle bottom gradient */
.product-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
}

/* Progress bar (for carousel timing) */
.carousel-progress {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 2px;
  background: rgba(232, 230, 225, 0.35);
  border-radius: 999px;
  z-index: 10;
  overflow: hidden;
}

.carousel-progress-fill {
  width: 0%;
  height: 100%;
  background: rgba(232, 230, 225, 0.95);
  border-radius: 999px;
  transform: translateZ(0);
}

.product-details h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.product-price {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #8b7355;
}

.product-features {
  list-style: none;
  margin-bottom: 3rem;
}

.product-features li {
  padding: 1rem 0;
  border-bottom: 1px solid #e8e6e1;
  font-size: 0.95rem;
  color: #5a5a5a;
}

.product-features li:last-child {
  border-bottom: none;
}

.exclusivity-badge {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #2a2a2a;
  color: #fafaf8;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-family: 'Helvetica', sans-serif;
}

.ritual-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #3d3d3d 100%);
  color: #fafaf8;
  padding: 8rem 4rem;
}

.ritual-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.ritual-text h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #fafaf8;
}

.ritual-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #d4d4d4;
}

.ritual-items {
  list-style: none;
}

.ritual-items li {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  color: #d4d4d4;
}

.ritual-items li:before {
  content: "—";
  margin-right: 1rem;
  color: #8b7355;
}

.packaging-section {
  padding: 8rem 4rem;
  background: #fafaf8;
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1400px;
  margin: 4rem auto 0;
}

.packaging-item {
  text-align: center;
}

.packaging-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(to bottom, #e8e6e1, #f5f3f0);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b7355;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.packaging-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.packaging-description {
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.7;
}

.craftsperson-section {
  background: #ffffff;
  padding: 8rem 4rem;
}

.craftsperson-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.craftsperson-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #e8e6e1, #f5f3f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b7355;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.craftsperson-text h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.craftsperson-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a5a5a;
  margin-bottom: 1.5rem;
}

/* Currency switcher – right side vertical */
.woocs_auto_switcher.right {
  position: fixed;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 900;
  font-family: 'Helvetica', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.woocs_auto_switcher.right li {
  margin: 0.15rem 0;
}

.woocs_auto_switcher_link {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  color: #2a2a2a;
  text-decoration: none;
  background: transparent;
  border-left: 2px solid transparent;
  opacity: 0.5;
  transition: all 0.2s ease;
}

.woocs_auto_switcher_link span {
  display: none;
}

.woocs_auto_switcher_link.active {
  opacity: 1;
  border-left-color: #2a2a2a;
  background: #f3eee6;
}

.final-cta {
  padding: 10rem 4rem;
  background: linear-gradient(135deg, #f5f3f0 0%, #fafaf8 100%);
  text-align: center;
}

.final-cta h2 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: 1.2rem;
  color: #5a5a5a;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.edition-badge {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border: 2px solid #8b7355;
  color: #8b7355;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-family: 'Helvetica', sans-serif;
}

/* ENQUIRY SECTION */

.enquiry-section {
  background: #ffffff;
  padding: 8rem 4rem;
}

.enquiry-form {
  max-width: 600px;
  margin: 3rem auto 0;
}

.enquiry-form label {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 0.5rem;
  font-family: 'Helvetica', sans-serif;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #e8e6e1;
  background: #fafaf8;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  outline: none;
}

.enquiry-form textarea {
  min-height: 160px;
  resize: vertical;
}

.enquiry-note {
  font-size: 0.95rem;
  color: #5a5a5a;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

footer {
  background: #2a2a2a;
  color: #fafaf8;
  padding: 4rem;
  text-align: center;
}

footer p {
  font-size: 0.85rem;
  letter-spacing: 2px;
  opacity: 0.7;
}

.footer-links {
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.65;
}

.footer-link {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.footer-link + .footer-link::before {
  content: "·";
  margin: 0 0.6rem;
  opacity: 0.6;
}

.footer-link:hover {
  opacity: 1;
}

.inventory-counter {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 2rem;
  font-family: 'Georgia', serif;
}

/* Modals */
.modal { z-index: 5000; }
body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  z-index: 2000;
}

.modal.modal-open {
  display: flex;
}

.modal-content {
  position: relative;
  background: #fafaf8;
  border: 1px solid #e8e6e1;
  padding: 2rem 2.5rem;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  font-size: 0.9rem;
  line-height: 1.7;
}

.modal-content h3 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 1rem;
  font-family: 'Helvetica', sans-serif;
}

.modal-content p {
  color: #5a5a5a;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #8b7355;
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 1.5rem;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #cecece;
  margin: 4px 0;
  transition: all 0.2s ease;
}
/* Progressive hero: image first, then crossfade to video */
.hero-media-stack {
  position: relative;
}

.hero-poster,
.hero-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* start with image visible, video hidden */
.hero-poster {
  opacity: 1;
  transition: opacity 700ms ease;
}

.hero-motion {
  opacity: 0;
  transition: opacity 700ms ease;
}

/* when video is ready */
.hero-media-stack.is-ready .hero-motion {
  opacity: 1;
}

.hero-media-stack.is-ready .hero-poster {
  opacity: 0;
}

/* optional: if you want the image to feel “slow / cinematic” while waiting */
.hero-poster {
  transform: scale(1.02);
  filter: saturate(1.02);
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-motion { display: none; }
  .hero-poster { opacity: 1 !important; transform: none; }
}

/* Mobile slide-over menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,0.45);
  z-index: 1800;
  align-items: stretch;
  justify-content: flex-end;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-inner {
  width: 80%;
  max-width: 320px;
  background: #fafaf8;
  padding: 2.5rem 2rem;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-logo {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #2a2a2a;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-nav a {
  text-decoration: none;
  color: #2a2a2a;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mobile-menu-section-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 0.5rem;
}

.mobile-currency {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.75rem;
}

.mobile-currency .woocs_auto_switcher_link {
  padding: 0.2rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  opacity: 0.6;
}

.mobile-currency .woocs_auto_switcher_link.active {
  border-color: #2a2a2a;
  background: #f3eee6;
  opacity: 1;
}

/* Mobile behaviour overrides */
@media (max-width: 968px) {
  .nav {
    padding: 2rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .woocs_auto_switcher.right {
    display: none;
  }

  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section {
    padding: 5rem 2rem;
  }

  .heritage-grid,
  .product-grid,
  .ritual-content,
  .packaging-grid,
  .craftsperson-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  /* mobile carousel height */
  .product-image {
    height: 420px;
  }
}

/* Page transition */
@media (prefers-reduced-motion: no-preference) {
  body {
    opacity: 0;
    transition: opacity 420ms ease;
  }

  body.is-loaded {
    opacity: 1;
  }

  body.is-leaving {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body { opacity: 1; transition: none; }
}

/* MOBILE TYPOGRAPHY REFINEMENT */
@media (max-width: 968px) {
  .hero-title {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .section-description {
    font-size: 1rem;
  }
.silent-link {
  color: inherit;
  text-decoration: none;
}

.silent-link:visited,
.silent-link:hover,
.silent-link:active,
.silent-link:focus {
  color: inherit;
  text-decoration: none;
}
.credit-link,
.credit-link:visited,
.credit-link:hover,
.credit-link:active,
.credit-link:focus {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
    font-family: 'Georgia', serif;

}
.credit-link {
  text-decoration-color: rgba(42,42,42,0.35);
}

  .product-details h3 {
    font-size: 1.9rem;
  }

  .craftsperson-text h2 {
    font-size: 1.8rem;
  }

  .final-cta h2 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
}

/* =========================
   HERO (INDEX) NAV THEME
   ========================= */
/* Neutralize all link states site-wide */
a,
a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

.theme-hero .logo {
  color: #ffffff;
}

.theme-hero .nav-links a {
  color: rgba(255,255,255,0.85);
}

.theme-hero .nav-toggle span {
  background: rgba(255,255,255,0.85);
}

.theme-hero .nav.scrolled .logo {
  color: #2a2a2a;
}

.theme-hero .nav.scrolled .nav-links a {
  color: #2a2a2a;
}

.theme-hero .nav.scrolled .nav-toggle span {
  background: #2a2a2a;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* HARD HIDE modals when closed */
.modal[aria-hidden="true"] {
  display: none !important;
}
.modal[aria-hidden="false"] {
  display: flex; /* or block */
}
body.modal-open {
  overflow: hidden;
}/* CTA on light backgrounds (enquiry section) */
.enquiry-section .cta-primary {
  color: #2a2a2a;
  border-color: rgba(42,42,42,0.35);
}

.enquiry-section .cta-primary:hover {
  border-color: rgba(42,42,42,0.65);
  background: transparent;
}

.product-image { touch-action: pan-y; }
.heritage-card img {
  object-fit: cover;
  object-position: center;
}

/* Override only Gabriel */
.heritage-card--gabriel img {

  object-position: center 30%   /* closer to center */

}
