@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

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

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

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  color: #2C3E50;
  background-color: #FAFAF8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #2C3E50;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E67E22;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C3E50;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2C3E50;
}

p {
  font-size: 1rem;
  line-height: 1.72;
  color: #3d4d5c;
  max-width: 68ch;
}

/* =============================================
   LAYOUT CONTAINERS
   ============================================= */
.container-editorial {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-gap {
  margin-bottom: 120px;
}

.section-gap-sm {
  margin-bottom: 72px;
}

/* =============================================
   HEADER / NAV
   ============================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.97);
  border-bottom: 1px solid rgba(44, 62, 80, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(44, 62, 80, 0.07);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #2C3E50;
  letter-spacing: -0.03em;
}

.logo-wordmark span {
  color: #E67E22;
}

.logo-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7f8c8d;
  display: none;
}

@media (min-width: 768px) {
  .logo-tagline {
    display: block;
  }
}

.main-nav {
  display: none;
  list-style: none;
  gap: 2rem;
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
    align-items: center;
  }
}

.main-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2C3E50;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #E67E22;
  border-bottom-color: #E67E22;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

@media (min-width: 900px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2C3E50;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #FAFAF8;
  border-top: 1px solid rgba(44, 62, 80, 0.08);
  padding: 1.5rem 2rem;
  gap: 1.25rem;
  list-style: none;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2C3E50;
}

/* =============================================
   PAGE TOP OFFSET
   ============================================= */
.page-body {
  padding-top: 68px;
}

/* =============================================
   HERO — INDEX
   ============================================= */
.hero-garden {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  background-color: #f5f3ee;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

@media (min-width: 900px) {
  .hero-garden {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    padding: 8rem 4rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.hero-garden-text {
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E67E22;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #E67E22;
}

.hero-garden h1 {
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-garden h1 em {
  font-style: italic;
  color: #27AE60;
}

.hero-garden-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #5a6a78;
  margin-bottom: 2.5rem;
  max-width: 50ch;
}

.hero-garden-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-garden-image {
  position: relative;
}

.hero-garden-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

@media (max-width: 899px) {
  .hero-garden-image img {
    height: 300px;
    margin-top: 2rem;
  }
}

.hero-scroll-line {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll-line span {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7f8c8d;
}

.scroll-indicator {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, #E67E22);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-ghost {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2C3E50;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid #2C3E50;
  background: transparent;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  background: #2C3E50;
  color: #ECF0F1;
  text-decoration: none;
}

.btn-ghost-accent {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E67E22;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid #E67E22;
  background: transparent;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
  text-decoration: none;
}

.btn-ghost-accent:hover {
  background: #E67E22;
  color: #fff;
  text-decoration: none;
}

.btn-text-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2C3E50;
  text-decoration: none;
  border-bottom: 1.5px solid #E67E22;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.btn-text-link:hover {
  color: #E67E22;
  text-decoration: none;
}

/* =============================================
   SECTION HEADERS (EDITORIAL)
   ============================================= */
.section-meta {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E67E22;
  margin-bottom: 1rem;
}

.section-rule {
  width: 48px;
  height: 2px;
  background: #E67E22;
  margin: 1.5rem 0;
}

.section-rule-green {
  width: 48px;
  height: 2px;
  background: #27AE60;
  margin: 1.5rem 0;
}

/* =============================================
   FULL-WIDTH DIVIDER IMAGE
   ============================================= */
.divider-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .divider-image {
    height: 420px;
  }
}

/* =============================================
   EDITORIAL SPLIT SECTIONS
   ============================================= */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .editorial-split {
    grid-template-columns: 4fr 8fr;
    gap: 5rem;
  }

  .editorial-split.reverse {
    grid-template-columns: 8fr 4fr;
  }

  .editorial-split.reverse .split-image {
    order: -1;
  }
}

.split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 899px) {
  .split-image img {
    height: 260px;
  }
}

.split-text {
  padding: 1rem 0;
}

.split-text h2 {
  margin-bottom: 1.25rem;
}

.split-text p {
  margin-bottom: 1.25rem;
}

/* =============================================
   GARDEN QUIZ / INTERACTIVE
   ============================================= */
.garden-section {
  background: #f5f3ee;
  padding: 5rem 0;
}

.garden-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.garden-quiz-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.quiz-question {
  display: none;
  animation: fadeInUp 0.4s ease;
}

.quiz-question.active {
  display: block;
}

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

.quiz-q-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E67E22;
  margin-bottom: 0.75rem;
}

