:root {
  color-scheme: light;
  --ivory: #f6f1e8;
  --ivory-deep: #efe6d6;
  --champagne: #c4a05a;
  --champagne-soft: #d4b57a;
  --champagne-warm: #b8933e;
  --text: #5f5344;
  --text-soft: #7a6d5c;
  --shadow: 0 26px 80px rgba(78, 63, 48, 0.11);
  --shadow-soft: 0 18px 50px rgba(78, 63, 48, 0.08);
  --shadow-warm: 0 20px 60px rgba(120, 92, 60, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at 50% 0%, #faf5eb 0%, #f6f1e8 45%)
      no-repeat,
    linear-gradient(180deg, #f8f2e6 0%, #f4ede1 40%, #f1e8da 100%);
  color: var(--text);
  min-height: 100vh;
  letter-spacing: 0.02em;
  position: relative;
  overflow-x: hidden;
  opacity: 0;
  animation: pageLoad 1.2s ease forwards;
}

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

.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.4;
  z-index: 0;
  background-color: rgba(255, 250, 240, 0.02);
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 8vw;
  opacity: 0;
  transition: opacity 0.6s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.visible {
  opacity: 1;
  background: rgba(246, 241, 232, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(212, 181, 122, 0.1);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--champagne);
  text-transform: uppercase;
  z-index: 101;
  position: relative;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(63%) sepia(19%) saturate(809%) hue-rotate(354deg) brightness(89%) contrast(85%);
}

.nav-logo a {
  display: block;
  line-height: 0;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(212, 181, 122, 0.12), rgba(196, 160, 90, 0.08));
  border: 1px solid rgba(212, 181, 122, 0.25);
  cursor: pointer;
  padding: 10px;
  margin: -8px -8px -8px 0;
  z-index: 101;
  position: relative;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(120, 92, 60, 0.1);
}

.mobile-menu-toggle:active {
  background: linear-gradient(135deg, rgba(212, 181, 122, 0.2), rgba(196, 160, 90, 0.15));
  transform: scale(0.95);
}

.hamburger-line {
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--champagne-warm), var(--champagne));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(120, 92, 60, 0.2);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(135deg, 
    rgba(246, 241, 232, 0.98) 0%, 
    rgba(240, 234, 220, 0.98) 100%);
  backdrop-filter: blur(20px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 0 5vw;
  max-width: 100%;
}

.mobile-nav-link {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.mobile-menu-overlay.active .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-nav-link:active {
  color: var(--champagne);
  transform: scale(0.95);
}

.mobile-menu-footer {
  position: absolute;
  bottom: 60px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
  opacity: 1;
}

.mobile-menu-tagline {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

body.menu-open {
  overflow: hidden;
}

.nav {
  display: flex;
  gap: 40px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.4s ease;
}

.nav a:hover {
  color: var(--champagne);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 40%, rgba(250, 245, 235, 0.5), transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(212, 181, 122, 0.15), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(215, 197, 170, 0.2), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(246, 241, 232, 0.8), transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.4s ease forwards 0.3s;
  background: radial-gradient(ellipse at center, rgba(246, 241, 232, 0.75) 0%, transparent 70%);
  padding: 60px 40px;
  backdrop-filter: blur(8px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  font-family: "Cormorant Garamond", serif;
  color: var(--champagne-warm);
  font-size: clamp(3.6rem, 6vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.42em;
  margin-bottom: 18px;
  text-indent: 0.42em;
  text-shadow: 0 2px 12px rgba(184, 147, 62, 0.15);
}

.logo img {
  height: clamp(120px, 15vw, 180px);
  width: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) saturate(100%) invert(63%) sepia(19%) saturate(809%) hue-rotate(354deg) brightness(89%) contrast(85%);
  text-indent: 0;
}

.subtitle {
  font-family: "Inter", sans-serif;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.korean {
  font-family: "Noto Sans KR", sans-serif;
  color: rgba(201, 169, 120, 0.45);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.24em;
}

h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--champagne);
  letter-spacing: 0.04em;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  animation: fadeIn 2.5s ease forwards 0.5s;
}

.hero-exhibition-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bottle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 2s ease forwards 0.8s;
  width: min(420px, 70vw);
  height: min(560px, 80vh);
  display: grid;
  place-items: center;
}

.hero-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(120, 92, 60, 0.2));
}

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

