:root {
  --deep: #0a1612;
  --forest: #0f2a22;
  --emerald: #1f6a4d;
  --gold: #c9a961;
  --cream: #f8f4ed;
  --muted: rgba(248, 244, 237, 0.65);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --max: 1400px;
}

* {
  box-sizing: border-box;
}

::selection {
  background: var(--gold);
  color: var(--deep);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(184, 154, 90, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(184, 154, 90, 0.6);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 15% 8%, rgba(31, 106, 77, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 85% 92%, rgba(201, 169, 97, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 20% 10%, #14221b 0%, var(--deep) 55%, #060d0a 100%);
  background-attachment: fixed;
  color: var(--cream);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(280px circle at var(--x, 50%) var(--y, 50%), rgba(248, 244, 237, 0.09), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.spotlight.is-active {
  opacity: 1;
}

.luxury-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
}

.preloader__content {
  text-align: center;
  width: 200px;
}

.preloader__logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
  filter: none;
  animation: pulseLogo 2s infinite ease-in-out;
}

.preloader__logo img {
  width: 100%;
  height: 100%;
}

.preloader__bar {
  width: 100%;
  height: 1px;
  background: rgba(248, 244, 237, 0.1);
  position: relative;
  overflow: hidden;
}

.preloader__progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.4s ease;
}

@keyframes pulseLogo {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 36px 7vw 100px;
  overflow: hidden;
  z-index: 2;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 7vw;
  z-index: 1000;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  padding: 18px 7vw;
  background: rgba(13, 27, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 154, 90, 0.1);
}

.nav__links {
  display: flex;
  gap: 28px;
}

.nav__links a {
  position: relative;
  color: var(--muted);
  transition: color 0.4s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav__links a:hover {
  color: var(--cream);
}

.nav__links a:hover::after {
  width: 100%;
}

.brand {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 40px;
  height: 40px;
  filter: none;
  transition: transform 0.3s var(--ease);
}

.brand:hover .brand__logo {
  transform: rotate(5deg) scale(1.05);
}

.brand__text {
  display: inline-block;
}

@media (max-width: 768px) {
  .brand__text {
    display: none;
  }

  .brand__logo {
    width: 28px;
    height: 28px;
  }
}

.cta {
  border: 1px solid rgba(184, 154, 90, 0.6);
  padding: 10px 22px;
  border-radius: 999px;
  transition: all 0.5s var(--ease);
}

.cta:hover {
  border-color: rgba(184, 154, 90, 1);
  box-shadow: 0 0 20px rgba(184, 154, 90, 0.35);
}

.hero__content {
  max-width: 680px;
  margin-top: 140px;
  position: relative;
  z-index: 2;
}

.hero__headline {
  max-width: 580px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.95;
}

.hero__title {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--emerald) 0%, #1a5a42 100%);
  border: 1px solid rgba(31, 106, 77, 0.3);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(31, 106, 77, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

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

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 106, 77, 0.4);
  border-color: rgba(31, 106, 77, 0.6);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(248, 244, 237, 0.25);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(248, 244, 237, 0.08);
  border-color: rgba(248, 244, 237, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
  transform: translateY(-2px);
}

/* Hero Visual Container (Right Side) */
.hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  /* Slightly wider to accommodate large bean */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* Behind the bean */
  opacity: 0.6;
  /* Subtle blend */
}

/* 2D Realistic Bean */
.hero__bean-2d {
  width: 100%;
  max-width: 650px;
  /* Large, cinematic size */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  /* Deep shadow for depth */
  animation: floatBean 4s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes floatBean {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-25px) rotate(3deg);
  }
}

/* 3D Canvas (Deprecated) */
#canvas-container {
  display: none;
}

#canvas-container-secondary {
  height: 400px;
  background: radial-gradient(circle at center, rgba(31, 106, 77, 0.1), transparent 70%);
  border-radius: 40px;
  border: 1px solid rgba(184, 154, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
  position: relative;
}

.section__header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__header p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Signature Slider Section */
.signature {
  padding: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 10%, #0d1b17 0%, #060d0a 100%);
}

