:root {
  --bg-cream: #F9F6F0;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #555555;
  --gold: #B8860B;
  --gold-light: rgba(184, 134, 11, 0.2);
  --border-color: rgba(26, 26, 26, 0.1);

  --spacing-lg: 12vh;
  --spacing-xl: 18vh;
  --content-w: 1200px;
}

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

body {
  background: var(--bg-cream);
  color: var(--text-dark);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Base */
.cinzel-title, h1, h2, h3, .section-title {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
}

.body-classic {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 400;
}

.sub-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease;
}

.loader-text {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.2em;
  color: var(--text-dark);
}
.loader-text span {
  font-size: 1rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
  font-family: 'Montserrat', sans-serif;
}

/* Navigation */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 4vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 100;
  pointer-events: none;
}

.top-nav > * {
  pointer-events: auto;
}

.back-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
  padding: 0.5rem;
}

.back-link:hover {
  opacity: 0.5;
}

.brand {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  text-align: right;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}

/* Layout */
#smooth-wrapper {
  overflow: hidden;
  width: 100%;
}
#smooth-content {
  width: 100%;
  will-change: transform;
}


/* Editorial Hero */
.editorial-hero {
  padding: 15vh 5vw 10vh 5vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: var(--content-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6vw;
}

.hero-visual {
  flex: 1;
  position: relative;
}

.video-frame {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.frame-border {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: 1;
}

.hero-content {
  flex: 1;
  padding-right: 2vw;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 4rem;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.scroll-cue span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.vertical-line {
  width: 1px;
  height: 60px;
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
}


/* Section Defaults */
section {
  padding: var(--spacing-xl) 5vw;
}
.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}


/* The Epic Narrative */
.epic-narrative {
  background: var(--bg-white);
  text-align: center;
}

.narrative-container {
  max-width: 800px;
  margin: 0 auto;
}


/* Detailed Blends Showcase */
.blends-showcase {
  background: var(--bg-cream);
}

.showcase-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.blend-article {
  display: flex;
  align-items: center;
  max-width: var(--content-w);
  margin: 0 auto var(--spacing-xl) auto;
  gap: 8vw;
}

.blend-article.reverse {
  flex-direction: row-reverse;
}

.blend-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.blend-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: var(--gold-light);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.product-box {
  width: 100%;
  max-width: 450px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15));
}

.blend-info {
  flex: 1;
}

.blend-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.blend-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.tasting-notes {
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.tasting-notes .note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.tasting-notes .note strong {
  color: var(--text-dark);
}

.brewing-guide {
  margin-top: 2rem;
}

.guide-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.brewing-guide p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* Craftsmanship */
.craftsmanship-section {
  background: var(--bg-white);
  display: flex;
  align-items: center;
  max-width: 100%;
  gap: 5vw;
}

.craft-content {
  flex: 1;
  padding-right: 4vw;
  max-width: 600px;
  margin-left: auto; /* Push to align with standard grid */
}

.craft-images {
  flex: 1;
  display: flex;
  gap: 2rem;
  position: relative;
}

.teabag-img {
  width: 40%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}
.teabag-img:nth-child(2) {
  margin-top: 10vh;
}

.grid-teabags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.grid-teabags .teabag-img {
  width: 100%;
}
.grid-teabags .teabag-img:nth-child(even) {
  margin-top: 5vh;
}

/* Packaging Section */
.package-section {
  background: var(--bg-cream);
  text-align: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: var(--content-w);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .package-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.package-item {
  display: flex;
  justify-content: center;
}

.package-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}


/* Artistry Gallery */
.gallery-section {
  text-align: center;
}

.gallery-header {
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2rem;
  max-width: var(--content-w);
  margin: 0 auto;
}

.grid-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border-color);
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
}


/* Footer */
.editorial-footer {
  padding: var(--spacing-xl) 5vw 2rem 5vw;
  background: var(--bg-white);
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer-inner {
  margin-bottom: var(--spacing-lg);
}

.footer-inner .section-title {
  margin-bottom: 3rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.link-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--bg-cream);
  background: var(--text-dark);
  padding: 1.2rem 3rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid var(--text-dark);
}

.link-btn:hover {
  background: transparent;
  color: var(--text-dark);
}

.link-btn.outline {
  background: transparent;
  color: var(--text-dark);
}

.link-btn.outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.footer-credits {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Animations */
/* Animations handled entirely via JS fromTo to ensure failsafe visibility */

/* Float animations set in JS for more organic feel */

/* Mobile Responsive */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    padding-top: 10vh;
  }
  .blend-article, .blend-article.reverse {
    flex-direction: column;
    gap: 4rem;
    text-align: center;
  }
  .tasting-notes {
    text-align: left;
  }
  .craftsmanship-section {
    flex-direction: column;
  }
  .craft-content {
    padding: 0;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
  }
  .teabag-img:nth-child(2) {
    margin-top: 0;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