.pedestal {
  position: absolute;
  bottom: -60px;
  width: min(480px, 80vw);
  height: 140px;
  background: linear-gradient(135deg, #f5edde 0%, #efe3cf 100%);
  border-radius: 999px;
  filter: blur(0.6px);
  box-shadow: var(--shadow-soft);
}

.bottle {
  position: relative;
  width: 240px;
  height: 380px;
  display: grid;
  place-items: center;
}

.cap {
  position: absolute;
  top: 0;
  width: 140px;
  height: 60px;
  background: linear-gradient(120deg, #d7c09a 0%, #c6a373 100%);
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(120, 92, 60, 0.2);
}

.glass {
  position: absolute;
  top: 48px;
  width: 200px;
  height: 280px;
  border-radius: 38px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.8), rgba(238, 228, 212, 0.82));
  box-shadow: inset 0 0 32px rgba(255, 255, 255, 0.7),
    0 32px 80px rgba(120, 92, 60, 0.18);
  border: 1px solid rgba(214, 189, 156, 0.5);
}

.label {
  position: absolute;
  bottom: 56px;
  font-family: "Cormorant Garamond", serif;
  color: var(--champagne);
  letter-spacing: 0.48em;
  font-size: 0.85rem;
  font-weight: 400;
}

.halo {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 181, 122, 0.7), rgba(215, 197, 170, 0.3) 50%, rgba(215, 197, 170, 0));
  filter: blur(12px);
  z-index: -1;
}

.scroll-hint {
  position: absolute;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 2s, float 2.4s ease-in-out infinite 3s;
  z-index: 3;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

section {
  padding: 50px 8vw;
}

.story-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  padding: 50px 8vw;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
  position: relative;
}

.story-split::before {
  content: '';
  position: absolute;
  inset: -5%;
  background: radial-gradient(ellipse at 40% 50%, rgba(250, 245, 235, 0.6), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.story-copy,
.story-image {
  position: relative;
  z-index: 1;
}

.story-split.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-copy {
  max-width: 480px;
}

.statement {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.5;
  color: var(--champagne);
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.story-meta {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.story-meta p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
  font-weight: 300;
}

.story-image {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(150deg, rgba(255, 252, 245, 0.8), rgba(246, 237, 222, 0.6));
  border-radius: 16px;
  box-shadow: 
    var(--shadow-warm),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(196, 160, 90, 0.1);
  border: 1px solid rgba(212, 181, 122, 0.2);
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.8s ease;
  display: grid;
  place-items: center;
  padding: 40px;
}

.frame-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-frame:hover {
  transform: scale(1.02);
  box-shadow: 
    0 28px 70px rgba(120, 92, 60, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(196, 160, 90, 0.15);
}

.product-sculpture {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 35%, rgba(215, 197, 170, 0.3), transparent 60%),
    radial-gradient(circle at 60% 70%, rgba(238, 228, 212, 0.4), transparent 50%);
  display: grid;
  place-items: center;
}

.product-sculpture::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 280px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(238, 228, 212, 0.9));
  border-radius: 28px;
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.8),
    0 28px 70px rgba(120, 92, 60, 0.2);
  border: 1px solid rgba(214, 189, 156, 0.6);
}

.product-sculpture::after {
  content: '';
  position: absolute;
  top: 15%;
  width: 100px;
  height: 48px;
  background: linear-gradient(120deg, #d7c09a 0%, #c6a373 100%);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(120, 92, 60, 0.24);
}

.cinematic {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 60px 8vw;
  margin: 30px 0;
  overflow: hidden;
  background: 
    radial-gradient(circle at 35% 40%, rgba(250, 245, 235, 0.8), transparent 55%),
    radial-gradient(circle at 65% 60%, rgba(245, 237, 222, 0.7), transparent 55%),
    linear-gradient(135deg, #faf5eb 0%, #f4ede1 50%, #f1e8da 100%);
}

.cinematic::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23grain)' opacity='0.2'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.4;
  pointer-events: none;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(246, 241, 232, 0.5) 80%);
  pointer-events: none;
}

.cinematic-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cinematic-line {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.6;
  color: var(--champagne);
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.cinematic-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  padding: 50px 8vw;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.product-showcase.visible {
  opacity: 1;
  transform: translateY(0);
}

.showcase-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: 
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.4), transparent 60%),
    linear-gradient(145deg, rgba(248, 242, 230, 0.8), rgba(239, 227, 207, 0.7));
  box-shadow: 
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 4px 16px rgba(196, 160, 90, 0.1);
  border: 1px solid rgba(212, 181, 122, 0.25);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.8s ease;
  display: grid;
  place-items: center;
  padding: 50px;
}

