/* ========== COLOR VARIABLES ========== */
:root {
  --sage-50: #EEF2EE;
  --sage-100: #D4DDD4;
  --sage-200: #B8C9B8;
  --sage-300: #9CB59C;
  --sage-400: #8BA58B;
  --sage-500: #6E8B6E;
  --sage-600: #5A735A;
  --sage-700: #445644;
  --sage-800: #2E3A2E;
  --sage-900: #1A221A;

  --neutral-50: #FAFAF8;
  --neutral-100: #F5F4F0;
  --neutral-200: #EDECE6;
  --neutral-300: #E0DED6;
  --neutral-400: #C8C5BB;
  --neutral-500: #A8A59B;
  --neutral-600: #7A776F;
  --neutral-700: #5C5A53;
  --neutral-800: #3D3C37;
  --neutral-900: #1E1D1A;
}

/* ========== RESET ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: var(--sage-100); color: var(--sage-800); }
input:focus { outline: 1.5px solid var(--sage-300); outline-offset: 1px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--neutral-800);
  background: var(--neutral-50);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInHero {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

/* ========== FADE IN (IntersectionObserver) ========== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== BUTTONS ========== */
.cta-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1px solid var(--neutral-800);
  background: transparent;
  color: var(--neutral-800);
  font-family: 'DM Sans', sans-serif;
}

.cta-btn-light {
  border-color: var(--neutral-50);
  color: var(--neutral-50);
}

.cta-btn-light:hover {
  background: var(--neutral-50);
  color: var(--neutral-800);
}

.cta-btn-sage {
  border-color: var(--sage-500);
  color: var(--sage-700);
}

.cta-btn-sage:hover {
  background: var(--sage-500);
  color: white;
}

.cta-btn-dark {
  border-color: var(--sage-700);
  color: var(--sage-700);
  font-size: 11px;
}

/* Button Pulse Animation */
.cta-btn:hover {
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 165, 139, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(139, 165, 139, 0); }
}

.cta-btn-light:hover {
  animation: btnPulseLight 2s ease-in-out infinite;
}

@keyframes btnPulseLight {
  0%, 100% { box-shadow: 0 0 0 0 rgba(250, 250, 248, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(250, 250, 248, 0); }
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 40px;
  background: transparent;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 16px 40px;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--neutral-200);
}

.nav-left,
.nav-right {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neutral-800);
}

.nav-link {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-600);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage-500);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--neutral-900);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 110;
}

.hamburger-line {
  width: 20px;
  height: 1.5px;
  background: var(--neutral-700);
  margin-bottom: 5px;
}

.hamburger-line:last-child {
  margin-bottom: 0;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--neutral-100) 0%, var(--sage-50) 40%, var(--neutral-200) 70%, #E8E0D4 100%);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-decor {
  position: absolute;
}

.hero-decor-1 {
  right: 12%;
  top: 22%;
  width: 260px;
  height: 340px;
  border-radius: 130px;
  background: linear-gradient(180deg, var(--sage-100), var(--sage-200));
  opacity: 0.6;
}

.hero-decor-2 {
  right: 18%;
  top: 30%;
  width: 180px;
  height: 240px;
  border-radius: 16px;
  background: linear-gradient(170deg, white, var(--sage-50));
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-product-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-200), var(--sage-300));
}

.hero-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-600);
}

.hero-product-sub {
  font-size: 9px;
  color: var(--neutral-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-decor-3 {
  left: 8%;
  bottom: 18%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-100), transparent);
  opacity: 0.5;
}

.hero-content {
  position: absolute;
  bottom: 12%;
  left: 6%;
  animation: fadeInHero 1.2s ease forwards;
  max-width: 460px;
  padding: 0;
}

.hero-tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--neutral-800);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 13px;
  color: var(--neutral-700);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 28px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: scrollPulse 2.5s ease infinite;
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neutral-400);
}

.scroll-line {
  width: 1px;
  height: 24px;
  background: var(--neutral-300);
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-center {
  text-align: center;
}

.section-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--neutral-800);
  margin-bottom: 60px;
}

