/* ============================================
   GOODFRIEND HONEY CO. — Design System
   ============================================ */

/* --- Google Fonts loaded via HTML <link> tags for performance --- */

/* --- Custom Properties --- */
:root {
  /* Brand Colors — refined for depth */
  --cocoa: #4E342E;
  --cocoa-light: #6D4C41;
  --cocoa-dark: #2C1810;
  --burnt-orange: #BF360C;
  --burnt-orange-light: #E64A19;
  --honey-gold: #C9951A;
  --honey-gold-light: #E8B830;
  --honey-gold-glow: rgba(201, 149, 26, 0.25);
  --warm-cream: #FFFAF3;
  --linen: #F7EDE2;
  --linen-dark: #EDE0D0;
  --dark-text: #2C1810;
  --white: #FFFFFF;
  --ivory: #FDF6EC;
  --rich-black: #1A0E08;
  --overlay-dark: rgba(26, 14, 8, 0.75);
  --overlay-light: rgba(62, 39, 35, 0.3);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 5rem;
  --space-xxl: 8rem;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 90px;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 50%;

  /* Shadows — richer, warmer */
  --shadow-sm: 0 2px 12px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 8px 30px rgba(44, 24, 16, 0.1);
  --shadow-lg: 0 16px 60px rgba(44, 24, 16, 0.14);
  --shadow-warm: 0 8px 40px rgba(201, 149, 26, 0.18);
  --shadow-glow: 0 0 60px rgba(201, 149, 26, 0.12);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-normal: 0.35s var(--ease-out-expo);
  --transition-slow: 0.6s var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: #F5EDE3;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Subtle grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

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

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

.page-hero-content a {
  color: var(--honey-gold);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

a:hover {
  color: var(--burnt-orange-light);
}

ul,
ol {
  list-style: none;
}

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

/* --- Typography --- */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--cocoa-dark);
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  font-weight: 400;
  line-height: 1.05;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.02em;
  font-weight: 400;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--honey-gold);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pdp-market-note {
  margin-top: var(--space-xl);
  padding: var(--space-md);
  background-color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--cocoa);
  border: 1px solid rgba(44, 24, 16, 0.08);
}

.pdp-market-note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--honey-gold);
}

.trust-badges {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(44, 24, 16, 0.1);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--honey-gold);
}

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

.section-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--cocoa-light);
  max-width: 620px;
  margin: 0 auto;
  font-style: italic;
  font-weight: 300;
}

/* --- Layout Utilities --- */

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

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

.section-dark {
  background: linear-gradient(160deg, var(--rich-black) 0%, var(--cocoa-dark) 40%, var(--cocoa) 100%);
  color: var(--white);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, var(--honey-gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark .eyebrow {
  color: var(--honey-gold);
}

.section-dark .eyebrow::before,
.section-dark .eyebrow::after {
  background: var(--honey-gold);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

#find-us,
#events {
  position: relative;
  background-color: var(--cocoa-dark);
  background-image: linear-gradient(to bottom, rgba(44, 24, 16, 1) 0%, rgba(44, 24, 16, 0.7) 20%, rgba(44, 24, 16, 0.7) 80%, rgba(44, 24, 16, 1) 100%), url('../media/market-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

#find-us .container,
#events .container {
  position: relative;
  z-index: 2;
}

#find-us>.container>h2,
#find-us>.container>h3,
#events>.container>h2,
#events>.container>h3 {
  color: var(--white);
}

#find-us .section-subtitle,
#events .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

#find-us>.container>p,
#events>.container>p {
  color: rgba(255, 255, 255, 0.8);
}

/* Card text inside dark sections needs dark text on white cards */
#find-us .market-card h3,
#events .market-card h3 {
  color: var(--cocoa-dark);
}

#find-us .market-card .market-schedule,
#events .market-card .market-schedule {
  color: var(--cocoa-light);
}

#find-us .market-card .market-location,
#events .market-card .market-location {
  color: var(--honey-gold);
}

#find-us .product-availability,
#events .product-availability {
  color: var(--cocoa-dark);
}

#find-us .product-availability p,
#events .product-availability p {
  color: var(--cocoa-dark);
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

