/* ════════════════════════════════════════════
   YEMENI TEA — GLOBAL STYLESHEET
   Design tokens, base styles, component CSS.
   Layout utilities are handled by Tailwind CDN.
════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --gold: #C8963E;
  --gold-light: #E2B96A;
  --gold-pale: #F5E6C8;
  --amber: #8B4513;
  --dark: #1A0F05;
  --deep: #2C1810;
  --cream: #FAF5EC;
  --smoke: #F0E8D8;
  --text: #3D2410;
  --muted: #7A5C3E;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .5;
}

/* ════════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════════ */
.announcement {
  background: var(--dark);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 20px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 236, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 150, 62, .2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(26, 15, 5, .12);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-social a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color .3s;
}

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: .3s;
}

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform .4s ease;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 4px;
  transition: color .3s;
}

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

.nav-drawer-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 28px;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
}

/* ════════════════════════════════════════════
   HERO (homepage only)
════════════════════════════════════════════ */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200, 150, 62, .12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(139, 69, 19, .08) 0%, transparent 60%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 45%;
  width: 1px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, rgba(200, 150, 62, .3), transparent);
}

.hero-text {
  position: relative;
  z-index: 2;
  padding-right: 60px;
  animation: fadeUp .9s ease both;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 12px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-style: italic;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--dark);
  color: var(--gold-light);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 40px;
  position: relative;
  transition: .3s;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: 0;
}

.hero-cta:hover::before {
  transform: scaleX(1);
}

.hero-cta:hover {
  color: var(--dark);
}

.hero-cta span,
.hero-cta-arrow {
  position: relative;
  z-index: 1;
}

.hero-cta-arrow {
  font-size: 16px;
}

.hero-price {
  margin-top: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 1px;
}

.hero-price strong {
  font-size: 28px;
  color: var(--dark);
  font-weight: 400;
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp .9s .2s ease both;
}

.hero-image img {
  width: 85%;
  max-width: 560px;
  filter: drop-shadow(0 30px 60px rgba(139, 69, 19, .25));
  transition: transform .6s ease;
}

.hero-image:hover img {
  transform: translateY(-8px) rotate(1deg);
}

.hero-ring {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(200, 150, 62, .15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 40s linear infinite;
}

.hero-ring-2 {
  width: 420px;
  height: 420px;
  border-color: rgba(200, 150, 62, .1);
  animation-duration: 28s;
  animation-direction: reverse;
}

/* ════════════════════════════════════════════
   BANNER SECTIONS
════════════════════════════════════════════ */
.full-banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.full-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.full-banner:hover img {
  transform: scale(1.02);
}

.banner-intro {
  padding: 90px 40px 70px;
  background: var(--cream);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.banner-intro-content {
  animation: fadeUp .9s ease both;
}

.banner-intro-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.banner-intro-eyebrow::before,
.banner-intro-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(200, 150, 62, .4);
}

.banner-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.banner-intro-title em {
  font-style: italic;
  color: var(--gold);
}

.banner-intro-desc {
  font-size: 19px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ════════════════════════════════════════════
   PRODUCT SECTION
════════════════════════════════════════════ */
.product-section {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--smoke);
  margin-bottom: 16px;
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: opacity .4s, transform .4s;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--smoke);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .3s;
}

.gallery-thumb.active {
  border-color: var(--gold);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  transition: transform .3s;
}

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

.product-info {
  padding-top: 10px;
}

.product-brand {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 28px;
}

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(200, 150, 62, .2);
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--dark);
}

.product-currency {
  font-size: 18px;
  color: var(--muted);
}

.product-shipping-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.product-description {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

.qty-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(200, 150, 62, .3);
  width: fit-content;
  margin-bottom: 24px;
}

.qty-btn {
  width: 46px;
  height: 46px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--dark);
  color: var(--gold-light);
}

.qty-val {
  width: 60px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--dark);
  border: none;
  border-left: 1px solid rgba(200, 150, 62, .3);
  border-right: 1px solid rgba(200, 150, 62, .3);
  background: transparent;
  outline: none;
}

.add-to-cart {
  width: 100%;
  background: var(--dark);
  color: var(--gold-light);
  border: none;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 20px 40px;
  transition: .3s;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.add-to-cart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
  z-index: 0;
}

.add-to-cart:hover::before {
  transform: scaleX(1);
}

.add-to-cart:hover {
  color: var(--dark);
}