/* ========== IMAGE PLACEHOLDERS ========== */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.img-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-400);
  font-family: 'DM Sans', sans-serif;
}

.aspect-3-4 { aspect-ratio: 3/4; }
.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-4-5 { aspect-ratio: 4/5; }
.aspect-21-9 { aspect-ratio: 21/9; }
.aspect-1-1 { aspect-ratio: 1/1; }

.tone-light { background: linear-gradient(145deg, var(--neutral-100), var(--sage-50)); }
.tone-sage { background: linear-gradient(145deg, var(--sage-100), var(--sage-200)); }
.tone-warm { background: linear-gradient(145deg, var(--neutral-200), #E8E0D4); }
.tone-dark {
  background: linear-gradient(145deg, var(--sage-700), var(--sage-800));
}
.tone-dark .img-label { color: var(--sage-200); }
.tone-cream { background: linear-gradient(145deg, #F0EDE5, #E8E2D8); }

/* ========== PRODUCTS GRID ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.product-card {
  cursor: pointer;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease;
  border-radius: 8px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-img-wrap {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
}

.product-img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-img-src {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

/* Quick View Button Overlay */
.quick-view-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-700);
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.quick-view-btn:hover {
  background: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.product-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--neutral-700);
  margin-bottom: 4px;
  padding: 0 8px;
}

.product-variant {
  font-size: 11px;
  color: var(--neutral-400);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  padding: 0 8px;
}

.product-price {
  font-size: 13px;
  color: var(--sage-600);
  padding: 0 8px;
}

/* ========== PRESS SECTION ========== */
.press-section {
  padding: 48px 40px;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

.press-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: nowrap;
  max-width: 1000px;
  margin: 0 auto;
}

.press-icon {
  height: 100px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

.press-icon:hover {
  opacity: 0.7;
}

.press-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--neutral-400);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.press-logo.italic {
  font-style: italic;
}

/* ========== REVIEW SECTION ========== */
.review-block {
  max-width: 560px;
  margin: 0 auto;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.review-stats {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 24px;
}

.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--neutral-700);
  margin-bottom: 24px;
}

.review-author {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-400);
}

/* ========== REVIEW CAROUSEL ========== */
.review-carousel {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.review-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
  min-width: 100%;
  opacity: 0.4;
  transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--neutral-300);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background: var(--neutral-400);
  transform: scale(1.1);
}

.dot.active {
  background: var(--sage-500);
  transform: scale(1.2);
}

/* ========== LIFESTYLE SECTION ========== */
.lifestyle-section {
  position: relative;
}

.lifestyle-img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.lifestyle-overlay {
  position: absolute;
  bottom: 10%;
  left: 5%;
  max-width: 380px;
}

.lifestyle-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--sage-800);
  line-height: 1.3;
  margin-bottom: 16px;
}

/* ========== PRODUCT DETAIL (SPLIT) ========== */
.split-section {
  display: flex;
  gap: 64px;
  align-items: center;
}

.split-left {
  width: 55%;
}

.detail-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.split-right {
  width: 45%;
}

.detail-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: 12px;
}

.detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--neutral-800);
  line-height: 1.2;
  margin-bottom: 16px;
}

.detail-desc {
  font-size: 13px;
  color: var(--neutral-500);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 360px;
}

.size-options {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.size-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: 1px solid var(--neutral-300);
  background: transparent;
  color: var(--neutral-500);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}

.size-btn-active {
  border-color: var(--sage-500);
  background: var(--sage-50);
  color: var(--sage-700);
}

.detail-price {
  font-size: 20px;
  font-weight: 400;
  color: var(--neutral-800);
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
}

.ingredients-block {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--neutral-200);
}

.ingredients-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 10px;
}

.ingredients-list {
  font-size: 12px;
  color: var(--neutral-500);
  line-height: 1.8;
}

/* ========== BRAND SECTION ========== */
.brand-section {
  position: relative;
}

.brand-img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.brand-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  text-align: right;
  padding: 40px;
}

.brand-tagline {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neutral-600);
  margin-bottom: 16px;
}

.brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--neutral-800);
  line-height: 1.35;
  margin-bottom: 20px;
  max-width: 480px;
}

.brand-desc {
  font-size: 12px;
  color: var(--neutral-700);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 28px;
}

/* ========== ARTICLES GRID ========== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.article-card {
  cursor: pointer;
}

.article-img-wrap {
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 18px;
  aspect-ratio: 4/3;
}

.article-img {
  transition: transform 0.6s ease;
  width: 100%;
  height: 100%;
}

.article-img-src {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card:hover .article-img {
  transform: scale(1.04);
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--neutral-800);
  margin-bottom: 8px;
}

.article-desc {
  font-size: 12px;
  color: var(--neutral-500);
  line-height: 1.6;
  margin-bottom: 14px;
}

.article-link {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-500);
  cursor: pointer;
}

/* ========== SOCIAL GRID ========== */
.social-section {
  padding: 0 0 4px;
}

.social-handle {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: 32px;
  padding: 0 40px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.social-item {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.social-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.social-item:hover {
  opacity: 0.88;
}

/* ========== FOOTER ========== */
.footer {
  padding: 80px 40px 48px;
  background: var(--neutral-100);
  border-top: 1px solid var(--neutral-200);
  margin-top: 80px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neutral-800);
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--neutral-500);
  line-height: 1.7;
  max-width: 240px;
}

.footer-cta {
  font-size: 11px;
  color: var(--neutral-400);
  margin-top: 16px;
}

.footer-cta-link {
  color: var(--sage-500);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-cta-link:hover {
  color: var(--sage-700);
}

.footer-heading {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 16px;
}

.footer-link {
  font-size: 12px;
  color: var(--neutral-500);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  padding: 0;
  text-align: left;
}

.footer-link:hover {
  color: var(--neutral-800);
}

.footer-newsletter-desc {
  font-size: 12px;
  color: var(--neutral-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  font-size: 12px;
  border: 1px solid var(--neutral-300);
  border-radius: 50px;
  background: white;
  color: var(--neutral-800);
  font-family: 'DM Sans', sans-serif;
}

.newsletter-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sage-500);
  color: white;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--sage-600);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-200);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 11px;
  color: var(--neutral-400);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  margin-bottom: 0;
  font-size: 11px;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-link {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-700);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--neutral-900);
}

/* ========== MOBILE STYLES ========== */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }

  .mobile-menu-btn {
    display: block !important;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px;
  }

  .nav {
    padding: 24px !important;
    justify-content: center !important;
  }

  .nav.scrolled {
    padding: 16px 24px !important;
  }

  .hero-content {
    padding: 0 24px !important;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
  }

  .articles-grid {
    grid-template-columns: 1fr !important;
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .split-section {
    flex-direction: column !important;
  }

  .split-section > div {
    width: 100% !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 24px 16px !important;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-link {
    white-space: normal;
    font-size: 11px;
  }

  .footer-heading {
    font-size: 9px;
  }

  .newsletter-form {
    flex-wrap: nowrap !important;
  }

  .newsletter-btn {
    white-space: nowrap;
    min-width: 60px;
  }

  .footer {
    padding: 60px 24px 40px !important;
  }

  .footer-tagline,
  .footer-cta {
    max-width: none !important;
  }

  .press-strip {
    flex-wrap: wrap !important;
    gap: 20px 32px !important;
  }

  .brand-img {
    object-position: 30% center !important;
    transform: scaleX(-1);
  }

  .brand-overlay {
    padding: 24px !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    text-align: left !important;
    background: linear-gradient(to right, rgba(250, 250, 248, 0.9) 0%, rgba(250, 250, 248, 0.6) 60%, transparent 100%);
    width: 75%;
  }

  .brand-title {
    font-size: 24px !important;
  }

  .lifestyle-overlay {
    left: auto !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    text-align: right !important;
    background: linear-gradient(to left, rgba(250, 250, 248, 0.85) 0%, rgba(250, 250, 248, 0.4) 50%, transparent 80%);
    width: 65%;
    padding: 24px;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
}

/* ========== LOADING SCREEN ========== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--neutral-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neutral-800);
}

.loader {
  display: block;
  width: 84px;
  height: 84px;
  position: relative;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage-300);
  transform: translate(-50%, -100%) scale(0);
  animation: push_401 2s infinite linear;
}

.loader:after {
  animation-delay: 1s;
}

@keyframes push_401 {
  0%, 50% {
    transform: translate(-50%, 0%) scale(1);
  }
  100% {
    transform: translate(-50%, -100%) scale(0);
  }
}

.loading-signature {
  position: absolute;
  bottom: 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neutral-300);
}

/* ========== PRESS LABELS ========== */
.press-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 6px;
}

.press-sublabel {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--neutral-700);
  margin-bottom: 32px;
}

