/* ===================================================
   atelier chritto — Master Styling
   Architecture: High Sizzle, Grand Visuals & Crystal Clear Typography
   =================================================== */

/* --- 1. CSS Reset & Variables --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-white: #ffffff;
  --c-cream: #faf7f2;
  --c-cream-soft: #f4efe6;
  --c-dark: #161413;
  --c-charcoal: #221f1d;
  --c-brown-rich: #7a461b;
  --c-gold: #c6a87c;
  --c-gold-bright: #dfbc8a;
  --c-text-main: #24201e;
  --c-text-muted: #5c544e;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Shippori Mincho', serif;
  
  --spacing-section: 8rem;
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--c-text-main);
  background-color: var(--c-cream);
  line-height: 2.1;
  overflow-x: hidden;
  letter-spacing: 0.05em;
}

/* Washi Paper Subtle Noise */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.035'/%3E%3C/svg%3E");
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.parallax-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-cinematic);
}

.main-visual-box:hover .editorial-main-video {
  transform: scale(1.05);
}

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

/* --- 2. Container & Layout --- */
.container {
  width: 90%;
  max-width: 1340px;
  margin: 0 auto;
}

.relative { position: relative; }
.z-content { z-index: 2; }
.section { 
  padding: var(--spacing-section) 0; 
  scroll-margin-top: 110px;
}
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3.5rem; }

.dark-section {
  background-color: var(--c-dark);
  color: var(--c-cream);
  position: relative;
}

.light-section {
  background-color: var(--c-cream);
  color: var(--c-text-main);
}

/* --- 3. Section Headers & Typography --- */
.section-title-center {
  text-align: center;
  margin-bottom: 5rem;
}

.section-tag-gold {
  font-family: var(--font-heading);
  color: var(--c-gold-bright);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.section-tag-dark {
  font-family: var(--font-heading);
  color: var(--c-brown-rich);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.section-heading-giant {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--c-dark);
  line-height: 1;
  text-transform: uppercase;
}

.section-sub-jp {
  font-size: 1.25rem;
  color: var(--c-text-muted);
  margin-top: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.section-title-cinematic {
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 2rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

/* --- 4. Interactive Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 3rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn:active {
  transform: scale(0.96);
}

.btn-gold {
  background: var(--c-gold);
  color: var(--c-white);
  border: none;
  box-shadow: 0 12px 35px rgba(198, 168, 124, 0.45);
}

.btn-gold:hover {
  background: var(--c-dark);
  color: var(--c-white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.btn-dark-outline {
  border: 1.5px solid var(--c-dark);
  color: var(--c-dark);
  background: transparent;
}

.btn-dark-outline:hover {
  background: var(--c-dark);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  padding: 1.45rem 3.5rem;
  font-size: 1.05rem;
  width: 100%;
  max-width: 540px;
}

/* Button Shimmer */
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 20%, rgba(255, 255, 255, 0.4) 50%, transparent 80%);
  transform: rotate(30deg) translateX(-100%);
  animation: btnShimmerAnim 5s infinite var(--ease-cinematic);
  pointer-events: none;
}

@keyframes btnShimmerAnim {
  0%, 60% { transform: rotate(30deg) translateX(-100%); }
  100% { transform: rotate(30deg) translateX(100%); }
}

/* --- 5. Test Banner & Header --- */
.test-banner {
  background-color: #ff3333;
  color: white;
  text-align: center;
  padding: 11px;
  font-weight: bold;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.scroll-sentinel {
  position: absolute;
  top: 100vh;
  height: 1px;
  width: 1px;
  visibility: hidden;
}

.header {
  position: fixed;
  top: 42px;
  left: 0;
  width: 100%;
  padding: 1.8rem 0;
  z-index: 100;
  transition: all 0.35s var(--ease-cinematic);
}

.header.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(198, 168, 124, 0.25);
}

.header-inner {
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-link {
  display: flex;
  align-items: center;
  color: var(--c-cream);
}

.header.scrolled .logo-link {
  color: var(--c-dark);
}

.logo-test {
  font-size: 0.9rem;
  color: var(--c-gold);
  font-weight: 500;
  margin-right: 0.3rem;
}

.logo-text {
  background: linear-gradient(135deg, #ffffff 40%, #c6a87c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header.scrolled .logo-text {
  background: none;
  -webkit-text-fill-color: var(--c-dark);
  color: var(--c-dark);
}

.nav {
  display: flex;
  gap: 2.8rem;
}

.nav a {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--c-cream);
  position: relative;
}

.header.scrolled .nav a {
  color: var(--c-dark);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-cinematic);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-btn {
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cream);
  transition: all 0.3s;
}

.header.scrolled .header-btn {
  color: var(--c-dark);
}

.header-btn:hover {
  background: var(--c-gold);
  color: var(--c-white) !important;
  border-color: var(--c-gold);
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--c-cream);
}