.signature__intro {
  padding: 140px 7vw 80px;
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eyebrow {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.9;
}

/* Slider Track */
.slider-container {
  display: flex;
  width: 100vw;
  height: 100vh;
  /* Use viewport height for immersive feel */
  align-items: center;
  overflow: hidden;
  padding: 0 7vw;
  /* Start padding */
}

.slider-track {
  display: flex;
  gap: 48px;
  /* Consistent spacing for loop calculation */
  padding-right: 0;
  /* No end padding - infinite loop */
  will-change: transform;
  width: max-content;
}

/* Premium Card Style - Slider Variant */
.slider-card {
  width: 45vw;
  max-width: 550px;
  min-width: 380px;
  background: rgba(13, 27, 23, 0.4);
  border: 1px solid rgba(184, 154, 90, 0.15);
  border-radius: 4px;
  padding: 0;
  /* Zero padding, visual split */
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  /* Don't shrink */
  backdrop-filter: blur(10px);
}

.slider-card:hover {
  transform: translateY(-20px);
  border-color: rgba(184, 154, 90, 0.4);
  background: rgba(13, 27, 23, 0.6);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.slider-card .card__visual {
  height: 380px;
  /* Taller visual */
  margin: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(184, 154, 90, 0.1);
  background: radial-gradient(circle at center, #1a2e26 0%, #0a1612 80%);
}

.slider-card .card__content {
  padding: 48px;
  position: relative;
}

.slider-card .card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(184, 154, 90, 0.1);
  padding-bottom: 24px;
}

.slider-card .card__number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: rgba(184, 154, 90, 0.2);
  line-height: 1;
}

.slider-card h3 {
  font-size: 2.2rem;
  /* Larger title */
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.slider-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.7);
  margin-bottom: 32px;
}

.slider-progress {
  position: fixed;
  bottom: 40px;
  left: 7vw;
  right: 7vw;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s;
}

.signature.is-active .slider-progress {
  opacity: 1;
}

.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}

.card__visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
}

.card__visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(184, 154, 90, 0.05), transparent 70%);
  border-radius: 50%;
}

/* Card Visuals - CSS Illustrations */
/* Card Visuals - Premium Photography */
.card__visual--photo {
  height: 380px;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  margin: 0;
  background: #0a1612;
  border-bottom: 1px solid rgba(184, 154, 90, 0.1);
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
  filter: brightness(0.85) contrast(1.1) saturate(1.05);
}

.slider-card:hover .card__image {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.15) saturate(1.1);
}

.card__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 18, 0.8) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.6s ease;
}

.slider-card:hover .card__glow {
  opacity: 0.6;
}

/* Glass Wrapper */
.glass-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 40px;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease);
}

.card:hover .glass-wrapper {
  transform: translateY(-10px) scale(1.05);
}

/* Base Glass Style */
.glass {
  position: relative;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 255, 255, 0.1) 80%, rgba(255, 255, 255, 0.05));
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  z-index: 2;
  overflow: hidden;
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.05),
    0 4px 10px rgba(0, 0, 0, 0.2);
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent 40%, rgba(255, 255, 255, 0.2) 45%, transparent 50%);
  z-index: 4;
  pointer-events: none;
}

/* Glass Variations */
.glass--espresso {
  width: 70px;
  height: 70px;
  border-radius: 4px 4px 20px 20px;
  bottom: 0;
}

.glass--carafe {
  width: 90px;
  height: 120px;
  border-radius: 10px 10px 30px 30px;
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
  bottom: 0px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.15));
}

.glass--tall {
  width: 70px;
  height: 140px;
  border-radius: 4px 4px 10px 10px;
  bottom: 0;
}

/* Liquid */
.liquid {
  position: absolute;
  bottom: 0;
  left: 2px;
  right: 2px;
  background: #3d1f10;
  transform-origin: bottom;
  transform: scaleY(0);
  border-radius: 0 0 15px 15px;
  z-index: 1;
}

.card:hover .liquid {
  filter: brightness(1.2);
}