.showcase-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-image:hover {
  transform: scale(1.03);
  box-shadow: 
    0 36px 100px rgba(78, 63, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 24px rgba(196, 160, 90, 0.15);
}

.showcase-image:hover .showcase-product-image {
  transform: scale(1.08);
}

.showcase-image:hover {
  transform: scale(1.03);
  box-shadow: 0 32px 90px rgba(78, 63, 48, 0.12);
}

.product-photo {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 45% 30%, rgba(255, 255, 255, 0.8), transparent 40%),
    radial-gradient(circle at 55% 65%, rgba(215, 197, 170, 0.3), transparent 50%);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: grid;
  place-items: center;
}

.showcase-image:hover .product-photo {
  transform: scale(1.12);
}

.product-photo::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 320px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(238, 228, 212, 0.92));
  border-radius: 32px;
  box-shadow: inset 0 0 32px rgba(255, 255, 255, 0.85),
    0 32px 80px rgba(120, 92, 60, 0.22);
  border: 1px solid rgba(214, 189, 156, 0.65);
}

.product-photo::after {
  content: '';
  position: absolute;
  top: 8%;
  width: 110px;
  height: 54px;
  background: linear-gradient(120deg, #d7c09a 0%, #c6a373 100%);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(120, 92, 60, 0.26);
}

.showcase-info {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--champagne);
  font-weight: 300;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  margin-bottom: 8px;
}

.product-subtitle {
  font-size: 0.8rem;
  color: var(--text-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 24px;
}

.scent-notes-compact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.note-label {
  color: var(--champagne);
  font-weight: 400;
  min-width: 48px;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.note-divider {
  color: var(--champagne-soft);
  opacity: 0.5;
}

.note-desc {
  color: var(--text-soft);
  font-weight: 300;
}

.story {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  background: rgba(255, 255, 255, 0.32);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.story-text h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.story-text p {
  color: var(--text-soft);
  line-height: 1.7;
}

.story-points {
  display: grid;
  gap: 24px;
}

.story-points span {
  display: block;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--champagne);
  margin-bottom: 10px;
}

.story-points p {
  color: var(--text-soft);
  line-height: 1.6;
}

.section-header {
  max-width: 520px;
  margin-bottom: 32px;
}

.section-header p {
  color: var(--text-soft);
  line-height: 1.6;
  margin-top: 12px;
}

.notes-grid,
.craft-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.note-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(250, 245, 235, 0.6));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 181, 122, 0.25);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 24px rgba(120, 92, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
}

.note-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(212, 181, 122, 0.08) 0%, 
    transparent 50%, 
    rgba(184, 147, 62, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.note-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 40px rgba(120, 92, 60, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(212, 181, 122, 0.4);
}

.note-card:hover::before {
  opacity: 1;
}

.note-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.note-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.note-card:hover .note-card-image img {
  transform: scale(1.08);
}

.note-card-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.note-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
  margin: 0;
}

.note-card-description {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  margin: 0;
  font-style: italic;
}

/* Collection Section */
.collection {
  padding: 60px 8vw;
  position: relative;
  background: linear-gradient(180deg, 
    rgba(246, 241, 232, 0) 0%, 
    rgba(246, 241, 232, 0.3) 20%, 
    rgba(239, 230, 214, 0.4) 50%, 
    rgba(246, 241, 232, 0.3) 80%, 
    rgba(246, 241, 232, 0) 100%);
}

.collection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8vw;
  right: 8vw;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--champagne) 30%, 
    var(--champagne) 70%, 
    transparent 100%);
  opacity: 0.3;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
  position: relative;
}

.collection-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 181, 122, 0.15), rgba(196, 160, 90, 0.1));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 181, 122, 0.3);
  color: var(--champagne);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(120, 92, 60, 0.15);
  align-items: center;
  justify-content: center;
}

.collection-nav:hover {
  background: linear-gradient(135deg, rgba(212, 181, 122, 0.25), rgba(196, 160, 90, 0.2));
  border-color: rgba(212, 181, 122, 0.5);
  box-shadow: 0 6px 16px rgba(120, 92, 60, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.collection-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.collection-nav-prev {
  left: -24px;
}

.collection-nav-next {
  right: -24px;
}

.collection-nav svg {
  width: 20px;
  height: 20px;
  stroke: var(--champagne);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.collection-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item:hover {
  transform: translateY(-8px);
}

.collection-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(246, 241, 232, 0.8), rgba(239, 230, 214, 0.8));
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 181, 122, 0.2);
}

.collection-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(212, 181, 122, 0.08) 0%, 
    transparent 50%, 
    rgba(184, 147, 62, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.collection-item:hover .collection-image-wrapper::before {
  opacity: 1;
}

.collection-item:hover .collection-image-wrapper {
  box-shadow: var(--shadow-warm);
}

.collection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item:hover .collection-image {
  transform: scale(1.05);
}

.collection-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 4px;
}