.quiz-q-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 2rem;
  line-height: 1.35;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .quiz-options {
    grid-template-columns: 1fr;
  }
}

.quiz-option {
  cursor: pointer;
  border: 1.5px solid rgba(44, 62, 80, 0.2);
  padding: 1.25rem 1.5rem;
  background: #fff;
  transition: border-color 0.25s ease, background 0.25s ease;
  text-align: left;
}

.quiz-option:hover {
  border-color: #E67E22;
  background: #fdf6ee;
}

.quiz-option.selected {
  border-color: #27AE60;
  background: #edf7f0;
}

.quiz-option-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.quiz-option-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2C3E50;
}

.quiz-option-desc {
  font-size: 0.8rem;
  color: #7f8c8d;
  margin-top: 0.25rem;
}

.quiz-progress {
  margin-bottom: 2.5rem;
}

.quiz-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(44, 62, 80, 0.1);
  border-radius: 0;
}

.quiz-progress-fill {
  height: 100%;
  background: #E67E22;
  transition: width 0.4s ease;
}

.quiz-progress-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7f8c8d;
  margin-bottom: 0.75rem;
}

/* Garden Result */
.garden-result {
  display: none;
}

.garden-result.show {
  display: block;
  animation: fadeInUp 0.6s ease;
}

.garden-plants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (min-width: 600px) {
  .garden-plants-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.plant-card {
  background: #fff;
  padding: 1.5rem 1rem;
  text-align: center;
  border-top: 3px solid #27AE60;
}

.plant-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.plant-name {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}

.plant-bar-wrap {
  width: 100%;
  height: 4px;
  background: rgba(44, 62, 80, 0.1);
  margin-bottom: 0.5rem;
}

.plant-bar-fill {
  height: 100%;
  background: #27AE60;
  transition: width 1s ease;
}

.plant-pct {
  font-size: 0.75rem;
  color: #7f8c8d;
}

/* =============================================
   GARDEN CARE CARDS
   ============================================= */
.care-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 640px) {
  .care-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .care-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.care-card {
  padding: 2rem 1.5rem;
  border-top: 2px solid #ECF0F1;
  transition: border-color 0.3s ease;
}

.care-card:hover {
  border-top-color: #E67E22;
}

.care-card-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.care-card h3 {
  margin-bottom: 0.75rem;
  color: #2C3E50;
}

.care-card p {
  font-size: 0.88rem;
  max-width: 100%;
  color: #5a6a78;
}

/* =============================================
   TIPS SECTION
   ============================================= */
.tips-section {
  padding: 5rem 0;
  background: #ECF0F1;
}

.tips-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tip-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.tip-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(44, 62, 80, 0.08);
  line-height: 1;
  flex-shrink: 0;
}

.tip-content h3 {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.tip-content p {
  font-size: 0.88rem;
  max-width: 100%;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: 3fr 9fr;
    gap: 5rem;
  }
}

.glossary-rail {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.glossary-rail-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7f8c8d;
  margin-bottom: 1.5rem;
}

.glossary-list {
  list-style: none;
}

.glossary-list li {
  margin-bottom: 0.75rem;
}

.glossary-list a {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #2C3E50;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.glossary-list a:hover,
.glossary-list a.active {
  color: #E67E22;
  border-bottom-color: #E67E22;
}

.faq-category {
  margin-bottom: 3.5rem;
}

.faq-category-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E67E22;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #ECF0F1;
}