.header.scrolled .hamburger-btn {
  color: var(--c-dark);
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger-icon::before { top: -7px; }
.hamburger-icon::after { bottom: 7px; }

.hamburger-btn.is-active .hamburger-icon {
  background-color: transparent !important;
}

.hamburger-btn.is-active .hamburger-icon::before {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--c-cream) !important;
}

.hamburger-btn.is-active .hamburger-icon::after {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--c-cream) !important;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(20, 18, 17, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--c-cream);
  text-transform: uppercase;
}

.mobile-insta-btn {
  color: var(--c-gold) !important;
  font-size: 1rem !important;
  margin-top: 1rem;
  border: 1px solid var(--c-gold);
  padding: 0.6rem 1.6rem;
  border-radius: 25px;
}

/* --- 6. ZONE 1: HERO SECTION --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--c-dark);
}

.hero-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(20,18,17,0.96) 0%, rgba(20,18,17,0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-white);
  padding-top: 4rem;
}

.hero-badge-wrap {
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-dark);
  padding: 6px 18px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(198, 168, 124, 0.4);
}

.hero-lead {
  display: block;
  font-family: var(--font-body);
  font-size: 1.05rem;
  letter-spacing: 0.25em;
  color: rgba(250, 247, 242, 0.9);
  margin-top: 1.2rem;
}

.hero-brand-block {
  margin: 1.5rem 0 2rem;
}

.hero-brand-name {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-cream);
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 10%, #f7ecd9 50%, #c6a87c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.hero-brand-ruby {
  display: block;
  font-family: var(--font-body);
  font-size: 1.15rem;
  letter-spacing: 0.35em;
  color: var(--c-gold);
  font-weight: 500;
  margin-top: 0.8rem;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--c-gold);
  margin: 2.2rem auto;
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-body);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.18em;
  margin-bottom: 2.5rem;
}

.hero-title .indent {
  margin-left: 10%;
  color: var(--c-cream);
}

.hero-sensory-copy {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 2.2;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 5;
  color: var(--c-cream);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover { opacity: 1; }

.scroll-text {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--c-gold);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(198, 168, 124, 0.25);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--c-gold), transparent);
  animation: scrollDownAnim 2.2s var(--ease-cinematic) infinite;
}

@keyframes scrollDownAnim {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* --- 7. ZONE 1: PHILOSOPHY & CRAFT (Dark & Pure White) --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.sensory-statement {
  margin-bottom: 3.5rem;
}

.statement-lead {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--c-gold-bright);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.statement-body {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 2.3;
}

.chef-card {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.8rem;
  border: 1px solid rgba(198, 168, 124, 0.35);
  border-radius: 4px;
}

.chef-avatar {
  flex: 0 0 120px;
}

.chef-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold);
}

.chef-meta .chef-role {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--c-gold-bright);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.chef-meta .chef-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--c-cream);
  margin: 0.2rem 0 0.8rem;
}

.chef-meta .chef-motto {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
}

.visual-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.visual-caption {
  position: absolute;
  bottom: 2rem;
  left: 0;
  background: var(--c-gold);
  color: var(--c-dark);
  font-weight: 700;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* --- 8. ZONE 1: LINEUP (特大シズルグラビア ＆ エディトリアル重なり) --- */
.lineup-items {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
  margin-top: 4rem;
}

.lineup-editorial-card {
  display: flex;
  align-items: center;
  position: relative;
}

.lineup-editorial-card.reverse {
  flex-direction: row-reverse;
}

/* Image Column (58% width) */
.editorial-image-col {
  flex: 0 0 58%;
  position: relative;
}

.main-visual-box {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16/10;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.editorial-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-cinematic);
}

.main-visual-box:hover .editorial-main-img {
  transform: scale(1.05);
}

.editorial-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(20, 18, 17, 0.88);
  backdrop-filter: blur(10px);
  color: var(--c-gold-bright);
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
}

.sub-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.sub-visual-grid.single {
  grid-template-columns: 1fr;
}

.sub-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16/10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.sub-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-cinematic);
}

.sub-img-box:hover img {
  transform: scale(1.08);
}