.collection-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
}

.collection-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}

.notes-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.notes-grid p {
  color: var(--text-soft);
  line-height: 1.6;
}

.craft-grid .panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.6), rgba(243, 234, 220, 0.5));
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  color: var(--text-soft);
  line-height: 1.6;
}

.gallery {
  padding: 70px 8vw 100px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.gallery.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 20px;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-asymmetric {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 18px;
}

.gallery-item {
  flex: 0 0 320px;
  aspect-ratio: 1 / 1;
  scroll-snap-align: start;
  border-radius: 8px;
  background: 
    radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.3), transparent 70%),
    linear-gradient(140deg, rgba(245, 236, 222, 0.9), rgba(234, 220, 200, 0.8));
  box-shadow: 
    var(--shadow-soft),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(212, 181, 122, 0.15);
  overflow: hidden;
  position: relative;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.7s ease;
  display: grid;
  place-items: center;
  padding: 24px;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 181, 122, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 40%, rgba(255, 255, 255, 0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

/* Asymmetric layout patterns */
.gallery-item.large {
  grid-column: span 7;
  grid-row: span 4;
  background: linear-gradient(155deg, rgba(248, 242, 230, 0.9), rgba(239, 227, 207, 0.75));
}

.gallery-item.tall {
  grid-column: span 5;
  grid-row: span 5;
  background: radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.6), rgba(238, 228, 212, 0.8));
}

.gallery-item.medium {
  grid-column: span 5;
  grid-row: span 3;
  background: linear-gradient(120deg, rgba(245, 237, 222, 0.85), rgba(234, 220, 200, 0.7));
}

.gallery-item.wide {
  grid-column: span 7;
  grid-row: span 3;
  background: linear-gradient(165deg, rgba(243, 234, 220, 0.8), rgba(239, 227, 207, 0.65));
}

.gallery-item.square {
  grid-column: span 4;
  grid-row: span 4;
  background: radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.7), rgba(234, 220, 200, 0.75));
}

.gallery-item.tall-wide {
  grid-column: span 8;
  grid-row: span 4;
  background: linear-gradient(130deg, rgba(248, 242, 230, 0.85), rgba(239, 227, 207, 0.7));
}

