/* ============================================================
   LATHA SIRPAKALAI KOODAM — LUXURY DESIGN SYSTEM
   Premium Heritage Website Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cinzel+Decorative:wght@400;700;900&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* — Colors — */
  --warm-white: #FDFBF7;
  --warm-white-rgb: 253, 251, 247;
  --pure-white: #FFFFFF;
  --charcoal: #1C1C1C;
  --charcoal-light: #2A2A2A;
  --text-secondary: #5A5A5A;
  --text-tertiary: #8A8A8A;
  --border-light: #E8E4DC;
  --border-lighter: #F0ECE4;

  /* — Heritage Green — */
  --green-darkest: #0A1A10;
  --green-dark: #0D1F14;
  --green-heritage: #1A3A2A;
  --green-rich: #1E4D35;
  --green-emerald: #2D5A3F;
  --green-light: #3D7A55;

  /* — Gold Metallic — */
  --gold-darkest: #6B5210;
  --gold-dark: #8B6914;
  --gold: #C5A028;
  --gold-rich: #D4AF37;
  --gold-light: #D4B94E;
  --gold-champagne: #E8D5A3;
  --gold-pale: #F0E6C8;
  --gold-whisper: #F8F2E0;

  /* — Gradients — */
  --gradient-gold: linear-gradient(135deg, #8B6914 0%, #C5A028 25%, #D4B94E 50%, #E8D5A3 70%, #C5A028 85%, #8B6914 100%);
  --gradient-gold-text: linear-gradient(90deg, #8B6914, #C5A028, #D4B94E, #E8D5A3, #D4B94E, #C5A028, #8B6914);
  --gradient-gold-horizontal: linear-gradient(90deg, #8B6914 0%, #C5A028 20%, #D4B94E 40%, #E8D5A3 60%, #D4B94E 80%, #8B6914 100%);
  --gradient-gold-subtle: linear-gradient(135deg, #C5A028 0%, #D4B94E 50%, #E8D5A3 100%);
  --gradient-green: linear-gradient(135deg, #1E5C3A 0%, #256E47 50%, #1B5334 100%);
  --gradient-green-card: linear-gradient(135deg, #1E5C3A 0%, #256E47 50%, #1B5334 100%);
  --gradient-green-dark: linear-gradient(180deg, #0A1A10 0%, #0D1F14 30%, #1E5C3A 70%, #256E47 100%);
  --gradient-dark-overlay: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);

  /* — Typography — */
  --font-heading: 'Cinzel', serif;
  --font-heading-decorative: 'Cinzel Decorative', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* — Spacing — */
  --navbar-height: 110px;
  --section-padding: 60px;
  --section-padding-mobile: 40px;
  --container-max: 1400px;
  --container-narrow: 1100px;

  /* — Transitions — */
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.3s var(--ease-luxury);
  --transition-medium: 0.6s var(--ease-luxury);
  --transition-slow: 1s var(--ease-luxury);

  /* — Shadows — */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 30px rgba(197, 160, 40, 0.15);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--warm-white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

ul, ol {
  list-style: none;
}

::selection {
  background-color: var(--gold-champagne);
  color: var(--charcoal);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* Gold Gradient Text */
.gold-text {
  background: var(--gradient-gold-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold Gradient Line */
.gold-line {
  height: 1px;
  background: var(--gradient-gold-horizontal);
  border: none;
}

.gold-line--thick {
  height: 2px;
}

/* Eyebrow / Section Label (Line Accent + Bold Letter Spacing) */
.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.eyebrow::before,
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold-dark);
}

/* Section Heading (Exact Bold Uppercase Display Font & Alignment) */
.section-heading,
.page-header__heading,
.about-section__heading,
.contact-section__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.section-heading--gold {
  background: var(--gradient-gold-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading--white {
  color: var(--warm-white);
}

/* Section Supporting Text */
.section-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 600px;
  font-style: normal;
  margin-bottom: 32px;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 1;
  transform: none;
  transition: opacity 0.4s ease-out;
}

.reveal-right,
.reveal-scale {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVBAR (Sticky White BG Theme)
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(197, 160, 40, 0.25);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transform: translateZ(0);
  will-change: transform;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1001;
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  font-weight: 600;
  transition: color var(--transition-fast);
  line-height: 1.3;
}

.navbar__logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--gold-dark);
  margin-top: 2px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold-horizontal);
  transition: width var(--transition-fast);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--green-heritage);
}

.navbar__link.active {
  color: var(--green-heritage);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.navbar__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition-fast);
}

/* WhatsApp CTA Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gradient-gold);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold-subtle);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-whatsapp:hover::before {
  opacity: 1;
}

.btn-whatsapp:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-whatsapp svg {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 1;
}

.btn-whatsapp span {
  position: relative;
  z-index: 1;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2001;
  padding: 8px;
}

.navbar__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition-fast);
}

.navbar__hamburger.open span {
  background: var(--warm-white) !important;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--gradient-green-dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s var(--ease-luxury);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--warm-white);
  padding: 16px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s var(--ease-luxury);
}

.mobile-menu.open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu__link:hover {
  color: var(--gold-champagne);
}

.mobile-menu__cta {
  margin-top: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s var(--ease-luxury);
}

.mobile-menu.open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.mobile-menu__divider {
  width: 60px;
  height: 1px;
  background: var(--gradient-gold-horizontal);
  margin: 30px 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxury);
}

.mobile-menu.open .mobile-menu__divider {
  opacity: 1;
  transition-delay: 0.3s;
}

/* ============================================================
   HERO CAROUSEL (Container Box Image Slider Below Navbar)
   ============================================================ */
.hero-section {
  padding-top: 24px;
  padding-bottom: 45px;
  background: var(--warm-white);
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 650px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  background: var(--green-darkest);
  transform: translateZ(0);
  will-change: transform;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s linear;
}

.hero__slide.active {
  opacity: 1;
  pointer-events: auto;
}

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

/* ============================================================
   PAGE HEADER (Green Gradient BG Theme)
   ============================================================ */
.page-header {
  position: relative;
  padding: 40px 0 45px;
  background: linear-gradient(135deg, #0A1A10 0%, #0D1F14 30%, #1A3A2A 70%, #1E4D35 100%);
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(197, 160, 40, 0.25);
  box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.2);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(30, 77, 53, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  margin-bottom: 16px;
}

.page-header__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.05em;
  color: var(--warm-white);
  margin-bottom: 20px;
}

.page-header__text {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(253, 251, 247, 0.85);
  max-width: 650px;
  margin: 0 auto;
}

/* ============================================================
   PHILOSOPHY CARD (Green Gradient Theme)
   ============================================================ */
.philosophy-section {
  padding: var(--section-padding) 0;
  background: var(--warm-white);
}

.philosophy-card {
  background: var(--gradient-green-card);
  border-radius: 24px;
  padding: 44px 50px;
  color: var(--warm-white);
  box-shadow: 0 10px 30px rgba(19, 57, 36, 0.15);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61, 122, 85, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  border: 1px solid rgba(232, 213, 163, 0.35);
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 30px;
  background: rgba(253, 251, 247, 0.05);
}

.philosophy-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-bottom: 24px;
  max-width: 900px;
}

.philosophy-text {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.8;
  color: rgba(253, 251, 247, 0.82);
  max-width: 780px;
  margin-bottom: 36px;
  font-weight: 300;
}

.btn-gold-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 40px;
  background: var(--gradient-gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(197, 160, 40, 0.3);
}

.btn-gold-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(197, 160, 40, 0.45);
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 40px 100px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-luxury) 0.3s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero__slide.active .hero__eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--warm-white);
  margin-bottom: 20px;
  max-width: 700px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-luxury) 0.5s;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero__slide.active .hero__heading {
  opacity: 1;
  transform: translateY(0);
}