.sub-img-label {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  background: rgba(20, 18, 17, 0.85);
  color: var(--c-white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 2px;
}

/* Text Column (Overlapping Box) */
.editorial-text-col {
  flex: 0 0 48%;
  margin-left: -6%;
  background: var(--c-white);
  padding: 4.5rem 3.8rem;
  border-radius: 4px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(198, 168, 124, 0.35);
  z-index: 2;
}

.lineup-editorial-card.reverse .editorial-text-col {
  margin-left: 0;
  margin-right: -6%;
}

.item-tag-gold {
  font-family: var(--font-heading);
  color: var(--c-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.editorial-item-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--c-dark);
  font-weight: 500;
  line-height: 1.3;
}

.editorial-lead-phrase {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-brown-rich);
  line-height: 1.8;
  margin: 1.2rem 0 1.5rem;
}

.editorial-body-text p {
  color: var(--c-text-main);
  font-size: 1.05rem;
  line-height: 2.2;
  margin-bottom: 2rem;
}

.flavor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.flavor-chips .chip {
  background: #faf8f5;
  border: 1px solid rgba(198, 168, 124, 0.5);
  color: var(--c-brown-rich);
  padding: 7px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 20px;
}

/* --- 9. ZONE 2: GIFT BOX & PRICING (Clean Warm Styling) --- */
.craft-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0 5rem;
}