/* Liquid Variations */
.liquid--espresso {
  height: 50px;
  background: linear-gradient(to bottom, #4a2c1d, #2a160d);
  border-radius: 0 0 18px 18px;
  transform: scaleY(0.4);
  /* Default level */
}

.liquid--pourover {
  height: 90px;
  background: linear-gradient(to bottom, rgba(105, 45, 20, 0.9), rgba(50, 20, 10, 0.95));
  border-radius: 0 0 25px 25px;
  transform: scaleY(0.3);
}

.liquid--coldbrew {
  height: 120px;
  background: linear-gradient(to bottom, #2a160d, #140a05);
  border-radius: 0 0 8px 8px;
  transform: scaleY(0.5);
}

/* Liquid Surface (top of liquid) */
.liquid__surface {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleY(0.5);
  border-radius: 50%;
  filter: blur(1px);
}

/* Crema for Espresso */
.crema {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: radial-gradient(circle, #e6cba4 20%, #c9a961 80%);
  opacity: 0.9;
  filter: blur(0.5px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Ice Cubes */
.ice-cube {
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  border-radius: 4px;
  animation: float 4s ease-in-out infinite;
}

.ice-cube--1 {
  width: 25px;
  height: 25px;
  bottom: 20px;
  left: 10px;
  transform: rotate(15deg);
  animation-delay: 0s;
}

.ice-cube--2 {
  width: 20px;
  height: 20px;
  bottom: 50px;
  right: 15px;
  transform: rotate(-10deg);
  animation-delay: 1.5s;
}

.ice-cube--3 {
  width: 18px;
  height: 18px;
  bottom: 80px;
  left: 20px;
  transform: rotate(5deg);
  animation-delay: 2.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }

  50% {
    transform: translateY(-8px) rotate(calc(var(--r, 0deg) + 5deg));
  }
}

/* Shadows */
.shadow {
  position: absolute;
  bottom: 30px;
  width: 60px;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  filter: blur(4px);
  transform: scale(1);
  transition: transform 0.5s var(--ease), opacity 0.5s ease;
  z-index: 1;
}

.card:hover .shadow {
  transform: scale(1.2);
  opacity: 0.6;
}

/* Typography Adjustments for Visual Balance */
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: rgba(245, 239, 230, 0.8);
  line-height: 1.6;
}

.flavours {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  flex-wrap: wrap;
}

.flavours span {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(184, 154, 90, 0.12), rgba(184, 154, 90, 0.06));
  border: 1px solid rgba(184, 154, 90, 0.3);
  border-radius: 999px;
  color: var(--gold);
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flavours span:hover {
  background: linear-gradient(135deg, rgba(184, 154, 90, 0.25), rgba(184, 154, 90, 0.15));
  border-color: rgba(184, 154, 90, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 154, 90, 0.2);
}

.card__label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.9;
}

.card:hover .liquid {
  transform: scaleY(1.05);
  transform-origin: bottom;
}

/* --- CRAFT SECTION (Premium Overhaul) --- */
/* --- CRAFT SECTION (Million-Dollar Overhaul) --- */
.craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  padding: 180px 7vw;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 100% 50%, rgba(31, 106, 77, 0.05), transparent 60%);
}

.craft__header {
  margin-bottom: 80px;
}

.craft__header h2 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1;
  margin-top: 20px;
  letter-spacing: -0.03em;
  background: linear-gradient(to right, var(--cream) 20%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.craft__grid {
  display: grid;
  gap: 60px;
}

.craft__item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  opacity: 1 !important;
  /* Managed by GSAP */
}

.craft__number {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 0.8;
  opacity: 0.15;
  transition: all 0.7s var(--ease);
  display: block;
}

.craft__dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 15px;
  opacity: 0.3;
  transition: all 0.7s var(--ease);
}

.craft__item:hover .stat {
  opacity: 1;
  transform: translateY(-5px);
  text-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.craft__item:hover .craft__dot {
  opacity: 1;
  transform: scale(2);
  box-shadow: 0 0 15px var(--gold);
}

.craft__text h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.craft__text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
  margin: 0;
}