/* --- Buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cocoa) 0%, var(--cocoa-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--cocoa-light) 0%, var(--cocoa) 100%);
}

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

.btn-secondary:hover {
  background: var(--cocoa);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--burnt-orange-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: linear-gradient(135deg, var(--honey-gold) 0%, var(--honey-gold-light) 100%);
  color: var(--cocoa-dark);
  box-shadow: var(--shadow-warm);
}

.btn-gold:hover {
  color: var(--cocoa-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* --- Navigation --- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: transparent;
}

.nav.scrolled {
  background: rgba(44, 24, 16, 0.95);
  /* Deep cocoa-dark for scrolled nav */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  /* Stronger shadow for separation on dark bg */
  height: 70px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-brand:hover {
  color: var(--white);
}

.nav-bee {
  height: 56px;
  width: auto;
  transition: transform var(--transition-normal);
}

.nav.scrolled .nav-bee {
  height: 48px;
}

.nav-brand:hover .nav-bee {
  transform: rotate(-10deg) scale(1.05);
}

.nav-logotype {
  height: 55px;
  width: auto;
}

.nav.scrolled .nav-logotype {
  height: 46px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--honey-gold);
  transition: width var(--transition-normal);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(180deg, var(--cocoa-dark) 0%, var(--cocoa) 100%);
    transition: right var(--transition-normal);
    padding: 2rem;
    z-index: 1001;
  }

  .nav-links.open {
    right: 0;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links a {
    font-size: 1.15rem;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
  }

  .mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
  transform: scale(1.05);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26, 14, 8, 1) 0%,
      rgba(26, 14, 8, 0.7) 15%,
      rgba(26, 14, 8, 0.2) 40%,
      rgba(26, 14, 8, 0.15) 60%,
      rgba(26, 14, 8, 0.7) 100%);
  z-index: 1;
}

/* Golden vignette on hero */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201, 149, 26, 0.08) 0%, transparent 70%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: var(--space-lg);
  max-width: 880px;
}

.hero-bee {
  width: 100px;
  height: auto;
  margin: 0 auto var(--space-lg);
  filter: drop-shadow(0 4px 20px rgba(201, 149, 26, 0.4));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  margin-bottom: var(--space-sm);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  line-height: 1;
  letter-spacing: -0.03em;
}

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

.hero .tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  font-weight: 300;
  margin-bottom: var(--space-xl);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll svg {
  width: 30px;
  height: 30px;
  stroke: var(--white);
  opacity: 0.7;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */

.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-xl) + var(--space-lg)) 0 var(--space-xl);
  background-color: var(--cocoa-dark);
  background-image: linear-gradient(to right, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.85)), url('../media/honey-section-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

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

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(44, 24, 16, 1) 0%, rgba(44, 24, 16, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--honey-gold), transparent);
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 300;
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  color: var(--honey-gold);
  justify-content: center;
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow::before,
.page-hero .eyebrow::after {
  background: var(--honey-gold);
}

.page-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-display);
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* Section Divider — organic gold line */
.section-divider-gold {
  text-align: center;
  padding: 0;
  margin: -1px 0;
  position: relative;
  z-index: 2;
}

.section-divider-gold::before {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--honey-gold), transparent);
}

/* Decorative honeycomb divider */
.honeycomb-divider {
  text-align: center;
  padding: var(--space-md) 0;
  opacity: 0.3;
}

.honeycomb-divider svg {
  width: 60px;
  height: auto;
}

/* ============================================
   STORY / ABOUT SECTION
   ============================================ */

.story-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: calc(var(--space-xl) * 1.2);
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--honey-gold);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story-image:hover img {
  transform: scale(1.03);
}

.story-text .eyebrow {
  margin-bottom: var(--space-xs);
}

.story-text h2 {
  margin-bottom: var(--space-md);
}

.story-text p {
  color: var(--cocoa);
}

.story-text .signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--honey-gold);
  margin-top: var(--space-md);
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ============================================
   FEATURED PRODUCT SECTION
   ============================================ */

.featured-product {
  position: relative;
  overflow: hidden;
}

.featured-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.product-image-wrapper {
  position: relative;
  padding: var(--space-lg);
}

.product-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}

.product-image-wrapper:hover img {
  transform: scale(1.02);
}

.product-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--honey-gold);
  color: var(--cocoa-dark);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.product-details h2 {
  margin-bottom: var(--space-sm);
}

.product-details .product-size {
  font-size: 1rem;
  color: var(--cocoa-light);
  margin-bottom: var(--space-md);
}

.product-features {
  margin: var(--space-md) 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--cocoa);
}

.product-features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--honey-gold);
}

.product-availability {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border-left: 4px solid var(--honey-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--cocoa-dark);
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.06);
}