.add-to-cart span {
  position: relative;
  z-index: 1;
}

.buy-now {
  width: 100%;
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(44, 24, 16, .3);
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 40px;
  transition: .3s;
}

.buy-now:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ingredients {
  margin-top: 40px;
  padding: 32px;
  background: var(--smoke);
  border-left: 3px solid var(--gold);
}

.ingredients h3 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ingredient-tag {
  background: white;
  border: 1px solid rgba(200, 150, 62, .25);
  padding: 6px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Crimson Pro', serif;
}

/* ════════════════════════════════════════════
   FEATURES STRIP
════════════════════════════════════════════ */
.features {
  background: var(--dark);
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.feature {
  padding: 40px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.feature:last-child {
  border-right: none;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: rgba(250, 245, 236, .5);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   HOW TO BREW
════════════════════════════════════════════ */
.brew-section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 50px;
  height: 1px;
  background: rgba(200, 150, 62, .4);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.brew-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.brew-card {
  background: var(--smoke);
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.brew-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.brew-card-vol {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(200, 150, 62, .15);
  line-height: 1;
  margin-bottom: 8px;
}

.brew-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.brew-steps {
  list-style: none;
}

.brew-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(200, 150, 62, .12);
  font-size: 16px;
  color: var(--text);
}

.brew-steps li:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  min-width: 28px;
  line-height: 1.2;
}

/* ════════════════════════════════════════════
   GALLERY BAND
════════════════════════════════════════════ */
.gallery-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 0 60px;
}

.gallery-band-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--smoke);
}

.gallery-band-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .5s ease;
}

.gallery-band-img:hover img {
  transform: scale(1.04);
}

/* ════════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════════ */
.why-section {
  padding: 100px 60px;
  background: var(--smoke);
}

.why-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.why-card {
  background: var(--cream);
  padding: 50px 50px 50px 60px;
  position: relative;
  transition: .3s;
}

.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}

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

.why-card:hover {
  transform: translateX(4px);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════ */
.contact-section {
  padding: 100px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  background: var(--smoke);
  border: 1px solid rgba(200, 150, 62, .2);
  padding: 16px 20px;
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  color: var(--dark);
  outline: none;
  transition: border-color .3s;
  resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-submit {
  grid-column: 1 / -1;
  background: var(--dark);
  color: var(--gold-light);
  border: none;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 20px;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.form-submit:hover::before {
  transform: scaleX(1);
}

.form-submit:hover {
  color: var(--dark);
}

.form-submit span {
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════════ */
.newsletter {
  background: var(--dark);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(200, 150, 62, .1);
  border-radius: 50%;
}

.newsletter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  position: relative;
}

.newsletter p {
  color: rgba(250, 245, 236, .5);
  margin-bottom: 36px;
  position: relative;
}

.newsletter-form {
  display: flex;
  gap: 0;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(200, 150, 62, .3);
  border-right: none;
  padding: 18px 24px;
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  color: var(--cream);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(250, 245, 236, .3);
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 28px;
  transition: background .3s;
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

/* ════════════════════════════════════════════
   FOOTER (homepage full footer)
════════════════════════════════════════════ */
footer {
  background: #110A04;
  padding: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(250, 245, 236, .4);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 150, 62, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  text-decoration: none;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(250, 245, 236, .4);
  text-decoration: none;
  transition: color .3s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

/* Minimal footer (used on policy/article pages) */
footer.footer-minimal {
  padding: 50px 60px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(250, 245, 236, .25);
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}

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

.footer-links a {
  font-size: 12px;
  color: rgba(250, 245, 236, .3);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ════════════════════════════════════════════
   TOAST
════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark);
  color: var(--gold-light);
  padding: 18px 28px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  border-left: 3px solid var(--gold);
  transform: translateX(120%);
  transition: transform .4s ease;
  z-index: 999;
}

.toast.show {
  transform: translateX(0);
}

/* ════════════════════════════════════════════
   PAGE HERO (policy/blog pages)
════════════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: 90px 60px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border: 1px solid rgba(200, 150, 62, .1);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(200, 150, 62, .07);
  border-radius: 50%;
}

.page-hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: '';
  width: 50px;
  height: 1px;
  background: rgba(200, 150, 62, .4);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero p {
  margin-top: 16px;
  color: var(--gold-pale);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  position: relative;
}

.page-hero-date {
  margin-top: 20px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(250, 245, 236, .35);
  position: relative;
}

/* ════════════════════════════════════════════
   POLICY / ARTICLE CONTENT LAYOUT
════════════════════════════════════════════ */
.policy-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px 100px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 100px;
  padding-right: 50px;
  border-right: 1px solid rgba(200, 150, 62, .2);
}

.toc-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 4px;
}

.toc-list a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.5;
  display: block;
  padding: 6px 0 6px 14px;
  border-left: 2px solid transparent;
  transition: color .25s, border-color .25s, padding-left .25s;
}

.toc-list a:hover,
.toc-list a.active {
  color: var(--gold);
  border-left-color: var(--gold);
  padding-left: 20px;
}

.policy-content {
  padding-left: 70px;
}

.policy-intro {
  background: var(--smoke);
  border-left: 3px solid var(--gold);
  padding: 30px 36px;
  margin-bottom: 60px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
}

.policy-section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(200, 150, 62, .12);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(200, 150, 62, .15);
  line-height: 1;
  margin-bottom: 4px;
}

