/* ============================================
   VARIABLES
   ============================================ */
:root {
  /* Colors */
  --honey: #f6d365;
  --honey-dark: #f4b400;
  --honey-light: #fce588;
  --green: #4a7c59;
  --green-dark: #3a6347;
  --green-light: #6a9c79;
  --cream: #faf3e0;
  --cream-dark: #f0e6cc;
  --stone: #d9d9d9;
  --stone-dark: #999;
  --text-primary: #2c2416;
  --text-secondary: #5a4e3c;
  --text-light: #8a7e6c;
  --white: #ffffff;
  --black: #1a1a1a;

  /* Gradients */
  --gradient-honey: linear-gradient(135deg, #f6d365 0%, #f4b400 100%);
  --gradient-warm: linear-gradient(135deg, #faf3e0 0%, #f6d365 100%);
  --gradient-green: linear-gradient(135deg, #4a7c59 0%, #6a9c79 100%);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizing */
  --max-width: 1320px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-btn: 16px;

  /* Spacing */
  --section-gap: 120px;
  --container-padding: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 36, 22, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 36, 22, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 36, 22, 0.12);
  --shadow-glow: 0 4px 20px rgba(244, 180, 0, 0.2);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--cream);
  -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);
}

ul {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

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

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

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-narrow {
  max-width: 860px;
}

.section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

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

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
.text-honey {
  color: var(--honey-dark);
}

.text-green {
  color: var(--green);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--honey-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-btn);
  padding: 0.75rem 1.75rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 3px solid var(--honey-dark);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--gradient-honey);
  color: var(--text-primary);
  border-color: var(--honey-dark);
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 243, 224, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 243, 224, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.logo-icon {
  font-size: 1.75rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-dot {
  color: var(--honey-dark);
}

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

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

.header-cta {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 10;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  z-index: 2000;
  transition: right var(--transition-slow);
  overflow-y: auto;
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem;
  gap: 2rem;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--honey-dark);
}

.mobile-cta {
  margin-top: 1rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250, 243, 224, 0.95) 0%, rgba(250, 243, 224, 0.7) 50%, rgba(250, 243, 224, 0.3) 100%);
}

.floating-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(246, 211, 101, 0.3);
  border: 1px solid var(--honey);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--honey-dark);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

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

.hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--gradient-honey);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  z-index: 2;
}

.hero-fc-1 {
  bottom: 60px;
  left: -40px;
}

.hero-fc-2 {
  top: 60px;
  right: -30px;
}

.hfc-icon {
  font-size: 1.75rem;
}

.hfc-text {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.hfc-text strong {
  color: var(--text-primary);
}

/* ============================================
   PAGE HERO (Sub-pages)
   ============================================ */
.page-hero {
  position: relative;
  padding-top: 80px;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-small {
  min-height: 300px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.3) 100%);
}

.page-hero-overlay-solid {
  background: var(--gradient-honey);
  opacity: 0.9;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 3rem;
  color: var(--white);
}

.page-hero-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

/* ============================================
   ABOUT SNIPPET
   ============================================ */
.about-snippet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-snippet-visual {
  position: relative;
}

.about-snippet-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-snippet-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.about-feature strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.about-feature span {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ============================================
   PRODUCTS
   ============================================ */
.section-products {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 50%, var(--cream) 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.products-grid-full {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.product-card-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-honey);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.product-badge.new {
  background: var(--gradient-green);
  color: var(--white);
}

.product-card-body {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

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

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--honey-dark);
}

/* Product Filters */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--stone);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-honey);
  border-color: var(--honey-dark);
  color: var(--text-primary);
}

/* ============================================
   WORKSHOPS
   ============================================ */
.section-workshops {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.workshop-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.workshop-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 1rem 0.5rem;
  background: var(--gradient-honey);
  border-radius: var(--radius-sm);
  text-align: center;
}

.wd-month {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.wd-day {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.wd-year {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.workshop-content {
  flex: 1;
}

.workshop-name {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.workshop-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.workshop-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--honey-dark);
}

/* Full Workshop Card (Workshops page) */
.workshops-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.workshop-card-full {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.wcf-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 1.5rem 1rem;
  background: var(--gradient-honey);
  border-radius: var(--radius-sm);
  text-align: center;
  flex-shrink: 0;
}

.wcf-content {
  flex: 1;
}

.wcf-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.wcf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.tag {
  display: inline-block;
  background: rgba(74, 124, 89, 0.1);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.wcf-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 140px;
  flex-shrink: 0;
}

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

.workshop-price-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* ============================================
   EVENTS
   ============================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.event-card {
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.event-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.event-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-honey);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

.event-card-body {
  padding: 1.5rem;
}

.event-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.event-card-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.gallery-item-large {
  grid-column: span 2;
}

.gallery-item-large img {
  height: 350px;
}

/* Private Events Box */
.private-events-box {
  padding: 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.private-events-box .section-text {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.section-testimonials {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: 100%;
  padding: 3rem;
  text-align: center;
}

.testimonial-stars {
  color: var(--honey-dark);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.25em;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--stone);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.testimonial-btn:hover {
  background: var(--honey);
  border-color: var(--honey-dark);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--stone);
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--honey-dark);
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-card-image {
  overflow: hidden;
  height: 220px;
}

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

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

.blog-card-body {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(74, 124, 89, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--honey-dark);
  transition: color var(--transition);
}

.blog-read-more:hover {
  color: var(--green);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.section-newsletter {
  padding-top: 0;
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem;
  align-items: center;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-group {
  display: flex;
  gap: 0.75rem;
}

.newsletter-input-group input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--stone);
  border-radius: var(--radius-btn);
  background: var(--white);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
  outline: none;
}

.newsletter-input-group input:focus {
  border-color: var(--honey-dark);
}

.newsletter-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

.newsletter-note a {
  color: var(--honey-dark);
  text-decoration: underline;
}

.newsletter-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(74, 124, 89, 0.1);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-weight: 500;
}

/* ============================================
   SOCIAL FEED
   ============================================ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.social-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}

.social-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.social-item:hover img {
  transform: scale(1.1);
}

.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.social-item:hover .social-overlay {
  opacity: 1;
}

.social-overlay span {
  color: var(--white);
  font-weight: 600;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--stone);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
  outline: none;
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--honey-dark);
}

.form-group textarea {
  resize: vertical;
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--honey-dark);
}

.form-success {
  padding: 1rem;
  background: rgba(74, 124, 89, 0.1);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-weight: 500;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  padding: 2rem;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-location {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(217, 217, 217, 0.5);
}

.contact-location:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-location h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-location p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--honey-dark);
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-socials a {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============================================
   VALUES
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

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

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-role {
  display: block;
  font-size: 0.875rem;
  color: var(--honey-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* ============================================
   IMPACT
   ============================================ */
.section-impact {
  background: var(--gradient-honey);
  padding-top: 80px;
  padding-bottom: 80px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.impact-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
}

.impact-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--honey-dark);
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--honey);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

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

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--honey);
}
/* ENDFILE */