.hero__heading .gold {
  background: var(--gradient-gold-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(253, 251, 247, 0.85);
  margin-bottom: 36px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-luxury) 0.7s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero__slide.active .hero__subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-luxury) 0.9s;
}

.hero__slide.active .hero__ctas {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gradient-gold);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #D4B94E, #E8D5A3, #D4B94E);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  border: 1px solid rgba(253, 251, 247, 0.3);
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--gold-champagne);
  color: var(--gold-champagne);
  background: rgba(253, 251, 247, 0.05);
}

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

/* Hero Navigation */
.hero__nav {
  position: absolute;
  bottom: 100px;
  right: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__nav-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(253, 251, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: transparent;
}

.hero__nav-btn:hover {
  border-color: var(--gold-champagne);
  color: var(--gold-champagne);
  background: rgba(253, 251, 247, 0.05);
}

.hero__nav-btn svg {
  width: 18px;
  height: 18px;
}

/* Hero Progress */
.hero__progress {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__progress-number {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(253, 251, 247, 0.6);
}

.hero__progress-number.active {
  color: var(--gold-champagne);
}

.hero__progress-bar {
  width: 80px;
  height: 1px;
  background: rgba(253, 251, 247, 0.2);
  position: relative;
  overflow: hidden;
}

.hero__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient-gold-horizontal);
  transition: width 6s linear;
}