@media (max-width: 768px) {
  .featured-product-grid {
    grid-template-columns: 1fr;
  }

  .product-image-wrapper {
    padding: var(--space-sm);
  }
}

/* ============================================
   MARKET / EVENTS SECTION
   ============================================ */

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.market-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(44, 24, 16, 0.08);
  position: relative;
  overflow: hidden;
}

.market-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--honey-gold), var(--burnt-orange));
}

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

.market-card .market-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-gold-light));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.market-card .market-icon svg {
  width: 24px;
  height: 24px;
  color: var(--cocoa-dark);
}

.market-card h3 {
  margin-bottom: 0.5rem;
  color: var(--cocoa-dark);
}

.market-card .market-schedule {
  font-size: 0.9rem;
  color: var(--cocoa-light);
  margin-bottom: 0.25rem;
}

.market-card .market-location {
  font-size: 0.85rem;
  color: var(--honey-gold);
  font-weight: 500;
}

/* --- Schedule variant (about page) --- */
.markets-grid--schedule {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-lg);
}

.market-card--schedule {
  text-align: left;
  padding: var(--space-lg) var(--space-md);
}

.market-dates {
  list-style: none;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(44, 24, 16, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.market-dates li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cocoa);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--linen);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
  position: relative;
}

.market-dates li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--honey-gold);
  flex-shrink: 0;
}

.market-dates li.date-past {
  opacity: 0.45;
  text-decoration: line-through;
  text-decoration-color: rgba(44, 24, 16, 0.3);
}

.market-dates li.date-past::before {
  background: var(--cocoa-light);
  opacity: 0.5;
}

.market-dates li.date-next {
  background: linear-gradient(135deg, rgba(201, 149, 26, 0.12) 0%, rgba(232, 184, 48, 0.08) 100%);
  border: 1px solid rgba(201, 149, 26, 0.25);
  font-weight: 600;
}

.market-dates li.date-next::after {
  content: 'Next up!';
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--honey-gold);
  background: rgba(201, 149, 26, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}

/* ============================================
   JOURNAL / BLOG CARDS
   ============================================ */

.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.journal-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(44, 24, 16, 0.08);
  cursor: pointer;
}

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

.journal-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.journal-card:hover .journal-card-image img {
  transform: scale(1.05);
}

.journal-card-category {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: rgba(78, 52, 46, 0.85);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
}

.journal-card-body {
  padding: var(--space-md);
}

.journal-card-date {
  font-size: 0.8rem;
  color: var(--cocoa-light);
  margin-bottom: 0.5rem;
}

.journal-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.journal-card:hover .journal-card-body h3 {
  color: var(--honey-gold);
}

.journal-card-body p {
  font-size: 0.92rem;
  color: var(--cocoa);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.journal-card-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.journal-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.journal-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.journal-card:hover .journal-card-link svg {
  transform: translateX(4px);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: var(--space-md);
}

.filter-tab {
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cocoa-dark);
  background: var(--white);
  border: 1px solid rgba(44, 24, 16, 0.12);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--cocoa);
  color: var(--honey-gold);
  border-color: var(--honey-gold);
}

/* ============================================
   HUNNYGLOW CROSS-PROMO (Split Layout)
   ============================================ */

.promo-banner {
  background: var(--white);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(44, 24, 16, 0.06);
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}

.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.promo-image-col {
  position: relative;
  min-height: 500px;
}

.promo-cover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-text-col {
  padding: var(--space-xl) var(--space-xxl);
  display: flex;
  align-items: center;
}

.promo-text-inner {
  max-width: 500px;
}

.promo-logo {
  max-width: 250px;
  height: auto;
  margin-bottom: var(--space-sm);
  display: block;
}

.promo-text-inner .eyebrow {
  color: var(--honey-gold);
  margin-bottom: var(--space-sm);
}

.promo-text-inner p {
  color: var(--cocoa);
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .promo-split {
    grid-template-columns: 1fr;
  }

  .promo-image-col {
    min-height: 400px;
  }

  .promo-text-col {
    padding: var(--space-xl) var(--space-lg);
  }
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--cocoa-light);
}

.breadcrumb a {
  color: var(--honey-gold);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--burnt-orange);
}

.breadcrumb svg {
  flex-shrink: 0;
  color: var(--cocoa-light);
  opacity: 0.5;
}

.breadcrumb span {
  color: var(--cocoa);
  font-weight: 500;
}

/* ============================================
   SHOP CATEGORY CHOOSER TILES
   ============================================ */

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

