/* ============================================================
   [FARM_NAME] — Eskişehir Organik Aile Çiftliği
   style.css
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Renkler */
  --cream:        #FAF8F3;
  --beige:        #EDE3D0;
  --beige-mid:    #D9CDB8;
  --beige-dark:   #C4B89A;
  --green:        #4A7840;
  --green-dark:   #2E5426;
  --green-soft:   #6B9E5E;
  --brown:        #7A5C38;
  --brown-light:  #9E7A50;
  --text:         #252520;
  --text-mid:     #4A4A3A;
  --text-light:   #7A7A68;
  --white:        #FFFFFF;

  /* Tipografi */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w:        1160px;
  --section-gap:  7rem;
  --radius:       6px;
  --radius-lg:    12px;

  /* Animasyon */
  --ease:         0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text);
}

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

/* ===== SHARED SECTION ELEMENTS ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.9rem;
}
.section-label--light { color: var(--beige); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1.1rem;
}
.section-title--light { color: var(--cream); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.8;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 248, 243, 0.45);
}
.btn--ghost:hover {
  background: rgba(250, 248, 243, 0.1);
  border-color: var(--cream);
}

.btn--full { width: 100%; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

.nav.nav--scrolled {
  background: rgba(250, 248, 243, 0.96);
  padding: 0.8rem 0;
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cream);
  transition: color var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav--scrolled .nav__brand { color: var(--green-dark); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav__item {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  color: rgba(250, 248, 243, 0.88);
  transition: all var(--ease);
}
.nav--scrolled .nav__item { color: var(--text-mid); }

.nav__item:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
}
.nav--scrolled .nav__item:hover {
  background: rgba(74, 120, 64, 0.08);
  color: var(--green);
}

.nav__item--contact {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}
.nav--scrolled .nav__item--contact {
  background: var(--green) !important;
  color: var(--white) !important;
  border-color: var(--green) !important;
}
.nav--scrolled .nav__item--contact:hover {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
}

/* Hamburger burger button */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  z-index: 110;
}
.nav__burger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--ease);
  transform-origin: center;
}
.nav--scrolled .nav__burger-line { background: var(--text); }

.nav__burger.is-active .nav__burger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-active .nav__burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-active .nav__burger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 28, 10, 0.42) 0%,
    rgba(15, 28, 10, 0.52) 55%,
    rgba(15, 28, 10, 0.68) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  max-width: 780px;
  margin: 0 auto;
}

.hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7.5vw, 5.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(250, 248, 243, 0.82);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(250, 248, 243, 0.55);
  transition: color var(--ease);
  animation: nudge-down 2.4s ease-in-out infinite;
}
.hero__scroll-hint:hover { color: var(--cream); }

@keyframes nudge-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ===== FEATURE STRIP ===== */
.feature-strip {
  background: var(--beige);
  padding: 3rem 0;
  border-top: 1px solid var(--beige-mid);
  border-bottom: 1px solid var(--beige-mid);
}

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

.feature-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.feature-strip__icon {
  width: 46px;
  height: 46px;
  color: var(--green);
  margin-bottom: 0.35rem;
}
.feature-strip__icon svg { width: 100%; height: 100%; }

.feature-strip__item h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
}
.feature-strip__item p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-gap) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green);
  color: var(--cream);
  padding: 1.25rem 1.6rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(46, 84, 38, 0.28);
}
.about__badge-year {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.about__badge-text {
  display: block;
  font-size: 0.72rem;
  opacity: 0.82;
  margin-top: 0.2rem;
}

.about__text p {
  font-size: 1.025rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.about__text p:last-child { margin-bottom: 0; }

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige-mid);
}