/* ========== ARTICLE CARD HEIGHT ========== */
.article-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.articles-grid > div {
  display: flex;
}

.article-card .article-link {
  margin-top: auto;
}

/* ========== GLASSMORPHISM CTA BUTTONS ========== */
.cta-btn {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 6px 3px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 8px 4px rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.cta-btn-sage {
  border-color: var(--sage-500);
  color: var(--sage-700);
  box-shadow:
    0 8px 32px rgba(110, 139, 110, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 6px 3px rgba(255, 255, 255, 0.3);
}

.cta-btn-sage:hover {
  background: rgba(110, 139, 110, 0.2);
  border-color: var(--sage-400);
  color: var(--sage-800);
  box-shadow:
    0 12px 40px rgba(110, 139, 110, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 8px 4px rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.cta-btn-dark {
  border-color: var(--sage-700);
  color: var(--sage-700);
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--neutral-800);
  color: var(--neutral-50);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* ========== CUSTOM ORGANIC CURSOR ========== */

/* Hide default cursor */
body {
  cursor: none;
}

/* Cursor wrapper */
.cursor-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

/* Organic blob */
.cursor-blob {
  position: absolute;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-svg {
  width: 100%;
  height: 100%;
  animation: blobMorph 4s ease-in-out infinite;
}

.blob-path {
  fill: white;
  stroke: none;
}

/* Organic cursor arrow morphing animation */
@keyframes blobMorph {
  0%, 100% {
    d: path("M 18,12 C 12,15 12,72 18,74 L 36,57 L 52,81 C 55,87 63,85 65,80 C 67,75 65,70 61,67 L 45,50 L 65,50 C 70,48 70,40 65,38 C 60,36 52,38 18,12 Z");
  }
  33% {
    d: path("M 18,12 C 11,16 11,73 18,75 L 37,58 L 53,82 C 56,88 64,86 66,81 C 68,76 66,71 62,68 L 46,51 L 66,51 C 71,49 71,41 66,39 C 61,37 53,39 18,12 Z");
  }
  66% {
    d: path("M 18,12 C 13,15 12,71 18,73 L 36,56 L 51,80 C 54,86 62,84 64,79 C 66,74 64,69 60,66 L 44,49 L 64,49 C 69,47 69,39 64,37 C 59,35 51,37 18,12 Z");
  }
}

/* Center dot - hidden for arrow cursor */
.cursor-dot {
  display: none;
}

/* Cursor text - positioned above the cursor */
.cursor-text {
  position: absolute;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  left: 50%;
  transform: translateX(-50%) translateY(-58px);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  pointer-events: none;
}

/* Hover states - blob expands */
.cursor-wrapper.hovering .cursor-blob {
  width: 80px;
  height: 80px;
}

.cursor-wrapper.hovering .cursor-text {
  opacity: 1;
}

.cursor-wrapper.hovering .cursor-dot {
  transform: translate(-50%, -50%) scale(0);
}

/* Interactive elements - hide default cursor */
.interactive-cursor {
  cursor: none !important;
}

/* Touch device fallback - hide custom cursor */
@media (pointer: coarse) {
  body {
    cursor: auto;
  }
  
  .cursor-wrapper {
    display: none;
  }
  
  .interactive-cursor {
    cursor: pointer !important;
  }
}