.cta-section {
  padding: 80px 8vw;
  text-align: center;
  background: linear-gradient(135deg, #f4ede1 0%, #efe6d6 50%, #f1e8da 100%);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.cta-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.4), transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--champagne);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.cta-subheading {
  font-size: 0.88rem;
  color: var(--text-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 12px;
}

.cta-incentive {
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto 32px;
}

.email-capture {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.email-capture input[type="email"] {
  width: 100%;
  padding: 16px 20px;
  background: 
    linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
  border: 1px solid rgba(201, 169, 120, 0.35);
  border-radius: 2px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 
    inset 0 1px 2px rgba(120, 92, 60, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.6);
}

.email-capture input[type="email"]::placeholder {
  color: var(--text-soft);
  opacity: 0.6;
}

.email-capture input[type="email"]:focus {
  outline: none;
  border-color: var(--champagne-warm);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 
    inset 0 1px 2px rgba(120, 92, 60, 0.05),
    0 0 0 3px rgba(196, 160, 90, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.8);
}

.cta-button {
  margin-top: 12px;
  padding: 16px 48px;
  background: transparent;
  border: 1.5px solid var(--champagne);
  color: var(--champagne-warm);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(196, 160, 90, 0.1);
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(196, 160, 90, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-button:hover {
  border-color: var(--champagne-warm);
  box-shadow: 
    0 0 40px rgba(196, 160, 90, 0.5),
    0 8px 28px rgba(120, 92, 60, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cta-button:hover::before {
  opacity: 1;
}

.site-footer {
  background: linear-gradient(180deg, 
    rgba(246, 241, 232, 0.3) 0%, 
    rgba(239, 230, 214, 0.5) 100%);
  border-top: 1px solid rgba(212, 181, 122, 0.2);
  padding: 60px 8vw 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--champagne-warm);
  text-transform: uppercase;
}

.footer-logo img {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(63%) sepia(19%) saturate(809%) hue-rotate(354deg) brightness(89%) contrast(85%);
}

.footer-tagline {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin: 0;
}

.footer-links,
.footer-social {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-links a,
.footer-social a {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.footer-links a::after,
.footer-social a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--champagne-warm);
}

.footer-links a:hover::after,
.footer-social a:hover::after {
  transform: scaleX(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 181, 122, 0.15);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  margin: 0;
}

.footer-location {
  font-weight: 300;
  color: var(--text-soft);
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

/* Remove old footer styles - replaced with new professional footer above */

@media (max-width: 720px) {
  .site-header {
    padding: 20px 6vw;
    opacity: 1;
    background: rgba(246, 241, 232, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 8px rgba(120, 92, 60, 0.08);
  }

  .nav-logo {
    font-size: 1rem;
    letter-spacing: 0.22em;
  }

  .mobile-menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 0 6vw;
    min-height: 85vh;
  }

  .hero::after {
    height: 100px;
  }

  .hero-bottle {
    width: min(280px, 80vw);
    height: min(400px, 65vh);
  }

  .logo {
    font-size: clamp(2.5rem, 9vw, 3.8rem);
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    margin-bottom: 12px;
  }

  .subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .korean {
    font-size: 0.85rem;
    margin-top: 8px;
  }

  .scroll-hint {
    bottom: 32px;
    font-size: 0.68rem;
    gap: 8px;
  }

  .story-split {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 6vw;
  }

  .story-copy,
  .story-image {
    z-index: 1;
    max-width: 100%;
  }

  .story-copy {
    text-align: center;
  }

  .statement {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    margin-bottom: 32px;
    line-height: 1.4;
  }

  .story-meta {
    gap: 24px;
  }

  .story-meta p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .story-image {
    min-height: auto;
  }

  .image-frame {
    max-width: 100%;
    padding: 24px;
    margin: 0 auto;
  }

  .cinematic {
    min-height: 60vh;
    padding: 100px 5vw;
    margin: 60px 0;
  }

  .cinematic-content {
    gap: 24px;
  }

  .cinematic-line {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 6vw;
    text-align: center;
  }

  .showcase-image {
    padding: 20px;
    margin: 0 auto;
    max-width: 100%;
  }

  .showcase-product-image {
    max-height: 400px;
    width: auto;
  }

  .showcase-info {
    max-width: 100%;
    margin: 0 auto;
  }

  .product-name {
    font-size: clamp(2.2rem, 8vw, 3rem);
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    margin-bottom: 12px;
  }

  .product-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
  }

  .scent-notes-compact {
    gap: 18px;
    margin-top: 32px;
  }

  .note-line {
    font-size: 0.85rem;
    gap: 12px;
    justify-content: center;
  }

  .note-label {
    font-size: 0.72rem;
    min-width: 50px;
  }

  .notes {
    padding: 60px 6vw;
  }

  .section-header {
    text-align: center;
    margin: 0 auto 40px;
  }

  .section-header h2 {
    font-size: clamp(2rem, 7vw, 2.8rem);
    margin-bottom: 16px;
  }

  .section-header p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .notes-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 500px;
    margin: 0 auto;
  }

  .note-card {
    width: 100%;
  }

  .note-card-content {
    padding: 28px 24px;
  }

  .note-card-title {
    font-size: 1.3rem;
  }

  .note-card-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .collection {
    padding: 60px 6vw;
  }

  .collection-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .collection-grid::-webkit-scrollbar {
    display: none;
  }

  .collection-item {
    flex: 0 0 70vw;
    max-width: 300px;
    scroll-snap-align: center;
  }

  .collection-nav {
    display: flex;
    width: 44px;
    height: 44px;
  }

  .collection-nav-prev {
    left: 4vw;
  }

  .collection-nav-next {
    right: 4vw;
  }

  .cinematic {
    min-height: 50vh;
    padding: 60px 6vw;
    margin: 40px 0;
  }

  .cinematic-content {
    gap: 20px;
  }

  .cinematic-line {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    line-height: 1.5;
  }

  section {
    padding: 50px 6vw;
  }

  .gallery {
    padding: 60px 6vw 80px;
  }

  .gallery-grid {
    gap: 16px;
    padding-left: 6vw;
    padding-right: 6vw;
    margin-left: -6vw;
    margin-right: -6vw;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
  }

  .gallery-item {
    flex: 0 0 72vw;
    max-width: 340px;
    padding: 18px;
    border-radius: 8px;
    scroll-snap-align: center;
  }

  .gallery-item img {
    border-radius: 6px;
  }

  .cta-section {
    padding: 60px 6vw;
  }

  .cta-heading {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }

  .cta-subheading {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }

  .cta-incentive {
    font-size: 0.92rem;
    max-width: 100%;
    line-height: 1.7;
  }

  .email-capture {
    max-width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .email-capture input[type="email"] {
    font-size: 0.9rem;
    padding: 16px 18px;
    width: 100%;
  }

  .cta-button {
    padding: 16px 40px;
    font-size: 0.85rem;
    width: 100%;
    max-width: 100%;
  }

  /* Touch-friendly button improvements */
  .filter-btn,
  .btn-primary,
  .btn-submit,
  .cta-button {
    min-height: 48px;
    touch-action: manipulation;
  }

  /* Improve touch targets for links */
  .footer-links a,
  .footer-social a,
  .mobile-nav-link {
    padding: 8px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .footer-links {
    gap: 24px;
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    font-size: 1rem;
  }

  .footer-location {
    font-size: 0.7rem;
  }

  .site-footer {
    padding: 48px 6vw 36px;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 28px;
    text-align: center;
    align-items: center;
  }

  .footer-brand {
    margin-bottom: 8px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* Multi-page Styles */

/* Active navigation state */
.nav a.active,
.mobile-nav-link.active {
  color: var(--champagne-warm);
  font-weight: 500;
}

/* Page Content Layout */
.page-content {
  padding-top: 100px;
}

/* Page Hero */
.page-hero {
  padding: 80px 8vw 50px;
  text-align: center;
  background: linear-gradient(180deg, 
    rgba(246, 241, 232, 0.3) 0%, 
    rgba(246, 241, 232, 0) 100%);
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.page-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

/* Shop Page Styles */
.shop-section {
  padding: 50px 8vw 60px;
}

.shop-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(212, 181, 122, 0.3);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 24px;
  text-transform: uppercase;
}

.filter-btn:hover {
  border-color: var(--champagne);
  color: var(--champagne-warm);
  background: rgba(212, 181, 122, 0.08);
}

.filter-btn.active {
  background: linear-gradient(135deg, rgba(212, 181, 122, 0.15), rgba(196, 160, 90, 0.1));
  border-color: var(--champagne);
  color: var(--champagne-warm);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(246, 241, 232, 0.6), rgba(239, 230, 214, 0.6));
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 181, 122, 0.2);
}

.product-card:hover .product-image-wrapper {
  box-shadow: var(--shadow-warm);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(95, 83, 68, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 0;
}

.btn-view {
  display: none;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 4px;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
}

.product-type {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}

.product-notes {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  font-style: italic;
}

.product-price {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--champagne-warm);
  margin-top: 4px;
}

/* Hero Image Section for About Page */
.hero-image-section {
  padding: 60px 0;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-image-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-image-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8vw;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.exhibition-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 
    0 20px 60px rgba(120, 92, 60, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(212, 181, 122, 0.15);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-section:hover .exhibition-image {
  transform: scale(1.02);
}

/* About Page Styles */
.about-intro {
  padding: 50px 8vw;
  background: linear-gradient(180deg, 
    rgba(246, 241, 232, 0) 0%, 
    rgba(239, 230, 214, 0.3) 50%, 
    rgba(246, 241, 232, 0) 100%);
}

.about-text-block {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-content p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--text);
}

.about-philosophy {
  padding: 60px 8vw;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.philosophy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 36px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(239, 230, 214, 0.3));
  border: 1px solid rgba(212, 181, 122, 0.2);
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-warm);
}

.philosophy-icon {
  filter: drop-shadow(0 4px 8px rgba(196, 160, 90, 0.3));
}

.philosophy-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
}

.philosophy-card p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--text-soft);
}

/* Store Gallery Section */
.store-gallery {
  padding: 80px 8vw;
  background: linear-gradient(180deg, 
    rgba(246, 241, 232, 0.3) 0%, 
    rgba(239, 230, 214, 0.2) 50%, 
    rgba(246, 241, 232, 0) 100%);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.store-gallery.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  margin-top: 12px;
  line-height: 1.6;
}

.store-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.store-gallery-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.store-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(246, 241, 232, 0.8), rgba(239, 230, 214, 0.6));
  box-shadow: 
    0 12px 40px rgba(120, 92, 60, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(212, 181, 122, 0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-gallery-item:hover .store-image-wrapper {
  box-shadow: 
    0 20px 60px rgba(120, 92, 60, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-4px);
  border-color: rgba(212, 181, 122, 0.4);
}

.store-gallery-item:hover .store-image-wrapper img {
  transform: scale(1.05);
}

.store-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.store-gallery-item:hover .store-overlay {
  opacity: 1;
}

.store-location-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 20px;
  background: rgba(246, 241, 232, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 181, 122, 0.3);
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne-warm);
  box-shadow: 0 4px 12px rgba(120, 92, 60, 0.15);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.store-gallery-item:hover .store-location-tag {
  transform: translateY(0);
  opacity: 1;
}

.store-caption {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.store-caption h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--champagne);
}

.store-caption p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  line-height: 1.6;
}

.about-locations {
  padding: 60px 8vw;
  background: linear-gradient(180deg, 
    rgba(246, 241, 232, 0) 0%, 
    rgba(239, 230, 214, 0.3) 50%, 
    rgba(246, 241, 232, 0) 100%);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.location-card {
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(239, 230, 214, 0.4));
  border: 1px solid rgba(212, 181, 122, 0.25);
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

.location-card:hover {
  box-shadow: var(--shadow-warm);
  transform: translateY(-4px);
}

.location-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.location-address,
.location-hours {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  margin-bottom: 16px;
}

/* Contact Page Styles */
.contact-section {
  padding: 50px 8vw 60px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-intro {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-method h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-method p,
.contact-method a {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method a:hover {
  color: var(--champagne-warm);
}

.contact-note {
  font-style: italic;
  font-size: 0.88rem;
}

.contact-social h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 24px;
}

.social-link {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--champagne-warm);
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(239, 230, 214, 0.3));
  padding: 36px;
  border: 1px solid rgba(212, 181, 122, 0.25);
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 14px 18px;
  background: rgba(246, 241, 232, 0.6);
  border: 1px solid rgba(212, 181, 122, 0.3);
  border-radius: 2px;
  color: var(--text);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--champagne);
  background: rgba(246, 241, 232, 0.9);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--champagne-soft), var(--champagne));
  border: 1px solid var(--champagne-warm);
  color: var(--ivory);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border-radius: 2px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(196, 160, 90, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--champagne), var(--champagne-warm));
  box-shadow: 0 6px 16px rgba(196, 160, 90, 0.4);
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Locations Map Section */
.locations-map {
  padding: 60px 8vw;
  background: linear-gradient(180deg, 
    rgba(246, 241, 232, 0.3) 0%, 
    rgba(246, 241, 232, 0) 100%);
}