.about__value {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.about__value-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.about__value p {
  font-size: 0.875rem;
  color: var(--text-mid);
}

/* ===== PRODUCE / BAHÇE & SEBZE ===== */
.produce {
  padding: var(--section-gap) 0;
  background: var(--beige);
}

.produce__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.produce__block:last-child { margin-bottom: 0; }

/* Reverse layout for alternating blocks */
.produce__block--reverse .produce__block-image { order: 2; }
.produce__block--reverse .produce__block-content { order: 1; }

.produce__block-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.produce__subtitle {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 1rem;
}

.produce__block-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.produce__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  display: inline-block;
  padding: 0.32rem 0.9rem;
  background: var(--cream);
  border: 1px solid var(--beige-mid);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-mid);
  transition: border-color var(--ease);
}
.tag:hover { border-color: var(--green); }

/* ===== CHICKENS & EGGS ===== */
.chickens {
  position: relative;
  padding: var(--section-gap) 0;
  overflow: hidden;
}

.chickens__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.chickens__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 28, 10, 0.80) 0%,
    rgba(40, 72, 32, 0.72) 100%
  );
}

.chickens__content {
  position: relative;
  z-index: 2;
}

.chickens__text-block {
  max-width: 660px;
}

.chickens__lead {
  font-size: 1.15rem;
  color: rgba(250, 248, 243, 0.92);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.chickens__body {
  font-size: 0.98rem;
  color: rgba(250, 248, 243, 0.72);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.chickens__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 243, 0.18);
}

.chickens__detail-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.chickens__detail-item p {
  font-size: 0.85rem;
  color: rgba(250, 248, 243, 0.65);
  line-height: 1.65;
}

/* ===== GALLERY ===== */
.gallery {
  padding: var(--section-gap) 0;
}

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

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--beige);
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.gallery__item:hover img { transform: scale(1.04); }

.gallery__item--large { grid-column: span 2; }
.gallery__item--large img { height: 370px; }

.gallery__item--wide { grid-column: span 2; }

figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.65rem 0.9rem;
  background: linear-gradient(transparent, rgba(15, 20, 10, 0.62));
  color: rgba(250, 248, 243, 0.95);
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery__item:hover figcaption,
.gallery__item:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SEASONS ===== */
.seasons {
  padding: var(--section-gap) 0;
  background: var(--beige);
}

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

.seasons__card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.045);
  transition: transform var(--ease), box-shadow var(--ease);
}
.seasons__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.seasons__card-header {
  padding: 1.35rem 1.5rem;
}
.seasons__card-header--spring  { background: linear-gradient(135deg, #7BAD70, #5C9950); }
.seasons__card-header--summer  { background: linear-gradient(135deg, #C8A44A, #A08030); }
.seasons__card-header--autumn  { background: linear-gradient(135deg, #C47A40, #A05A28); }
.seasons__card-header--winter  { background: linear-gradient(135deg, #7A9BAD, #5A7A8E); }

.seasons__season {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
}

.seasons__card-body { padding: 1.5rem; }

.seasons__card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text);
}

.seasons__list { display: flex; flex-direction: column; gap: 0.55rem; }

.seasons__list li {
  font-size: 0.84rem;
  color: var(--text-mid);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.seasons__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green-soft);
  font-size: 0.72rem;
  top: 0.1em;
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-gap) 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}

.contact__detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: var(--green);
  padding: 0.45rem;
  background: rgba(74, 120, 64, 0.09);
  border-radius: var(--radius);
}
.contact__detail-icon svg { width: 100%; height: 100%; }

.contact__detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact__detail-value {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}
a.contact__detail-value:hover { color: var(--green); }

.contact__social {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--beige-mid);
}

.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  transition: color var(--ease);
}
.contact__social-link svg { width: 18px; height: 18px; }
.contact__social-link:hover { color: var(--green); }

.contact__map { margin-top: 2rem; }

.map-placeholder {
  height: 220px;
  background: var(--beige);
  border: 1.5px dashed var(--beige-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-light);
  text-align: center;
  padding: 1.5rem;
}
.map-placeholder svg { width: 30px; height: 30px; opacity: 0.35; }
.map-placeholder p { font-size: 0.875rem; font-weight: 500; }
.map-placeholder small { font-size: 0.72rem; opacity: 0.7; max-width: 240px; }

.map-placeholder--link {
  display: flex;
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease);
}
.map-placeholder--link:hover {
  background: var(--beige-mid);
  border-color: var(--green);
  color: var(--green);
}