.badge-card {
  background: var(--c-white);
  border: 1px solid rgba(198, 168, 124, 0.35);
  padding: 2.8rem 2rem;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.badge-icon {
  color: var(--c-gold);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.badge-card h4 {
  font-size: 1.3rem;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.badge-card p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

.box-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

.tier-card {
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 4rem 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-tier {
  border: 2px solid var(--c-gold);
  box-shadow: 0 20px 50px rgba(198, 168, 124, 0.15);
}

.featured-badge {
  position: absolute;
  top: -14px;
  right: 2rem;
  background: var(--c-gold);
  color: var(--c-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 16px;
  border-radius: 20px;
}

.tier-target {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--c-brown-rich);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.tier-name {
  font-size: 2.2rem;
  color: var(--c-dark);
  margin: 0.4rem 0 1.5rem;
  font-weight: 500;
}

.tier-price {
  margin-bottom: 2rem;
}

.price-num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--c-brown-rich);
}

.price-tax {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-left: 0.5rem;
}

.tier-list {
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.tier-list li {
  padding: 0.7rem 0;
  color: var(--c-text-main);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
  font-size: 1.1rem;
}

.tier-note {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.8;
}

.product-specs-card {
  background: var(--c-white);
  border: 1px solid rgba(198, 168, 124, 0.3);
  padding: 2.5rem 3rem;
  border-radius: 4px;
  margin-bottom: 4rem;
}

.spec-row {
  display: flex;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.spec-row:last-child { border-bottom: none; }

.spec-label {
  flex: 0 0 140px;
  font-weight: 600;
  color: var(--c-brown-rich);
  font-size: 1.05rem;
}

.spec-value {
  flex: 1;
  color: var(--c-text-muted);
  font-size: 1.05rem;
}

/* --- 10. ZONE 2: VOICES --- */
.voice-hero-frame {
  max-width: 880px;
  margin: 4rem auto 0;
  padding: 4.5rem 3.5rem;
  background: var(--c-white);
  border: 1px dashed rgba(198, 168, 124, 0.6);
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.voice-main-text {
  font-size: 1.35rem;
  color: var(--c-brown-rich);
  line-height: 2.3;
  font-weight: 500;
  margin-bottom: 2rem;
}

.voice-author-tag {
  font-size: 1rem;
  color: var(--c-gold);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.voice-sub-note {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-top: 1rem;
}

/* --- 11. ZONE 3: SHOPPING GUIDE & CTA (Clean Warm & High Contrast) --- */
.guide-section {
  background: var(--c-cream-soft);
  border-top: 1px solid rgba(198, 168, 124, 0.25);
  border-bottom: 1px solid rgba(198, 168, 124, 0.25);
}

.guide-box {
  background: var(--c-white);
  padding: 5rem 4rem;
  border-radius: 4px;
  border: 1px solid rgba(198, 168, 124, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.guide-heading {
  font-size: 3.2rem;
  color: var(--c-dark);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.guide-text-box {
  max-width: 840px;
  margin: 0 auto;
}

.guide-highlight {
  font-size: 1.4rem;
  color: var(--c-brown-rich);
  line-height: 2;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.guide-body {
  color: var(--c-text-main);
  font-size: 1.15rem;
  line-height: 2.3;
}

.sale-schedule-badge {
  margin-top: 2.5rem;
  display: inline-block;
  background: #faf8f5;
  border: 1.5px solid var(--c-gold);
  color: var(--c-brown-rich);
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-actions-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.delivery-card {
  max-width: 820px;
  margin: 4.5rem auto 0;
  background: #faf8f5;
  border: 1px solid rgba(198, 168, 124, 0.4);
  padding: 2.8rem;
  border-radius: 4px;
}

.delivery-card h4 {
  font-size: 1.25rem;
  color: var(--c-brown-rich);
  margin-bottom: 1.2rem;
}

.delivery-pills {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.8rem 0;
}

.delivery-pills span {
  background: var(--c-white);
  border: 1px solid rgba(198, 168, 124, 0.4);
  color: var(--c-dark);
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 20px;
}

.delivery-sub {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.9;
}

/* --- 12. ZONE 3: FAQ ACCORDION --- */
.faq-accordion {
  max-width: 880px;
  margin: 4rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-dark);
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 0.6rem 0;
  transition: color 0.3s ease;
}

.faq-q:hover {
  color: var(--c-brown-rich);
}

.faq-q span:first-child {
  color: var(--c-gold);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}

.faq-icon {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--c-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding-left: 2.2rem;
  padding-top: 1rem;
  color: var(--c-text-main);
  line-height: 2;
  display: none;
  font-size: 1.05rem;
}

.faq-item.active .faq-a {
  display: block;
  animation: fadeInFAQ 0.3s ease-out;
}

@keyframes fadeInFAQ {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- 13. FOOTER & MODALS --- */
.footer {
  background-color: var(--c-dark);
  color: var(--c-cream);
  padding: 6rem 0 10rem;
  position: relative;
  z-index: 10;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.footer-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 2;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(198, 168, 124, 0.4);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  color: var(--c-cream);
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.social-btn:hover {
  background: var(--c-gold);
  color: var(--c-dark);
}

.footer-bottom {
  text-align: center;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.legal-links a:hover {
  color: var(--c-white);
}

.legal-divider {
  color: rgba(255, 255, 255, 0.4);
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 18, 17, 0.8);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.is-open {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

.modal-card {
  background: var(--c-white);
  color: var(--c-text-main);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 3.5rem 3rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(198, 168, 124, 0.4);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--c-text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover { color: var(--c-dark); }

.modal-heading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--c-gold);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
}

.legal-table th, .legal-table td {
  padding: 1.1rem;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  width: 32%;
  font-weight: 600;
  color: var(--c-dark);
  background: #faf8f5;
  font-size: 0.9rem;
}

.legal-table td {
  font-size: 0.95rem;
  line-height: 1.9;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* Floating Action Button (Instagram Gradient) */
.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 75px;
  height: 75px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.45);
  z-index: 99;
  text-align: center;
  transition: all 0.35s var(--ease-cinematic);
}

.floating-btn:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 15px 40px rgba(220, 39, 67, 0.65);
}

.floating-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 2px;
}

/* --- 14. Responsive Media Queries --- */
@media (max-width: 1024px) {
  :root {
    --spacing-section: 6rem;
  }
  .section-heading-giant { font-size: 3.8rem; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 4rem; }
  .lineup-editorial-card, .lineup-editorial-card.reverse {
    flex-direction: column;
  }
  .editorial-image-col { width: 100%; flex: auto; }
  .editorial-text-col, .lineup-editorial-card.reverse .editorial-text-col {
    width: 100%;
    flex: auto;
    margin: -3rem 0 0 0;
    padding: 3.5rem 2.5rem;
  }
  .box-tier-grid { grid-template-columns: 1fr; }
  .craft-badges { grid-template-columns: 1fr; gap: 1.5rem; }
  .guide-box { padding: 3.5rem 2rem; }
}

@media (max-width: 768px) {
  :root {
    --spacing-section: 4.5rem;
  }
  .header { padding: 1rem 0; }
  .nav { display: none; }
  .hamburger-btn { display: flex; }
  .logo { font-size: 1.3rem; }
  .hero-brand-name { font-size: 3.2rem; letter-spacing: 0.1em; }
  .hero-brand-ruby { font-size: 0.95rem; letter-spacing: 0.2em; }
  .hero-title { font-size: 2.5rem; }
  .hero-title .indent { margin-left: 0; }
  .section-heading-giant { font-size: 2.8rem; }
  .editorial-text-col, .lineup-editorial-card.reverse .editorial-text-col {
    margin-top: 1.5rem;
    padding: 2.5rem 1.8rem;
  }
  .editorial-item-title { font-size: 1.8rem; }
  .editorial-lead-phrase { font-size: 1.15rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .floating-btn { width: 60px; height: 60px; bottom: 20px; right: 20px; }
  .btn { padding: 1.1rem 1.8rem; font-size: 0.9rem; width: 100%; }
  .section { scroll-margin-top: 85px; }
}