.shop-category-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.shop-category-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(44, 24, 16, 0.25);
  color: var(--white);
}

.category-tile-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.category-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.shop-category-tile:hover .category-tile-image img {
  transform: scale(1.08);
}

.category-tile-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl) var(--space-lg);
  background: linear-gradient(to top,
      rgba(26, 14, 8, 0.95) 0%,
      rgba(26, 14, 8, 0.75) 30%,
      rgba(26, 14, 8, 0.2) 60%,
      rgba(26, 14, 8, 0) 100%);
  transition: background var(--transition-normal);
}

.category-tile-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.category-tile-overlay .category-tile-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.shop-category-tile:hover .category-tile-overlay {
  background: linear-gradient(to top,
      rgba(26, 14, 8, 0.95) 0%,
      rgba(26, 14, 8, 0.5) 40%,
      rgba(26, 14, 8, 0.1) 70%,
      rgba(26, 14, 8, 0.02) 100%);
}

.category-tile-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-lg);
  width: 100%;
}

.category-tile-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--honey-gold-light);
  margin-bottom: var(--space-xs);
}

.category-tile-content h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.category-tile-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: var(--space-md);
}

.category-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--honey-gold);
  letter-spacing: 0.03em;
  transition: gap var(--transition-normal);
}

.shop-category-tile:hover .category-tile-cta {
  gap: 0.85rem;
}

.category-tile-cta svg {
  transition: transform var(--transition-normal);
}

.shop-category-tile:hover .category-tile-cta svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .shop-category-grid {
    grid-template-columns: 1fr;
  }

  .shop-category-tile {
    min-height: 400px;
  }

  .category-tile-content {
    padding: var(--space-lg) var(--space-md);
  }
}

/* ============================================
   SHOP PAGE PRODUCT CARDS
   ============================================ */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.shop-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(44, 24, 16, 0.08);
}

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

.shop-card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--linen);
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.05);
}

.shop-card-body {
  padding: var(--space-md);
}

.shop-card-body h3 {
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.shop-card-body .price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--honey-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.shop-card-body .shop-desc {
  font-size: 0.92rem;
  color: var(--cocoa);
  margin-bottom: var(--space-sm);
}

.shop-card-subtitle {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cocoa-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.shop-card-view {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--honey-gold);
  transition: gap var(--transition-fast);
}

.shop-card:hover .shop-card-view {
  gap: 0.7rem;
}

.shop-card-view svg {
  transition: transform var(--transition-fast);
}

.shop-card:hover .shop-card-view svg {
  transform: translateX(3px);
}

.shop-availability-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-available {
  background: #E8F5E9;
  color: #2E7D32;
}

.tag-limited {
  background: #FFF3E0;
  color: var(--honey-gold);
}

.tag-seasonal {
  background: #FFF8E1;
  color: #F57F17;
}

/* Featured full-width shop card */
.shop-card-featured {
  grid-column: 1 / -1;
}

.shop-card-featured:hover {
  transform: translateY(-6px);
}

@media (max-width: 768px) {
  .shop-card-featured {
    grid-template-columns: 1fr !important;
  }

  .shop-card-featured .shop-card-image {
    min-height: 260px !important;
  }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.pdp-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-xl) + var(--space-lg)) 0 calc(var(--space-xl) + var(--space-md));
  background-color: var(--cocoa-dark);
  background-image: linear-gradient(to right, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.85)), url('../media/honey-section-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  border-bottom: 2px solid var(--honey-gold);
  z-index: 1;
}

.pdp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(44, 24, 16, 1) 0%, rgba(44, 24, 16, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

/* 100% All Natural Badge */
.badge-100 {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-lg);
  animation: float 4s ease-in-out infinite;
}

.badge-100-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--honey-gold) 0%, #C8930A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 5px rgba(212, 160, 23, 0.3),
    0 0 0 10px rgba(212, 160, 23, 0.15),
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.badge-100-inner .badge-percent {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--cocoa-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.badge-100-inner .badge-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cocoa-dark);
  margin-top: 2px;
}

.badge-100-inner .badge-sub {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cocoa);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Product Showcase */
.pdp-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  padding: var(--space-xl) 0;
}

.pdp-image-col {
  position: relative;
}

.pdp-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--linen);
  position: relative;
}

.pdp-image-main img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: transform var(--transition-slow);
}

.pdp-image-main:hover img {
  transform: scale(1.03);
}

.pdp-image-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #2E7D32;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