/* Form */
.contact__form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  color: var(--text);
  display: none; /* heading hidden; section-header above covers it */
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.form__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-mid);
}
.form__label span { color: var(--green); }

.form__input {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form__input::placeholder { color: var(--text-light); }
.form__input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74, 120, 64, 0.12);
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A7A68' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form__textarea {
  resize: vertical;
  min-height: 130px;
}

/* Honeypot - gizle */
.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form__note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
}

/* Form başarı mesajı */
.form__success {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(74, 120, 64, 0.07);
  border: 1px solid rgba(74, 120, 64, 0.2);
  border-radius: var(--radius-lg);
}
.form__success h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.form__success p {
  font-size: 0.95rem;
  color: var(--text-mid);
}

/* ===== FOOTER ===== */
.footer {
  background: #1E1E18;
  color: var(--beige);
  padding: 3rem 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer__brand { text-align: left; }

.footer__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.footer__tagline {
  font-size: 0.78rem;
  color: rgba(237, 227, 208, 0.45);
}

.footer__nav {
  display: flex;
  gap: 0.4rem 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav a {
  font-size: 0.78rem;
  color: rgba(237, 227, 208, 0.5);
  transition: color var(--ease);
}
.footer__nav a:hover { color: var(--beige); }

.footer__copy {
  text-align: right;
}
.footer__copy p {
  font-size: 0.78rem;
  color: rgba(237, 227, 208, 0.4);
  line-height: 1.7;
}

/* ===== PRODUCE MODAL ===== */
.tag[data-img] {
  cursor: pointer;
}
.tag[data-img]:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.produce-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.produce-modal[hidden] { display: none; }

.produce-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 10, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.produce-modal__box {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  animation: modal-in 0.22s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

.produce-modal__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.produce-modal__label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem 1.5rem 1.35rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

.produce-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 30px;
  height: 30px;
  background: rgba(250, 248, 243, 0.88);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background var(--ease);
  z-index: 2;
}
.produce-modal__close:hover { background: var(--beige); }

/* ===== RESPONSIVE: TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
  :root { --section-gap: 5.5rem; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about__image { height: 420px; }
  .about__badge { right: 1rem; bottom: -1.2rem; }

  .produce__block,
  .produce__block--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .produce__block--reverse .produce__block-image { order: 0; }
  .produce__block--reverse .produce__block-content { order: 0; }
  .produce__block-image img { height: 320px; }

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

  .seasons__grid { grid-template-columns: repeat(2, 1fr); }

  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .footer__brand { text-align: center; }
  .footer__copy { text-align: center; }
}

/* ===== RESPONSIVE: MOBILE (≤768px) ===== */
@media (max-width: 768px) {
  :root { --section-gap: 4.5rem; }

  /* Nav mobile */
  .nav__burger { display: flex; }

  .nav__menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 82vw);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 1.75rem 2rem;
    gap: 0.2rem;
    box-shadow: -6px 0 40px rgba(0, 0, 0, 0.14);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateX(0); }

  .nav__item {
    color: var(--text-mid) !important;
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 0.9rem;
  }
  .nav__item--contact {
    background: var(--green) !important;
    color: var(--white) !important;
    border-color: var(--green) !important;
    margin-top: 0.75rem;
    text-align: center;
    display: block;
  }

  /* Feature strip */
  .feature-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Hero */
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { text-align: center; }

  /* Chickens */
  .chickens__details { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Gallery */
  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .gallery__item--large { grid-column: span 2; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item img { height: 200px; }
  .gallery__item--large img { height: 240px; }

  /* Show captions always on touch */
  figcaption { opacity: 1; transform: translateY(0); }

  /* Seasons */
  .seasons__grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE: SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .about__values { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--large { grid-column: span 1; }
  .gallery__item--wide  { grid-column: span 1; }
  .gallery__item img,
  .gallery__item--large img { height: 230px; }

  .footer__nav { flex-direction: column; align-items: center; gap: 0.6rem; }
}
