/* ========================================
   Second Breakfast Homestead — Main Stylesheet v2
   From Pasture, Pond & Garden
   Modern, clean, grounded.
   ======================================== */

:root {
  /* Core palette */
  --color-primary: #C67B4B;
  --color-primary-dark: #A86235;
  --color-primary-light: #E8C9B0;
  --color-secondary: #7A9A6B;
  --color-secondary-dark: #5F7A52;
  --color-secondary-light: #C5D9B8;
  --color-dark: #4A3728;
  --color-dark-soft: #3A2A1C;
  --color-light: #FDF8F0;
  --color-accent: #6B8E9B;
  --color-accent-dark: #52717C;
  --color-accent-light: #B8CFD7;

  /* Derived */
  --color-text: #2D2219;
  --color-text-light: #6B5E52;
  --color-text-muted: #9B8E82;
  --color-border: #E8DDD0;
  --color-border-light: #F2EBE2;
  --color-card-bg: #FFFFFF;

  /* Typography */
  --font-heading: 'Lora', 'Merriweather', Georgia, serif;
  --font-body: 'Inter', 'Source Sans 3', -apple-system, sans-serif;

  /* Spacing */
  --max-width: 1140px;
  --section-gap: 6rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(74, 55, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(74, 55, 40, 0.08);
  --shadow-lg: 0 12px 40px rgba(74, 55, 40, 0.12);
  --shadow-xl: 0 20px 60px rgba(74, 55, 40, 0.15);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --transition: 0.25s ease;
  --transition-slow: 0.35s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ========================================
   Typography Scale
   ======================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}
p:last-child { margin-bottom: 0; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-primary-dark); }

/* ========================================
   Layout Utilities
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-sm {
  padding: 3.5rem 0;
}

.section-alt {
  background: #FFF;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

/* ========================================
   Navigation
   ======================================== */
.site-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-brand:hover { color: var(--color-primary); }

.nav-logo {
  height: 32px;
  width: auto;
  border-radius: 4px;
}

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

.nav-links a {
  color: var(--color-text);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(198, 123, 75, 0.35);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #FFF;
  box-shadow: 0 6px 20px rgba(198, 123, 75, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #FFF;
  transform: translateY(-2px);
}

.btn-white {
  background: #FFF;
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
}

/* ========================================
   Top Block — dark pastoral backdrop
   ======================================== */
.top-block {
  background:
    linear-gradient(rgba(30, 22, 14, 0.72), rgba(36, 26, 16, 0.58)),
    url('../images/pasture-bg.jpg') center/cover no-repeat;
  background-color: var(--color-dark);
}

/* ========================================
   Compact Header
   ======================================== */
.hero-mini {
  text-align: center;
  padding: 1.5rem 1.5rem 1.25rem;
  background: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-mini-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ========================================
   Map Hero
   ======================================== */
.map-hero {
  padding: 1.5rem 0 2rem;
  background: none;
}

.map-instruction {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
  padding: 0 1.5rem;
}

/* ========================================
   Pillar Section
   ======================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pillar-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.pillar-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.pillar-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pillar-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pillar-card-body p {
  color: var(--color-text-light);
  font-size: 0.93rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  flex: 1;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: gap var(--transition);
}
.pillar-link:hover { gap: 0.6rem; }
.pillar-link::after {
  content: "→";
  transition: transform var(--transition);
}

/* ========================================
   Availability Section
   ======================================== */
.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.product-card {
  background: #FFF;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #FFF;
}

/* Product card image slider */
.product-card-slider {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #FFF;
}

.product-card-slider .product-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card-slider .product-card-img.active {
  opacity: 1;
  pointer-events: auto;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  opacity: 0;
  transition: opacity 0.2s;
  padding: 0;
}

.product-card-slider:hover .slider-arrow,
.product-card-slider:focus-within .slider-arrow {
  opacity: 1;
}

.slider-prev { left: 6px; }
.slider-next { right: 6px; }

.slider-dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}

.slider-dot.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
}