.hero__progress-fill.active {
  width: 100%;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253, 251, 247, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

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

.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__scroll svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  padding: var(--section-padding) 0;
  background: var(--warm-white);
}

.products-section__header {
  text-align: center;
  margin-bottom: 80px;
}

.products-section__header .section-text {
  margin: 0 auto;
}

/* Category Filter */
.products-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 60px;
}

.products-filter__btn {
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.products-filter__btn:hover,
.products-filter__btn.active {
  color: var(--charcoal);
  border-color: var(--gold);
  background: var(--gold-whisper);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Product Card */
.product-card {
  position: relative;
  cursor: pointer;
  group: true;
}

.product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--border-lighter);
  margin-bottom: 24px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

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

.product-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}

.product-card:hover .product-card__image-overlay {
  opacity: 1;
}

.product-card__view {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-white);
  border: 1px solid rgba(253, 251, 247, 0.4);
  padding: 10px 24px;
  transition: all var(--transition-fast);
}

.product-card__view:hover {
  background: rgba(253, 251, 247, 0.1);
  border-color: var(--gold-champagne);
  color: var(--gold-champagne);
}

.product-card__gold-line {
  width: 40px;
  height: 1.5px;
  background: var(--gradient-gold-horizontal);
  margin-bottom: 12px;
  transition: width var(--transition-fast);
}

.product-card:hover .product-card__gold-line {
  width: 60px;
}

.product-card__category {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

.product-card:hover .product-card__name {
  color: var(--green-heritage);
}

.product-card__material {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-heritage);
  transition: color var(--transition-fast);
}

.product-card__cta:hover {
  color: var(--gold);
}

.product-card__cta svg {
  width: 14px;
  height: 14px;
}

/* Products Empty State */
.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 40px;
}

.products-empty__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.products-empty__icon svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.products-empty__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.products-empty__text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

/* Product Detail Modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-luxury);
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.product-modal__content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  background: var(--warm-white);
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(30px);
  transition: transform 0.5s var(--ease-luxury);
}

.product-modal.open .product-modal__content {
  transform: translateY(0);
}

.product-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--charcoal);
  transition: color var(--transition-fast);
}

.product-modal__close:hover {
  color: var(--gold);
}

.product-modal__gallery {
  position: relative;
  aspect-ratio: 1;
  background: var(--border-lighter);
}

.product-modal__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal__details {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-modal__category {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.product-modal__name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.product-modal__material {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.product-modal__divider {
  width: 50px;
  height: 1.5px;
  background: var(--gradient-gold-horizontal);
  margin-bottom: 24px;
}

.product-modal__description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.product-modal__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.product-modal__meta-item {
  display: flex;
  gap: 12px;
}

.product-modal__meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  min-width: 100px;
}

.product-modal__meta-value {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============================================================
   ABOUT SECTION (Matching Reference Images 1 & 2)
   ============================================================ */
.about-section {
  padding: var(--section-padding) 0;
  background: var(--warm-white);
}

/* About Us Top Grid (Reference Image 1) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px 70px;
  align-items: start;
}

.about-grid__image-wrap {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.about-grid__header {
  grid-column: 2;
  grid-row: 1;
}

.about-grid__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.about-grid__image-wrap:hover .about-grid__image {
  transform: scale(1.03);
}

.about-grid__text {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-top: 10px;
}

/* Founders Section (Reference Image 2) */
.founders-section {
  padding: var(--section-padding) 0;
  background: var(--warm-white);
}

.founders-header {
  max-width: 950px;
  margin: 0 auto 30px;
}

.founder-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 950px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.founder-box:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(197, 160, 40, 0.4);
}