.accordion-item {
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.accordion-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2C3E50;
  line-height: 1.4;
}

.accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: 4px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: #E67E22;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion-icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-header[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 0 1.5rem;
}

.accordion-body-inner p {
  font-size: 0.92rem;
  color: #5a6a78;
  max-width: 100%;
  line-height: 1.75;
}

.accordion-body-inner p + p {
  margin-top: 0.75rem;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 6rem;
    align-items: start;
  }
}

.contact-info-col {}

.contact-meta-item {
  margin-bottom: 2rem;
}

.contact-meta-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E67E22;
  margin-bottom: 0.5rem;
}

.contact-meta-value {
  font-size: 1rem;
  color: #2C3E50;
  line-height: 1.6;
}

.schedule-matrix {
  margin-top: 2rem;
  border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(44, 62, 80, 0.06);
}

.schedule-day {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2C3E50;
}

.schedule-hours {
  font-size: 0.88rem;
  color: #5a6a78;
}

.schedule-hours.closed {
  color: #bdc3c7;
}

.contact-photo-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-top: 2rem;
}

/* Contact Form */
.contact-form-col {}

.form-field {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 0.6rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid rgba(44, 62, 80, 0.2);
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #2C3E50;
  outline: none;
  transition: border-color 0.25s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #E67E22;
}

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

.form-submit-btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ECF0F1;
  padding: 1rem 2.5rem;
  border: 1.5px solid #2C3E50;
  background: #2C3E50;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
  width: 100%;
}

.form-submit-btn:hover {
  background: #E67E22;
  border-color: #E67E22;
  color: #fff;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  padding: 5rem 0 3rem;
}

.about-drop-cap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-drop-cap p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin: 0.1em 0.12em 0 0;
  color: #E67E22;
}

.about-timeline {
  max-width: 780px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.timeline-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7f8c8d;
  margin-bottom: 2rem;
}

.timeline-track {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(44, 62, 80, 0.12);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E67E22;
  border: 2px solid #FAFAF8;
}

.timeline-item-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E67E22;
  margin-bottom: 0.4rem;
}

.timeline-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.88rem;
  max-width: 100%;
  color: #5a6a78;
}

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.policy-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.policy-page .policy-update {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7f8c8d;
  margin-bottom: 3rem;
  display: block;
}

.policy-page h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.policy-page p {
  margin-bottom: 1rem;
  max-width: 100%;
  font-size: 0.95rem;
  color: #3d4d5c;
}

.policy-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-page ul li {
  font-size: 0.95rem;
  color: #3d4d5c;
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.policy-page hr {
  border: none;
  border-top: 1px solid rgba(44, 62, 80, 0.1);
  margin: 2.5rem 0;
}

/* =============================================
   THANK YOU PAGE
   ============================================= */
.thank-you-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
}

.thank-you-inner {
  max-width: 540px;
}

.thank-you-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #27AE60;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #27AE60;
  font-size: 1.4rem;
}

.thank-you-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.thank-you-inner p {
  font-size: 1rem;
  color: #5a6a78;
  margin: 0 auto 2rem;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: #2C3E50;
  color: #ECF0F1;
  padding: 5rem 0 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(236, 240, 241, 0.12);
}

@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: 3fr 2fr 2fr 2fr;
  }
}

.footer-brand-col {}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #ECF0F1;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-logo span {
  color: #E67E22;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(236, 240, 241, 0.65);
  line-height: 1.7;
  max-width: 32ch;
  margin-bottom: 1.25rem;
}

.footer-col-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E67E22;
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 0.65rem;
}