.product-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-in-stock  { background: #E4EDDD; color: #3D5A2E; }
.badge-coming-soon { background: #F5E6D8; color: #8B5E34; }
.badge-seasonal  { background: #DDE8EC; color: #3D5A6E; }
.badge-inquiry   { background: #F0EDE8; color: #6B5E52; }

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

.product-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.btn-inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-inquire:hover {
  background: var(--color-primary);
  color: #FFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(198, 123, 75, 0.25);
}

/* ========================================
   Values Section
   ======================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 1fr;
}

.value-card {
  padding: 2rem;
  background: #FFF;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
  transition: box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.value-card:hover {
  box-shadow: var(--shadow-sm);
}

.value-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
}

.value-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ========================================
   Newsletter Block
   ======================================== */
.newsletter-block {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-block h3 {
  color: #FFF;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.newsletter-block p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.formkit-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.formkit-input {
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: #FFF;
  font-size: 0.93rem;
  min-width: 240px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.formkit-input::placeholder { color: rgba(255,255,255,0.35); }
.formkit-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.formkit-submit {
  padding: 0.8rem 1.8rem;
  background: var(--color-primary);
  color: #FFF;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.formkit-submit:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 14px rgba(198, 123, 75, 0.4);
}

/* ========================================
   Availability CTA
   ======================================== */
.availability-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #FDF8F0 50%, var(--color-accent-light) 100%);
  border-radius: var(--radius-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-banner h2 {
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--color-text-light);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

/* ========================================
   Section Divider
   ======================================== */
.section-divider {
  max-width: var(--max-width);
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--color-border-light);
}

/* ========================================
   Pillar Page Hero
   ======================================== */
.pillar-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--color-dark);
}

.pillar-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.pillar-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,42,28,0.65) 0%, rgba(58,42,28,0.5) 100%);
}

.pillar-hero-livestock .pillar-hero-overlay { background: linear-gradient(180deg, rgba(74,55,40,0.7) 0%, rgba(167,98,53,0.5) 100%); }
.pillar-hero-plants .pillar-hero-overlay    { background: linear-gradient(180deg, rgba(58,42,28,0.7) 0%, rgba(95,122,82,0.5) 100%); }
.pillar-hero-aquatics .pillar-hero-overlay  { background: linear-gradient(180deg, rgba(58,42,28,0.7) 0%, rgba(82,113,124,0.5) 100%); }

.pillar-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 2rem;
}

.pillar-hero-content h1 {
  color: #FFF;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.pillar-hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ========================================
   Pillar Content Sections
   ======================================== */
.pillar-section {
  padding: 3rem 0;
}

.pillar-section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.pillar-section .section-intro {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 640px;
  font-size: 1rem;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 1fr;
}

.method-item {
  padding: 1.5rem;
  background: #FFF;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.method-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.method-item p {
  color: var(--color-text-light);
  font-size: 0.88rem;
}

/* ========================================
   Page Hero (generic inner pages)
   ======================================== */
.page-hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(170deg, #FDF8F0 0%, #FFF 100%);
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ========================================
   Content Pages
   ======================================== */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-content h1 { margin-bottom: 1.5rem; }
.page-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; }

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-text);
  background: #FFF;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(198, 123, 75, 0.1);
}

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

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.3rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 0.93rem;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  accent-color: var(--color-primary);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.5rem;
  background: var(--color-primary);
  color: #FFF;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(198, 123, 75, 0.3);
}
.btn-submit:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(198, 123, 75, 0.4);
  transform: translateY(-2px);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--color-dark-soft);
  color: rgba(255,255,255,0.55);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 0.3rem;
}

.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 0.5rem;
  border-radius: 3px;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: #FFF; }

.footer-disclosure {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding: 1.25rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* ========================================
   Interactive Homestead Map
   ======================================== */
.homestead-map {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  background: #F5EDDF;
}

.homestead-map img {
  width: 100%;
  height: auto;
  display: block;
}

.map-zone {
  position: absolute;
  top: 18%;
  bottom: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s ease;
  z-index: 2;
  cursor: pointer;
}

.map-zone:hover,
.map-zone:focus-visible {
  background: rgba(198, 123, 75, 0.10);
  outline: none;
}

.map-zone:focus-visible {
  box-shadow: inset 0 0 0 3px var(--color-primary);
  border-radius: 4px;
}

.map-zone-left   { left: 0;       width: 32%; }
.map-zone-center { left: 34%;     width: 32%; }
.map-zone-right  { left: 68%;     width: 32%; }

.map-zone-label {
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 1.4vw, 1.1rem);
  font-weight: 600;
  color: var(--color-dark);
  background: rgba(253, 248, 240, 0.90);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(74, 55, 40, 0.12);
  border: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.map-zone:hover .map-zone-label,
.map-zone:focus-visible .map-zone-label {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .availability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root { --section-gap: 4rem; }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .availability-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .method-list {
    grid-template-columns: 1fr;
  }

  .pillar-hero {
    min-height: 40vh;
  }
}

@media (max-width: 600px) {
  html { font-size: 16px; }

  .nav-inner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-mini {
    padding: 1rem 1rem;
  }

  .hero-mini-title {
    font-size: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-block {
    padding: 2rem 1.25rem;
  }
}