.founder-box__img-wrap {
  width: 200px;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--border-lighter);
  flex-shrink: 0;
}

.founder-box__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-box__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.founder-box__role {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.founder-box__role::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--gold-dark);
}

.founder-box__bio {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.badge-gold {
  display: inline-block;
  background: #FFF8E7;
  border: 1px solid #E8D5A3;
  color: #8B6914;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 2px 10px;
  border-radius: 6px;
  margin: 0 2px;
}

/* Texture Overlay */
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  z-index: 0;
}

/* Subtle Grain */
.about-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 0;
}

.about-section > * {
  position: relative;
  z-index: 1;
}

/* Decorative Gold Lines */
.about-section__decor-line {
  position: absolute;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), transparent);
  opacity: 0.2;
  z-index: 0;
}

.about-section__decor-line--left {
  left: 10%;
  top: 15%;
}

.about-section__decor-line--right {
  right: 12%;
  bottom: 20%;
}

/* About Header */
.about-section__header {
  text-align: center;
  margin-bottom: 100px;
}

.about-section__header .section-label {
  color: var(--gold-champagne);
}

.about-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.05em;
  background: var(--gradient-gold-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.about-section__subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(253, 251, 247, 0.5);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Founder Card */
.founder-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.founder-card:last-child {
  margin-bottom: 0;
}

.founder-card--reverse {
  direction: rtl;
}

.founder-card--reverse > * {
  direction: ltr;
}

/* Founder Image */
.founder-card__image-wrap {
  position: relative;
}

.founder-card__image-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.founder-card__image-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold-dark);
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}

.founder-card__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
  transition: transform 0.8s var(--ease-luxury);
}

.founder-card:hover .founder-card__image-frame img {
  transform: scale(1.03);
}

.founder-card__number {
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 400;
  background: var(--gradient-gold-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  z-index: 3;
}

/* Founder Details */
.founder-card__details {
  padding: 20px 0;
}

.founder-card__role {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.founder-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.founder-card__title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold-champagne);
  margin-bottom: 28px;
}

.founder-card__divider {
  width: 50px;
  height: 1.5px;
  background: var(--gradient-gold-horizontal);
  margin-bottom: 28px;
}

.founder-card__bio {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(253, 251, 247, 0.65);
  margin-bottom: 32px;
}

.founder-card__quote {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--gold-dark);
}

.founder-card__quote p {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  background: var(--gradient-gold-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: var(--section-padding) 0;
  background: var(--warm-white);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-section__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.contact-section__primary-cta {
  margin-bottom: 40px;
}

.btn-contact-quote {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--green-rich);
  border-radius: 4px;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 25px rgba(30, 77, 53, 0.25);
}

.btn-contact-quote:hover {
  background: var(--green-heritage);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 77, 53, 0.35);
}

.contact-section__phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-top: 16px;
}

/* Contact Card Box (Exact Header Golden Gradient Theme Card) */
.contact-card-box {
  background: var(--gradient-gold);
  border-radius: 24px;
  padding: 48px 44px;
  color: var(--charcoal);
  box-shadow: 0 20px 50px rgba(139, 105, 20, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-card-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.contact-card-box__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(28, 28, 28, 0.2);
  margin-bottom: 28px;
}

.contact-card-box__group {
  margin-bottom: 24px;
}

.contact-card-box__group:last-child {
  margin-bottom: 0;
}

.contact-card-box__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid rgba(28, 28, 28, 0.4);
  padding: 4px 14px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.35);
}

.contact-card-box__value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1A1A1A;
  font-weight: 500;
}

.contact-card-box__value a {
  color: #1A1A1A;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-card-box__value a:hover {
  color: var(--green-heritage);
}

.contact-details__value a {
  color: var(--charcoal);
  transition: color var(--transition-fast);
}

.contact-details__value a:hover {
  color: var(--green-heritage);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--gradient-green-dark);
  padding: 80px 0 40px;
}

.footer__gold-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold-horizontal);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo img {
  height: 45px;
  width: auto;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--warm-white);
  font-weight: 500;
}

.footer__brand-since {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  opacity: 0.7;
}

.footer__statement {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(253, 251, 247, 0.4);
  line-height: 1.7;
  max-width: 300px;
  margin-top: 8px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.5);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--gold-champagne);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.5);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(253, 251, 247, 0.5);
  transition: color var(--transition-fast);
}