.location-card.featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(239, 230, 214, 0.5));
}

.location-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.location-badge {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--champagne-soft), var(--champagne));
  color: var(--ivory);
  border-radius: 12px;
  text-transform: uppercase;
}

.location-link {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--champagne-warm);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 12px;
  display: inline-block;
}

.location-link:hover {
  color: var(--champagne);
}

/* CTA Section */
.cta-section {
  padding: 60px 8vw;
  text-align: center;
  background: linear-gradient(180deg, 
    rgba(239, 230, 214, 0.3) 0%, 
    rgba(246, 241, 232, 0.5) 50%, 
    rgba(239, 230, 214, 0.3) 100%);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cta-text {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--champagne-soft), var(--champagne));
  border: 1px solid var(--champagne-warm);
  color: var(--ivory);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(196, 160, 90, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--champagne), var(--champagne-warm));
  box-shadow: 0 6px 16px rgba(196, 160, 90, 0.4);
  transform: translateY(-2px);
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) {
  .site-header {
    padding: 28px 6vw;
  }

  .hero-bottle {
    width: min(380px, 60vw);
    height: min(520px, 65vh);
  }

  .story-split {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 70px 6vw;
  }

  .story-copy {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .story-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 70px 6vw;
  }

  .showcase-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .notes-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
  }

  .collection-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Instagram Slider Section */