.craft__visual {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.craft__image-container {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.craft__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
  transition: transform 2s var(--ease);
}

.craft:hover .craft__image {
  transform: scale(1.05);
}

.craft__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(10, 22, 18, 0.8));
}

.craft__glass-panel {
  width: 85%;
  height: 80%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.craft__badge {
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.3);
  padding: 10px 25px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  align-self: flex-start;
  transition: all 0.5s var(--ease);
}

.craft__badge:hover {
  background: rgba(201, 169, 97, 0.2);
  border-color: var(--gold);
}

.craft__panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.craft__panel-footer .location {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  line-height: 1;
}

.craft__panel-footer .coordinates {
  font-size: 10px;
  font-family: monospace;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.6;
}

@media (max-width: 1100px) {
  .craft {
    grid-template-columns: 1fr;
    gap: 100px;
    padding: 120px 7vw;
  }
}

/* --- EXPERIENCE SECTION (Million-Dollar Overhaul) --- */
.experience {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 160px 8vw;
}

.experience__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experience__bg img {
  width: 100%;
  height: 120%;
  /* Taller for parallax */
  object-fit: cover;
  filter: brightness(0.6);
}

.experience__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, #060d0a 90%);
  z-index: 1;
  pointer-events: none;
}

.experience__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
}

.experience .section__header {
  margin-bottom: 100px;
}

.experience__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.experience__item {
  padding: 60px 40px;
  background: rgba(13, 27, 23, 0.4);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.experience__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.experience__item:hover {
  transform: translateY(-15px);
  background: rgba(13, 27, 23, 0.6);
  border-color: rgba(201, 169, 97, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

.experience__icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--gold);
  transition: all 0.5s var(--ease);
}

.experience__item:hover .experience__icon {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
  transform: scale(1.1);
}

.experience__item h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--cream);
  font-family: "Playfair Display", serif;
}

.experience__item p {
  color: rgba(245, 239, 230, 0.7);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

@media (max-width: 1024px) {
  .craft {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .experience__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experience {
    padding: 100px 7vw;
  }
}

/* --- VISIT SECTION (Premium Asymmetry) --- */
.visit {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 120px;
  padding: 180px 8vw;
  align-items: center;
  background: linear-gradient(to bottom, #08100e, #050a08);
  position: relative;
}

.visit__content .eyebrow {
  margin-bottom: 20px;
  display: block;
}

.visit__content h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  margin-bottom: 40px;
  color: var(--cream);
  background: linear-gradient(to right, var(--cream) 20%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.visit__address,
.visit__hours {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 30px;
}

.visit__map-container {
  position: relative;
  height: 600px;
  width: 100%;
}


.visit__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(184, 154, 90, 0.3);
  z-index: 2;
  filter: grayscale(0.8) contrast(1.1) brightness(0.9);
  transition: all 0.6s var(--ease);
}

.visit__map:hover {
  filter: grayscale(0) contrast(1) brightness(1);
  border-color: var(--gold);
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: all;
}

.visit__card-deco {
  display: none;
}

@media (max-width: 1000px) {
  .visit {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 100px 7vw;
  }

  .visit__map-container {
    height: 400px;
  }
}

/* --- FOOTER (The Legacy) --- */
.footer {
  background: #040806;
  padding: 100px 8vw 40px;
  border-top: 1px solid rgba(184, 154, 90, 0.1);
  position: relative;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.footer__brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.footer__links-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.footer__link {
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer__link:hover {
  opacity: 1;
  color: var(--gold);
}

.footer__social-col {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.footer__social-link {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  position: relative;
}

.footer__social-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.footer__social-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer__bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .footer__brand-col,
  .footer__links-col,
  .footer__social-col {
    align-items: center;
    justify-content: center;
  }
}

/* --- GLOBAL POLISH --- */
::selection {
  background: rgba(184, 154, 90, 0.3);
  color: var(--cream);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #08100e;
}

::-webkit-scrollbar-thumb {
  background: rgba(184, 154, 90, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(184, 154, 90, 0.6);
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .hero__headline {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero__image {
    max-width: 320px;
  }

  #canvas-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 40px;
  }

  .hero__content {
    margin-top: 80px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}