.footer__contact-item a:hover {
  color: var(--gold-champagne);
}

/* Footer Bottom */
.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(253, 251, 247, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(253, 251, 247, 0.3);
  letter-spacing: 0.05em;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ============================================================
   PAGE HEADER (for inner pages)
   ============================================================ */
.page-header {
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
  background: var(--warm-white);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1.5px;
  background: var(--gradient-gold-horizontal);
}

.page-header__eyebrow {
  margin-bottom: 16px;
}

.page-header__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.page-header__text {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Laptop / Narrow Desktop Navbar */
@media (max-width: 1200px) {
  .navbar__nav {
    gap: 24px;
  }

  .navbar__link {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
  }

  .btn-whatsapp {
    padding: 10px 20px;
    font-size: 0.65rem;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    padding: 0 24px;
  }

  .navbar__logo-img {
    height: 42px;
    max-width: 170px;
  }

  .navbar__nav {
    gap: 16px;
  }

  .navbar__link {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .btn-whatsapp {
    padding: 8px 16px;
    font-size: 0.62rem;
  }

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

  .contact-section__inner {
    gap: 50px;
  }

  .footer__inner {
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 32px;
  }

  .container {
    padding: 0 20px;
  }

  /* Mobile Section Headers Centering */
  .section-label,
  .section-heading,
  .eyebrow,
  .founders-header,
  .products-section__header,
  .about-grid__header,
  .contact-section__heading,
  .contact-section__text {
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .gold-line--thick {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-section__primary-cta {
    text-align: center;
  }

  /* Navbar Mobile */
  .navbar__nav {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__inner {
    padding: 0 20px;
  }

  .navbar__logo img {
    height: 40px;
  }

  .navbar.scrolled .navbar__logo img {
    height: 36px;
  }

  /* Hero Mobile */
  .hero {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  .hero__content {
    padding: 0 20px 80px;
  }

  /* About Us Mobile Ordering */
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .about-grid__header {
    order: 1;
  }

  .about-grid__image-wrap {
    order: 2;
  }

  .about-grid__text {
    order: 3;
    margin-top: 0;
  }

  .hero__heading {
    font-size: clamp(2rem, 8vw, 3rem);
    max-width: 100%;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero__nav {
    right: 20px;
    bottom: 70px;
  }

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

  .hero__progress {
    left: 20px;
    bottom: 20px;
  }

  .hero__scroll {
    display: none;
  }

  /* Products Mobile */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-filter {
    gap: 6px;
    margin-bottom: 40px;
  }

  .products-filter__btn {
    padding: 8px 16px;
    font-size: 0.6rem;
  }

  /* Founders Mobile (Matching Reference Image) */
  .founder-box {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 20px 24px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .founder-box__img-wrap {
    width: 200px;
    height: 230px;
    margin: 0 auto 8px;
  }

  .founder-box__name {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 4px;
  }

  .founder-box__role {
    font-size: 0.68rem;
    text-align: left;
    margin-bottom: 12px;
  }

  .founder-box__bio {
    font-size: 0.9rem;
    line-height: 1.65;
    text-align: left;
  }

  /* Contact Mobile */
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer Mobile */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* Product Modal Mobile */
  .product-modal__content {
    grid-template-columns: 1fr;
    width: 95%;
    max-height: 95vh;
  }

  .product-modal__gallery {
    aspect-ratio: 4 / 3;
  }

  .product-modal__details {
    padding: 30px 24px;
  }

  /* Page Header Mobile */
  .page-header {
    padding-top: 120px;
    padding-bottom: 50px;
  }

  /* WhatsApp Float Mobile */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero__heading {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 0.65rem;
    width: 100%;
    justify-content: center;
  }

  .navbar__logo-text {
    font-size: 0.7rem;
  }

  .about-section__heading {
    font-size: 1.8rem;
  }

  .founder-card__name {
    font-size: 1.4rem;
  }

  .contact-section__heading {
    font-size: 1.8rem;
  }

  .contact-section__whatsapp-btn {
    padding: 16px 28px;
    font-size: 0.65rem;
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SMOOTH PAGE TRANSITIONS
   ============================================================ */
.page-transition {
  animation: pageIn 0.6s var(--ease-luxury) forwards;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