.pdp-info-col {
  padding-top: var(--space-sm);
}

.pdp-info-col .eyebrow {
  margin-bottom: var(--space-xs);
}

.pdp-info-col h1 {
  color: var(--cocoa-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-xs);
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(44, 24, 16, 0.15);
}

.pdp-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--honey-gold);
}

.pdp-size {
  font-size: 1rem;
  color: var(--cocoa-light);
}

.pdp-description {
  font-size: 1.05rem;
  color: var(--cocoa);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.pdp-features {
  margin-bottom: var(--space-lg);
}

.pdp-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 1.02rem;
  color: var(--cocoa);
  border-bottom: 1px solid rgba(44, 24, 16, 0.1);
}

.pdp-features li:last-child {
  border-bottom: none;
}

.pdp-features li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--honey-gold);
}

/* Buy Button */
.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
  background: linear-gradient(135deg, var(--burnt-orange) 0%, #D84315 50%, var(--burnt-orange-light) 100%);
  box-shadow: 0 6px 25px rgba(191, 54, 12, 0.35);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-buy::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn-buy:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(191, 54, 12, 0.45);
}

.btn-buy:hover::before {
  left: 100%;
}

.btn-buy svg {
  width: 24px;
  height: 24px;
}

.pdp-market-note {
  margin-top: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(44, 24, 16, 0.04);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--cocoa);
  border: 1px solid rgba(44, 24, 16, 0.1);
}

.pdp-market-note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--honey-gold);
}

/* Trust Badges Row */
.trust-badges {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(44, 24, 16, 0.1);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cocoa);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--honey-gold);
}

@media (max-width: 768px) {
  .pdp-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .badge-100 {
    width: 110px;
    height: 110px;
  }

  .badge-100-inner .badge-percent {
    font-size: 2rem;
  }
}

/* ============================================
   PRODUCT DETAIL ACCORDIONS
   ============================================ */

.pdp-accordion {
  border-bottom: 1px solid rgba(44, 24, 16, 0.12);
}

.pdp-accordion:first-of-type {
  border-top: 1px solid rgba(44, 24, 16, 0.12);
  margin-top: var(--space-md);
}

.pdp-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cocoa-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.pdp-accordion-toggle:hover {
  color: var(--honey-gold);
}

.pdp-accordion-toggle svg {
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  color: var(--cocoa-light);
}

.pdp-accordion-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.pdp-accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease-out-expo), opacity 0.3s var(--ease-smooth);
}

.pdp-accordion-panel p {
  padding-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--cocoa);
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.process-step {
  text-align: center;
  padding: var(--space-md);
  position: relative;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-gold-light));
  color: var(--cocoa-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--space-sm);
  box-shadow: var(--shadow-warm);
}

.process-step h4 {
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--cocoa);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.contact-form {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(44, 24, 16, 0.08);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--cocoa-dark);
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(44, 24, 16, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cocoa-dark);
  background-color: var(--white);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--honey-gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.2);
}

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

.contact-info {
  padding: var(--space-md) 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--cocoa-dark);
}

.contact-info-item h4 {
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.92rem;
  color: var(--cocoa-light);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: var(--space-md);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--cocoa);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.social-link:hover {
  background: var(--honey-gold);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--white);
  fill: var(--white);
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--cocoa-dark);
  /* Match the body background so it blends seamlessly instead of being a stark block */
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  /* Subtle separator since bg colors match */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

.footer-brand img {
  height: 40px;
  width: auto;
}

.footer-brand .footer-logotype {
  height: 32px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.3rem 0;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--honey-gold);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   MISC UTILITIES
   ============================================ */

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

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--honey-gold), var(--burnt-orange));
  border-radius: 2px;
  margin: var(--space-sm) 0;
}

.divider-center {
  margin: var(--space-sm) auto;
}

.text-gold {
  color: var(--honey-gold);
}

.text-burnt {
  color: var(--burnt-orange);
}

/* Honeycomb decorative pattern */
.deco-hex {
  display: inline-block;
  width: 24px;
  height: 24px;
  fill: var(--honey-gold);
  opacity: 0.2;
}

/* ============================================
   RESPONSIVE FINE-TUNING
   ============================================ */

@media (max-width: 480px) {
  .section {
    padding: var(--space-xl) 0;
  }

  .hero {
    background-color: var(--cocoa-dark);
  }

  .hero-bg {
    opacity: 0.5;
  }

  .hero-bee {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1rem;
  }
}

/* --- Contact Form Animations --- */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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