.footer-nav-list a {
  font-size: 0.85rem;
  color: rgba(236, 240, 241, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: #E67E22;
}

.footer-contact-line {
  font-size: 0.85rem;
  color: rgba(236, 240, 241, 0.7);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(236, 240, 241, 0.6);
  margin-bottom: 0.4rem;
}

.footer-disclaimer {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(236, 240, 241, 0.08);
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(236, 240, 241, 0.45);
  line-height: 1.7;
  max-width: 100%;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(236, 240, 241, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(236, 240, 241, 0.4);
}

.footer-editorial-note {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #27AE60;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2C3E50;
  color: #ECF0F1;
  padding: 1.25rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.82rem;
  color: rgba(236, 240, 241, 0.85);
  line-height: 1.6;
  max-width: 72ch;
}

.cookie-text a {
  color: #E67E22;
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-reject {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  cursor: pointer;
  border: 1.5px solid;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}

.cookie-btn-accept {
  color: #27AE60;
  border-color: #27AE60;
}

.cookie-btn-accept:hover {
  background: #27AE60;
  color: #fff;
}

.cookie-btn-reject {
  color: rgba(236, 240, 241, 0.6);
  border-color: rgba(236, 240, 241, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(236, 240, 241, 0.1);
  color: #ECF0F1;
}

/* =============================================
   INDEX — PHOTO GRID & ADDITIONAL SECTIONS
   ============================================= */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: 280px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .photo-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .photo-strip img {
    height: 220px !important;
  }
}

.photo-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.photo-strip img:hover {
  transform: scale(1.03);
}

.two-photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 640px) {
  .two-photo-split {
    grid-template-columns: 1fr;
  }
}

.two-photo-split img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 640px) {
  .two-photo-split img {
    height: 220px;
  }
}

/* Section BG variants */
.bg-light {
  background: #ECF0F1;
}

.bg-warm {
  background: #f5f3ee;
}

.bg-white {
  background: #fff;
}

.section-pad {
  padding: 5rem 0;
}

.section-pad-lg {
  padding: 7rem 0;
}

/* Stat strip */
.stat-strip {
  background: #2C3E50;
  padding: 3.5rem 2rem;
}

.stat-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .stat-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #E67E22;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(236, 240, 241, 0.65);
}

/* Large pull quote */
.pull-quote {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.pull-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.5;
  border: none;
  margin: 0;
  padding: 0;
}

.pull-quote blockquote::before {
  content: '\201C';
  color: #E67E22;
  font-size: 4rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.15em;
}

/* =============================================
   404 PAGE (embedded here for reference)
   ============================================= */
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
}

.error-404-inner h1 {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  color: rgba(44, 62, 80, 0.07);
  line-height: 1;
  margin-bottom: 0;
}

.error-404-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.error-404-inner p {
  margin: 0 auto 2rem;
  color: #5a6a78;
}

/* =============================================
   INGREDIENT TAGS
   ============================================= */
.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.ing-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(39, 174, 96, 0.3);
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #27AE60;
  background: rgba(39, 174, 96, 0.05);
}

.ing-tag-icon {
  font-size: 1rem;
}

/* =============================================
   RESPONSIVE UTILITIES
   ============================================= */
@media (max-width: 640px) {
  .section-gap {
    margin-bottom: 64px;
  }

  .section-gap-sm {
    margin-bottom: 40px;
  }
}

/* =============================================
   ABOUT PHOTO
   ============================================= */
.about-photo-wrap {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 2rem;
}

.about-photo-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 640px) {
  .about-photo-wrap img {
    height: 260px;
  }
}

/* Mission cards */
.mission-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 780px;
  margin: 3rem auto 0;
  padding: 0 2rem;
}

@media (min-width: 640px) {
  .mission-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mission-card {
  padding: 2rem 1.5rem;
  border-top: 2px solid #ECF0F1;
}

.mission-card:first-child {
  border-top-color: #E67E22;
}

.mission-card:nth-child(2) {
  border-top-color: #27AE60;
}

.mission-card:nth-child(3) {
  border-top-color: #2C3E50;
}

.mission-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.6rem;
}

.mission-card p {
  font-size: 0.85rem;
  max-width: 100%;
  color: #5a6a78;
}

/* =============================================
   SELECTION COLOR
   ============================================= */
::selection {
  background: rgba(230, 126, 34, 0.2);
  color: #2C3E50;
}