.instagram-slider {
  padding: 80px 8vw;
  background: linear-gradient(180deg, 
    rgba(246, 241, 232, 0) 0%, 
    rgba(239, 230, 214, 0.3) 50%, 
    rgba(246, 241, 232, 0) 100%);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.instagram-slider.visible {
  opacity: 1;
  transform: translateY(0);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--champagne-warm);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border: 1px solid rgba(212, 181, 122, 0.3);
  border-radius: 20px;
  background: rgba(246, 241, 232, 0.4);
}

.instagram-link:hover {
  color: var(--champagne);
  border-color: var(--champagne);
  background: rgba(246, 241, 232, 0.7);
  transform: translateY(-2px);
}

.instagram-link svg {
  width: 20px;
  height: 20px;
}

.slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px;
}

.slider-item {
  flex: 0 0 calc((100% - 64px) / 5);
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(246, 241, 232, 0.8), rgba(239, 230, 214, 0.6));
  box-shadow: 0 8px 24px rgba(120, 92, 60, 0.12);
  border: 1px solid rgba(212, 181, 122, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
}

.slider-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(120, 92, 60, 0.2);
  border-color: rgba(212, 181, 122, 0.4);
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slider-item:hover img {
  transform: scale(1.1);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(246, 241, 232, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 181, 122, 0.3);
  color: var(--champagne);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(120, 92, 60, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(246, 241, 232, 1);
  border-color: rgba(212, 181, 122, 0.5);
  box-shadow: 0 6px 16px rgba(120, 92, 60, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-prev {
  left: -24px;
}

.slider-next {
  right: -24px;
}

.slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--champagne);
  stroke-width: 2;
}

/* Mobile Responsive Styles for New Pages */
@media (max-width: 720px) {
  .page-content {
    padding-top: 80px;
  }

  .page-hero {
    padding: 60px 6vw 50px;
  }

  .page-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }

  .page-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-image-section {
    padding: 40px 0;
  }

  .hero-image-container {
    padding: 0 6vw;
    aspect-ratio: 4/3;
  }

  .shop-section {
    padding: 50px 6vw 70px;
  }

  .shop-filters {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .filter-btn {
    font-size: 0.82rem;
    padding: 12px 24px;
    flex: 0 1 auto;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 420px;
    margin: 0 auto;
  }

  .product-card {
    max-width: 100%;
  }

  .about-intro,
  .about-philosophy,
  .store-gallery,
  .about-locations {
    padding: 50px 6vw;
  }

  .about-intro {
    text-align: center;
  }

  .store-gallery {
    padding: 60px 6vw;
  }

  .gallery-header {
    margin-bottom: 48px;
  }

  .store-gallery-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 500px;
    margin: 0 auto;
  }

  .store-image-wrapper {
    aspect-ratio: 3/4;
  }

  .store-location-tag {
    font-size: 0.7rem;
    padding: 6px 16px;
    top: 16px;
    right: 16px;
  }

  .store-caption h3 {
    font-size: 1.4rem;
  }

  .store-caption p {
    font-size: 0.88rem;
  }

  .intro-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 480px;
    margin: 0 auto;
  }

  .philosophy-card {
    padding: 32px 24px;
    text-align: center;
  }

  .philosophy-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
  }

  .philosophy-title {
    font-size: 1.3rem;
  }

  .philosophy-description {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 480px;
    margin: 0 auto;
  }

  .location-card {
    padding: 28px 24px;
    text-align: center;
  }

  .contact-section {
    padding: 50px 6vw 70px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .contact-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .contact-methods {
    gap: 20px;
    margin-top: 32px;
  }

  .contact-method {
    padding: 20px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .form-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 14px 16px;
  }

  .locations-map {
    padding: 50px 6vw;
  }

  .location-card {
    padding: 24px 20px;
  }

  .cta-section {
    padding: 60px 6vw;
  }

  .cta-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 20px;
  }

  .cta-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .btn-primary,
  .btn-submit {
    width: 100%;
    max-width: 100%;
    padding: 16px 32px;
    font-size: 0.88rem;
  }

  /* Instagram Slider Mobile Styles */
  .instagram-slider {
    padding: 60px 6vw;
  }

  .slider-header {
    margin-bottom: 32px;
  }

  .slider-header .section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .instagram-link {
    font-size: 0.9rem;
    gap: 6px;
  }

  .instagram-link svg {
    width: 18px;
    height: 18px;
  }

  .slider-container {
    padding: 0 48px;
  }

  .slider-track {
    gap: 16px;
  }

  .slider-item {
    flex: 0 0 calc((100% - 16px) / 1.5);
    min-width: calc((100% - 16px) / 1.5);
  }

  .slider-btn {
    width: 44px;
    height: 44px;
  }

  .slider-prev {
    left: 2vw;
  }

  .slider-next {
    right: 2vw;
  }

  .slider-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* Extra Small Screens - Below 400px */
@media (max-width: 400px) {
  .site-header {
    padding: 18px 5vw;
  }

  .nav-logo {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 80vh;
  }

  .logo {
    font-size: clamp(2.2rem, 8vw, 3rem);
    letter-spacing: 0.24em;
    text-indent: 0.24em;
  }

  .subtitle {
    font-size: 0.7rem;
  }

  .hero-bottle {
    width: min(260px, 75vw);
    height: min(380px, 60vh);
  }

  .statement {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }

  .product-name {
    font-size: clamp(1.9rem, 7vw, 2.5rem);
  }

  .note-card-title {
    font-size: 1.2rem;
  }

  .collection-item {
    flex: 0 0 80vw;
  }

  .page-title {
    font-size: clamp(2rem, 7.5vw, 2.8rem);
  }

  .mobile-nav-link {
    font-size: 1.9rem;
  }
}