.policy-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
}

.policy-section p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s;
}

.policy-section a:hover {
  color: var(--gold-light);
}

.policy-section ul,
.policy-section ol {
  padding-left: 28px;
  margin-bottom: 20px;
}

.policy-section li {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 8px;
}

/* ════════════════════════════════════════════
   ARTICLE SPECIFIC
════════════════════════════════════════════ */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px;
}

.rates-table th {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: var(--dark);
  padding: 14px 20px;
  text-align: left;
}

.rates-table td {
  padding: 16px 20px;
  color: var(--muted);
  border-bottom: 1px solid rgba(200, 150, 62, .1);
  vertical-align: top;
  line-height: 1.6;
}

.rates-table tr:nth-child(even) td {
  background: var(--smoke);
}

.rates-table strong {
  color: var(--dark);
  font-weight: 400;
}

.contact-block {
  background: var(--dark);
  padding: 44px;
  margin-top: 40px;
  text-align: center;
  border: 1px solid rgba(200, 150, 62, .2);
}

.contact-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--cream);
  margin-bottom: 12px;
  font-weight: 300;
}

.contact-block h3 em {
  font-style: italic;
  color: var(--gold-light);
}

.contact-block p {
  color: rgba(250, 245, 236, .7);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  font-weight: 600;
  transition: background .3s, color .3s;
}

.cta-btn:hover {
  background: var(--gold-light);
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 60px;
  transition: gap .3s;
}

.back-top:hover {
  gap: 16px;
}

/* ════════════════════════════════════════════
   BLOG LISTING PAGE
════════════════════════════════════════════ */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px 120px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.blog-card {
  background: var(--smoke);
  border: 1px solid rgba(200, 150, 62, .15);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(26, 15, 5, .05);
}

.blog-card-meta {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.blog-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 400;
}

.blog-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  flex-grow: 1;
}

.blog-card-link {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .3s, gap .3s;
}

.blog-card-link:hover {
  color: var(--gold);
  gap: 14px;
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav {
    padding: 16px 30px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 30px;
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-text {
    padding-right: 0;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto 48px;
  }

  .hero-image {
    margin-top: 40px;
  }

  .product-section {
    grid-template-columns: 1fr;
    padding: 60px 30px;
  }

  .product-gallery {
    position: static;
  }

  .features {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 40px 30px;
  }

  .brew-section {
    padding: 60px 30px;
  }

  .brew-grid {
    grid-template-columns: 1fr;
  }

  .gallery-band {
    padding: 0 30px;
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-band-img:nth-child(4),
  .gallery-band-img:nth-child(5) {
    display: none;
  }

  .why-section {
    padding: 60px 30px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 60px 30px;
  }

  .newsletter {
    padding: 60px 30px;
  }

  footer {
    padding: 50px 30px;
  }

  footer.footer-minimal {
    padding: 40px 30px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-hero {
    padding: 70px 30px 60px;
  }

  .policy-wrapper {
    grid-template-columns: 1fr;
    padding: 50px 30px 80px;
  }

  .policy-toc {
    display: none;
  }

  .policy-content {
    padding-left: 0;
  }

  .blog-container {
    padding: 60px 30px 80px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }

  .gallery-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-band-img:nth-child(3),
  .gallery-band-img:nth-child(4),
  .gallery-band-img:nth-child(5) {
    display: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}