/* ===================================================
   THE KASHMIR WRAPS — Main Stylesheet
   =================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #F9F4EE;
  color: #1D3126;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --white:      #F9F4EE;
  --green:      #1D3126;
  --ivy:        #4A2222;
  --gold:       #AF884C;
  --gold-light: #C9A86C;
  --gold-muted: rgba(175, 136, 76, 0.25);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
}

/* ===== CUSTOM CURSOR ===== */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  mix-blend-mode: multiply;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(175, 136, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}
body.cursor-hover #cursor       { width: 18px; height: 18px; }
body.cursor-hover #cursor-ring  { width: 50px; height: 50px; }

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}
nav.scrolled {
  background: rgba(249, 244, 238, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(175, 136, 76, 0.2);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  cursor: none;
}
.nav-logo {
  width: 40px; height: auto;
  opacity: 0;
  transition: opacity 0.6s ease;
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0;
  transition: opacity 0.6s ease;
  white-space: nowrap;
}
nav.scrolled .nav-logo,
nav.scrolled .nav-brand-name { opacity: 1; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green);
  position: relative;
  padding-bottom: 2px;
  cursor: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover::after { width: 100%; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(29, 49, 38, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(175, 136, 76, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(74, 34, 34, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.hero-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.025;
  pointer-events: none;
}
.hero-watermark svg { width: min(600px, 90vw); }

.hero-logo-wrap {
  width: min(320px, 65vw);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.hero-logo-wrap img {
  width: 100%; height: auto;
  animation: float 6s ease-in-out 2s infinite;
}

.hero-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--green);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}
.hero-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}
.hero-sub {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 1s ease 2.1s forwards;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  opacity: 0;
  animation: fadeIn 1s ease 2.8s forwards;
}
.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== KEYFRAMES ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}
@keyframes shimmer {
  0%, 100% { background-position: 200% 200%; }
  50%       { background-position: 0% 0%; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== SHARED SECTION STYLES ===== */
section { padding: 7rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}
.gold-rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-rule.centered { margin: 1.5rem auto; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.50s; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== BRAND STORY ===== */
#story { background: var(--white); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-image-panel {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.story-image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.story-image-panel:hover img { transform: scale(1.04); }
/* Layered landscape art */
.scene-sky {
  position: absolute; top: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(180deg, #bcd4e6 0%, #e8f4f8 50%, #f0e8d8 100%);
}
.scene-peaks {
  position: absolute; bottom: 55%; left: 0; right: 0; height: 30%;
  background: linear-gradient(180deg, transparent 0%, #d4e8e0 50%, #8fbba8 100%);
  clip-path: polygon(0 100%, 8% 30%, 15% 70%, 22% 10%, 30% 60%, 38% 20%, 45% 55%,
                     52% 5%, 60% 50%, 68% 15%, 75% 60%, 83% 25%, 90% 55%,
                     100% 10%, 100% 100%);
}
.scene-snow {
  position: absolute; bottom: 60%; left: 0; right: 0; height: 20%;
  background: white;
  clip-path: polygon(0 100%, 8% 40%, 15% 80%, 22% 20%, 30% 70%, 38% 30%, 45% 65%,
                     52% 15%, 60% 60%, 68% 25%, 75% 70%, 83% 35%, 90% 65%,
                     100% 20%, 100% 100%);
  opacity: 0.85;
}
.scene-valley {
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(180deg, #2d6b4a 0%, #1D3126 60%, #0f2019 100%);
}
.scene-water {
  position: absolute; bottom: 15%; left: 10%; right: 10%; height: 8%;
  background: linear-gradient(90deg, transparent, rgba(180, 220, 240, 0.5), transparent);
  border-radius: 50%;
}
.story-image-panel .gold-border {
  position: absolute; inset: 12px;
  border: 1px solid rgba(175, 136, 76, 0.6);
  pointer-events: none;
}
.scene-caption {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  color: rgba(249, 244, 238, 0.75);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.9rem; letter-spacing: 0.05em;
}
.chinar-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.07; pointer-events: none;
}

.story-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.story-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #3a4a42;
  margin-bottom: 1.2rem;
}
.story-values {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 2rem;
}
.value-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-muted);
  padding: 0.35rem 0.9rem;
}

/* ===== HERITAGE & CRAFT ===== */
#heritage { background: #f4ede3; }
#heritage h2.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.5rem;
}
.heritage-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #3a4a42;
}
.craft-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.craft-row:last-child { margin-bottom: 0; }

.craft-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.craft-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.craft-image:hover img { transform: scale(1.04); }
.craft-image .img-num {
  position: absolute; top: 1.2rem; left: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 300;
  color: rgba(175, 136, 76, 0.15);
  line-height: 1; z-index: 2; pointer-events: none;
}
.craft-image-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.craft-image-border {
  position: absolute; inset: 10px;
  border: 1px solid rgba(175, 136, 76, 0.4);
  pointer-events: none;
}
.weave-pattern {
  position: absolute; inset: 0; opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg,   var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(90deg,  var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 20px);
}

/* Craft panel colour variants */
.cp-1 { position: absolute; inset: 0; background: linear-gradient(135deg, #c8ddd4 0%, #7aaa90 40%, #3d7a5e 70%, #1D3126 100%); }
.cp-2 { position: absolute; inset: 0; background: linear-gradient(135deg, #e8d8c0 0%, #c4a070 40%, #8a6030 70%, #4a3010 100%); }
.cp-3 { position: absolute; inset: 0; background: linear-gradient(135deg, #d8cce0 0%, #9080a8 40%, #503860 70%, #281828 100%); }
.cp-4 { position: absolute; inset: 0; background: linear-gradient(135deg, #f0d8c0 0%, #d4904a 40%, #924020 70%, #3a1808 100%); }
.cp-5 { position: absolute; inset: 0; background: linear-gradient(135deg, #d8e8e0 0%, #90b8a8 40%, #4a7860 70%, #1D3126 100%); }

.craft-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
  color: var(--green);
}
.craft-text p { font-size: 0.95rem; line-height: 1.9; color: #3a4a42; }
.craft-pull {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ===== COLLECTIONS ===== */
#collections { background: var(--white); }
#collections h2.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-align: center; margin-bottom: 0.5rem;
}
.collections-intro {
  text-align: center; max-width: 500px;
  margin: 0 auto 4rem;
  color: #3a4a42; line-height: 1.9;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--green);
  border: 1px solid rgba(175, 136, 76, 0.3);
  overflow: hidden;
  cursor: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(29, 49, 38, 0.2);
  border-color: var(--gold);
}
.card-image {
  aspect-ratio: 3/4;
  position: relative; overflow: hidden;
}
.card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .card-image img { transform: scale(1.06); }
.card-body { padding: 1.8rem; }
.card-body h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.card-body p { font-size: 0.8rem; color: rgba(249, 244, 238, 0.6); line-height: 1.7; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; cursor: none;
  transition: gap 0.3s ease;
}
.card-link:hover { gap: 0.9rem; }
.card-link svg { transition: transform 0.3s ease; }
.card-link:hover svg { transform: translateX(3px); }

/* ===== ARTISAN QUOTE ===== */
#artisan {
  background: var(--green);
  padding: 8rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.artisan-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(175, 136, 76, 0.06) 0%, transparent 70%);
}
.artisan-label-mark { width: 60px; margin: 0 auto 2rem; opacity: 0.8; }
.artisan-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300; color: var(--white);
  max-width: 800px; margin: 0 auto;
  line-height: 1.5; letter-spacing: 0.02em;
}
.artisan-quote::before { content: '\201C'; color: var(--gold); }
.artisan-quote::after  { content: '\201D'; color: var(--gold); }
.artisan-attribution {
  margin-top: 2rem;
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(175, 136, 76, 0.75);
}
.artisan-divider {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 2rem auto;
}

/* ===== VISIT US ===== */
#visit { background: #f4ede3; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.map-wrap {
  aspect-ratio: 4/3; overflow: hidden;
  border: 1px solid var(--gold-muted);
}
.map-wrap iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(20%) sepia(10%);
}
.visit-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 2rem; }
.info-block { margin-bottom: 2rem; }
.info-label {
  font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.info-text { font-size: 0.95rem; line-height: 1.8; color: #3a4a42; }
.info-text a {
  color: var(--green); text-decoration: none;
  border-bottom: 1px solid rgba(29, 49, 38, 0.2);
  transition: border-color 0.3s;
}
.info-text a:hover { border-color: var(--gold); }
.phone-list { list-style: none; }
.phone-list li + li { margin-top: 0.3rem; }

/* ===== FOOTER ===== */
footer {
  background: #0f1a14;
  padding: 5rem 2rem 3rem;
  text-align: center;
}
.footer-logo    { width: 70px;  margin: 0 auto 1.5rem; opacity: 0.85; }
.footer-wordmark { width: 140px; margin: 0 auto 1.5rem; opacity: 0.6; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.1rem;
  color: rgba(249, 244, 238, 0.5);
  margin-bottom: 2.5rem;
}
.footer-divider {
  width: 40px; height: 1px;
  background: rgba(175, 136, 76, 0.4);
  margin: 2rem auto;
}
.footer-address {
  font-size: 0.78rem; color: rgba(249, 244, 238, 0.35);
  line-height: 1.8; margin-bottom: 2rem;
}
.footer-credit {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(249, 244, 238, 0.2);
}
.footer-credit a {
  color: rgba(175, 136, 76, 0.5); text-decoration: none;
  transition: color 0.3s;
}
.footer-credit a:hover { color: var(--gold); }
.footer-copy {
  margin-top: 0.8rem;
  font-size: 0.6rem; color: rgba(249, 244, 238, 0.15);
  letter-spacing: 0.1em;
}

/* ===== SOUND BUTTON ===== */
#sound-btn {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 900;
  background: rgba(29, 49, 38, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(175, 136, 76, 0.3);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0;
  animation: fadeIn 1s ease 3.5s forwards;
}
#sound-btn:hover { border-color: var(--gold); transform: scale(1.08); }
#sound-btn svg { width: 18px; height: 18px; }
.sound-waves {
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(175, 136, 76, 0);
}
#sound-btn.playing .sound-waves {
  animation: pulse-ring 1.8s ease-out infinite;
  border-color: rgba(175, 136, 76, 0.5);
}

/* ===== ENTRY OVERLAY ===== */
#entry-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(249, 244, 238, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
#entry-overlay.hiding {
  opacity: 0;
  pointer-events: none;
}
.entry-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.entry-logo {
  width: clamp(80px, 20vw, 130px);
  margin-bottom: 1.8rem;
  animation: float 6s ease-in-out 1.5s infinite;
}
.entry-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1rem, 3vw, 1.5rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.6rem;
}
.entry-rule {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 1.6rem;
}
.entry-prompt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.entry-skip {
  font-size: 0.62rem;
  color: rgba(29, 49, 38, 0.4);
  letter-spacing: 0.05em;
}
.entry-skip-btn {
  background: none;
  border: none;
  font-size: inherit;
  color: rgba(29, 49, 38, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: inherit;
  padding: 0;
}
.entry-skip-btn:hover { color: var(--green); }

/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  z-index: 1100;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--green);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .story-grid,
  .visit-grid { grid-template-columns: 1fr; gap: 3rem; }
  .craft-row  { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3.5rem; }
  .craft-row > * { order: unset !important; }
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .story-image-panel { max-height: 60vw; }
  .map-wrap { aspect-ratio: 16/9; }
}

@media (max-width: 600px) {
  /* Cursor */
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }

  /* Nav */
  nav { padding: 1rem 1.2rem; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(249, 244, 238, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.8rem;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1050;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 0.25em;
  }

  /* Sections */
  section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }

  /* Hero */
  .hero-logo-wrap { width: min(220px, 55vw); margin-bottom: 1.8rem; }
  .hero-brand-name { font-size: clamp(1rem, 5vw, 1.5rem); letter-spacing: 0.18em; }
  .hero-tagline { font-size: clamp(1.1rem, 4.5vw, 1.5rem); }
  #hero { padding: 5rem 1.5rem 3rem; }

  /* Story */
  .story-image-panel { max-height: 75vw; }
  .story-content h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  /* Heritage */
  .heritage-intro { margin-bottom: 3rem; }
  .craft-image { aspect-ratio: 3/2; }
  .craft-image .img-num { font-size: 3.5rem; }

  /* Collections */
  .cards-grid { grid-template-columns: 1fr; gap: 1rem; }
  .card-image { aspect-ratio: 4/3; }

  /* Artisan */
  #artisan { padding: 5rem 1.5rem; }

  /* Visit */
  .map-wrap { aspect-ratio: 4/3; }

  /* Sound button — clear of mobile bottom bar */
  #sound-btn {
    bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
    right: 1.2rem;
  }
}
