/* ============================================
   URBAN ROOFTOP BEEKEEPING - MAIN STYLESHEET
   Design System: Warm Honey Premium
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Base Layers */
  --bg-primary: #FFF8F0;
  --bg-secondary: #FFF1E6;
  --bg-elevated: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 248, 240, 0.72);
  --bg-glass-dark: rgba(255, 241, 230, 0.85);

  /* Accents */
  --accent-primary: #E1A100;
  --accent-secondary: #F7C948;
  --accent-highlight: #FFDFA5;
  --accent-glow: rgba(225, 161, 0, 0.25);
  --accent-glow-strong: rgba(225, 161, 0, 0.45);

  /* Typography */
  --text-primary: #3C2F2F;
  --text-secondary: #6B4F3B;
  --text-muted: #A1866F;
  --text-white: #FFFDF9;

  /* Gradients */
  --gradient-honey: linear-gradient(135deg, #E1A100 0%, #F7C948 50%, #FFDFA5 100%);
  --gradient-hero: linear-gradient(170deg, #FFF8F0 0%, #FFF1E6 40%, #FFDFA5 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,241,230,0.7) 100%);
  --gradient-btn: linear-gradient(135deg, #E1A100 0%, #F7C948 100%);
  --gradient-btn-hover: linear-gradient(135deg, #C88F00 0%, #E1A100 100%);
  --gradient-section: linear-gradient(180deg, #FFF8F0 0%, #FFF1E6 100%);
  --gradient-section-alt: linear-gradient(180deg, #FFF1E6 0%, #FFF8F0 100%);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 100px;
  --space-6xl: 120px;

  /* Layout */
  --max-width: 1320px;
  --padding-desktop: 32px;
  --padding-tablet: 24px;
  --padding-mobile: 16px;
  --section-gap: 120px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(60, 47, 47, 0.06);
  --shadow-md: 0 4px 16px rgba(60, 47, 47, 0.08);
  --shadow-lg: 0 8px 32px rgba(60, 47, 47, 0.1);
  --shadow-xl: 0 16px 48px rgba(60, 47, 47, 0.12);
  --shadow-glow: 0 0 24px rgba(225, 161, 0, 0.2);
  --shadow-glow-strong: 0 0 40px rgba(225, 161, 0, 0.35);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-wider: 0.05em;

  /* Z-index */
  --z-base: 1;
  --z-sticky: 100;
  --z-overlay: 500;
  --z-modal: 1000;
  --z-particles: -1;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--leading-tight);
  color: var(--text-primary);
  letter-spacing: var(--tracking-tight);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--padding-desktop);
  padding-right: var(--padding-desktop);
  width: 100%;
}

.section {
  padding-top: var(--space-6xl);
  padding-bottom: var(--space-6xl);
  position: relative;
}

.section--alt {
  background: var(--gradient-section);
}

.section--alt2 {
  background: var(--gradient-section-alt);
}

.section--amber {
  background: var(--bg-secondary);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--accent-primary);
  color: var(--text-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  z-index: var(--z-modal);
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(225, 161, 0, 0.12);
  transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.header.scrolled {
  background: var(--bg-glass-dark);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(225, 161, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--text-primary);
  z-index: calc(var(--z-overlay) + 1);
}

.header__logo svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.header__logo-text span {
  color: var(--accent-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-xs) 0;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-honey);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--accent-primary);
}

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

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-btn);
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  background: var(--gradient-btn-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
  filter: brightness(1.08);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn--secondary:hover {
  background: rgba(225, 161, 0, 0.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--secondary:active {
  transform: translateY(0);
}

.btn--large {
  padding: 16px 36px;
  font-size: var(--text-base);
  border-radius: var(--radius-xl);
}

.btn--small {
  padding: 8px 20px;
  font-size: var(--text-xs);
}

.btn--outline-white {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: var(--space-xs);
  z-index: calc(var(--z-overlay) + 1);
  background: none;
  border: none;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-glass-dark);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: var(--z-overlay);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  transition: right var(--transition-slow);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  color: var(--accent-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 160px;
  padding-bottom: var(--space-6xl);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(225, 161, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(247, 201, 72, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero__honeycomb-texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23E1A100' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: var(--z-particles);
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-secondary);
  border-radius: 50%;
  opacity: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: var(--z-base);
}

.hero__content {
  max-width: 580px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(225, 161, 0, 0.1);
  border: 1px solid rgba(225, 161, 0, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-lg);
}

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

.hero__title {
  font-size: var(--text-6xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero__title span {
  background: var(--gradient-honey);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(225, 161, 0, 0.15);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--accent-primary);
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(225, 161, 0, 0.15);
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.hero__float-card {
  position: absolute;
  background: var(--gradient-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(225, 161, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hero__float-card--top {
  top: -20px;
  right: -20px;
}

.hero__float-card--bottom {
  bottom: -20px;
  left: -20px;
}

.hero__float-card svg {
  width: 32px;
  height: 32px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.hero__float-card-text {
  font-weight: 600;
  font-size: var(--text-sm);
}

.hero__float-card-sub {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass-card {
  background: var(--gradient-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(225, 161, 0, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(225, 161, 0, 0.25);
}

.glass-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 161, 0, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  color: var(--accent-primary);
}

.glass-card__icon svg {
  width: 28px;
  height: 28px;
}

.glass-card__title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.glass-card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

/* ============================================
   FEATURES / ABOUT
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
}

.section__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

/* ============================================
   ABOUT / STORY SECTION
   ============================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.story-grid--reversed {
  direction: rtl;
}

.story-grid--reversed > * {
  direction: ltr;
}

.story__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story__image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(60, 47, 47, 0.3));
  z-index: 1;
  pointer-events: none;
}

.story__image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.story__content {
  max-width: 520px;
}

.story__content h2 {
  margin-bottom: var(--space-lg);
}

.story__content p {
  margin-bottom: var(--space-md);
  line-height: var(--leading-relaxed);
}

.story__content p:last-of-type {
  margin-bottom: var(--space-xl);
}

.story__values {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.story__value {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.story__value-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 161, 0, 0.1);
  border-radius: var(--radius-md);
  color: var(--accent-primary);
  flex-shrink: 0;
}

.story__value-icon svg {
  width: 20px;
  height: 20px;
}

.story__value h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.story__value p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.product-card {
  background: var(--gradient-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(225, 161, 0, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: rgba(225, 161, 0, 0.25);
}

.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background: var(--gradient-btn);
  color: var(--text-white);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  border-radius: var(--radius-full);
}

.product-card__body {
  padding: var(--space-lg);
}

.product-card__category {
  font-size: var(--text-xs);
  color: var(--accent-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-sm);
}

.product-card__title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--accent-primary);
}

.product-card__price span {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================
   SUBSCRIPTION
   ============================================ */
.subscription-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.subscription-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(225, 161, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(247, 201, 72, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.subscription-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.plan-card {
  background: var(--gradient-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(225, 161, 0, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.plan-card--featured {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.plan-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-btn);
  color: var(--text-white);
  padding: var(--space-xs) var(--space-lg);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.plan-card__name {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.plan-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.plan-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: var(--space-lg);
}

.plan-card__price span {
  font-size: var(--text-base);
  color: var(--text-muted);
  font-weight: 400;
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-grow: 1;
}

.plan-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.plan-card__feature svg {
  width: 18px;
  height: 18px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--gradient-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(225, 161, 0, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--accent-secondary);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-highlight);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.map-placeholder {
  width: 100%;
  height: 450px;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(225, 161, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder__inner {
  text-align: center;
  z-index: 1;
}

.map-placeholder__inner svg {
  width: 64px;
  height: 64px;
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
}

.map-placeholder__inner p {
  font-weight: 600;
  color: var(--text-secondary);
}

.map-placeholder__inner span {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.map-locations {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.map-location {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--gradient-card);
  border: 1px solid rgba(225, 161, 0, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.map-location:hover {
  border-color: rgba(225, 161, 0, 0.25);
  box-shadow: var(--shadow-md);
}

.map-location__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 161, 0, 0.1);
  border-radius: var(--radius-md);
  color: var(--accent-primary);
  flex-shrink: 0;
}

.map-location__icon svg {
  width: 22px;
  height: 22px;
}

.map-location__name {
  font-weight: 600;
  font-size: var(--text-base);
}

.map-location__detail {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================
   NEWSLETTER / CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--gradient-honey);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.cta-banner__title {
  font-size: var(--text-3xl);
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.cta-banner__text {
  color: rgba(255, 253, 249, 0.85);
  margin-bottom: var(--space-xl);
  font-size: var(--text-lg);
}

.cta-banner__form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin: 0 auto;
}

.cta-banner__input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: var(--text-base);
  color: var(--text-white);
  font-family: var(--font-body);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.cta-banner__input::placeholder {
  color: rgba(255, 253, 249, 0.6);
}

.cta-banner__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.25);
}

.cta-banner__btn {
  padding: 14px 28px;
  background: rgba(60, 47, 47, 0.9);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  transition: all var(--transition-base);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
}

.cta-banner__btn:hover {
  background: var(--text-primary);
  transform: translateY(-2px);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 161, 0, 0.1);
  border-radius: var(--radius-md);
  color: var(--accent-primary);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
}

.contact-info__label {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.contact-info__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input,
.form-textarea {
  padding: 14px 18px;
  border: 1px solid rgba(225, 161, 0, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  font-size: var(--text-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(225, 161, 0, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: var(--space-lg);
}

.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content p {
  margin-bottom: var(--space-md);
  line-height: var(--leading-relaxed);
}

.legal-content ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
}

.legal-content .divider {
  border: none;
  height: 1px;
  background: rgba(225, 161, 0, 0.15);
  margin: var(--space-2xl) 0;
}

.legal-content .trust-icons {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.legal-content .trust-icon {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.legal-content .trust-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
}

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */
.page-hero {
  padding-top: 140px;
  padding-bottom: var(--space-3xl);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(225, 161, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero__content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.page-hero__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.page-hero__breadcrumb a {
  color: var(--accent-primary);
  font-weight: 500;
}

.page-hero__breadcrumb a:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-primary);
  color: rgba(255, 253, 249, 0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.footer__logo svg {
  width: 36px;
  height: 36px;
}

.footer__brand p {
  color: rgba(255, 253, 249, 0.5);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--text-white);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 253, 249, 0.5);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--accent-secondary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: var(--text-sm);
  color: rgba(255, 253, 249, 0.35);
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
}

.footer__social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 253, 249, 0.5);
  transition: all var(--transition-fast);
}

.footer__social:hover {
  background: var(--accent-primary);
  color: var(--text-white);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* Page-specific hero backgrounds */
.page-hero--about { background: linear-gradient(170deg, #FFF8F0 0%, #FFDFA5 100%); }
.page-hero--products { background: linear-gradient(170deg, #FFF1E6 0%, #FFF8F0 100%); }
.page-hero--subscription { background: linear-gradient(170deg, #FFDFA5 0%, #FFF8F0 100%); }
.page-hero--contact { background: linear-gradient(170deg, #FFF8F0 0%, #FFF1E6 100%); }
.page-hero--legal { background: linear-gradient(170deg, #FFF8F0 0%, #FFF1E6 50%, #FFF8F0 100%); }

/* Sustainability page specific */
.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.sustainability-stat {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--gradient-card);
  border: 1px solid rgba(225, 161, 0, 0.1);
  border-radius: var(--radius-xl);
}

.sustainability-stat__number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  background: var(--gradient-honey);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sustainability-stat__label {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-top: var(--space-sm);
}