/*
Theme Name: BigShot Farm
Theme URI: https://bigshotagribusiness.com
Author: BigShot Agribusiness
Description: A product showcase theme for BigShot Farm.
Version: 1.0
*/

:root {
  --forest: #122b1e;
  --deep: #0d2218;
  --leaf: #4a9e5c;
  --mint: #74c69d;
  --cream: #f5f0e8;
  --paper: #fffaf2;
  --ink: #1a3d2b;
  --muted: #4a5568;
  --line: #e2d9cc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3, .brand-mark, .display {
  font-family: "Playfair Display", Georgia, serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  background: rgba(13, 34, 24, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 240, 232, .12);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--leaf);
  color: var(--cream);
  font-weight: 900;
  font-size: 24px;
}

.brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--cream);
  padding: 5px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.brand-title { font-size: 22px; font-weight: 800; line-height: 1; }
.brand-s { color: #d9771f; }
.brand-subtitle {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mint);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(245, 240, 232, .82);
  font-size: 14px;
}

.nav-links a:hover { color: var(--cream); }

.product-menu {
  position: relative;
}

.product-menu-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(245, 240, 232, .82);
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.product-menu-button::after {
  content: "v";
  display: inline-block;
  margin-left: 6px;
  font-size: 10px;
  transform: translateY(-1px);
}

.product-menu-button:hover,
.product-menu.is-open .product-menu-button {
  color: var(--cream);
}

.product-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 174px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 250, 242, .98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .16s ease, transform .16s ease;
}

.product-submenu a {
  display: block;
  border-radius: 10px;
  padding: 11px 12px;
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.product-submenu a:hover {
  background: rgba(74, 158, 92, .12);
  color: var(--leaf);
}

.product-menu.is-open .product-submenu,
.product-menu:focus-within .product-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 34, 24, .94), rgba(18, 43, 30, .58), rgba(18, 43, 30, .18)),
    url("assets/home-page.jpeg") center / cover;
  transform: scale(1.02);
}

.hero::after,
.section-diagonal-dark::before,
.section-diagonal-light::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::after {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 10%, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 120px;
  max-width: 780px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before, .eyebrow::after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--leaf);
}

.hero h1 {
  margin: 18px 0 22px;
  font-size: clamp(3rem, 9vw, 7.4rem);
  line-height: .92;
  letter-spacing: 0;
}

.hero h1 span { color: var(--mint); font-style: italic; }
.hero h1 .brand-s {
  color: #d9771f;
  font-style: normal;
}
.hero p {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(245, 240, 232, .82);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.button-row { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.button.primary { background: var(--leaf); color: var(--cream); }
.button.secondary { border: 1px solid rgba(245,240,232,.4); color: var(--cream); }

section { position: relative; padding: 96px 0; }
.light { background: var(--cream); }
.paper { background: var(--paper); }
.dark { background: var(--forest); color: var(--cream); }
#story.dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(116, 198, 157, .32), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(217, 119, 31, .24), transparent 30%),
    linear-gradient(145deg, #07140f 0%, #12331f 42%, #1b4a2a 72%, #0d2218 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}
.section-head h2 span { color: var(--leaf); font-style: italic; }
.dark .section-head h2 span { color: var(--mint); }
.section-head p {
  margin: 20px auto 0;
  color: var(--muted);
  line-height: 1.75;
}
.dark .section-head p { color: rgba(245,240,232,.72); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(74,158,92,.14);
  color: var(--leaf);
  font-size: 22px;
}

.feature h3 { margin: 0 0 6px; font-size: 21px; }
.feature p { margin: 0; color: var(--muted); line-height: 1.65; }

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.image-stack img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(18,43,30,.16);
}
.image-stack img:first-child { grid-column: span 2; height: 310px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-page-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: -24px 0 34px;
  flex-wrap: wrap;
}

.product-page-links a {
  display: inline-flex;
  min-width: 150px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(74, 158, 92, .32);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(18, 43, 30, .09);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-page-links a:hover {
  transform: translateY(-2px);
  border-color: var(--leaf);
  box-shadow: 0 16px 34px rgba(18, 43, 30, .14);
}

.product-card, .team-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18,43,30,.12);
}

.product-card-link {
  display: block;
  height: 100%;
}

.product-card img, .team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card img.logo-image {
  object-fit: contain;
  padding: 28px;
  background: var(--cream);
}

.card-body { padding: 26px; }
.card-body h3 { margin: 0 0 12px; font-size: 28px; color: var(--ink); }
.card-body p { margin: 0; color: var(--muted); line-height: 1.72; }
.tag {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(74,158,92,.12);
  color: var(--leaf);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}

.detail-hero {
  min-height: 72vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--deep);
  padding-top: 120px;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,34,24,.94), rgba(18,43,30,.55), rgba(18,43,30,.16)), var(--detail-image) center / cover;
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 120px 0 96px;
}

.detail-hero h1 {
  margin: 18px 0 22px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: .95;
}

.detail-hero p {
  max-width: 660px;
  color: rgba(245,240,232,.82);
  font-size: 18px;
  line-height: 1.75;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.detail-panel {
  border-radius: 24px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18,43,30,.12);
}

.detail-panel h2,
.detail-panel h3 {
  margin-top: 0;
  font-size: 30px;
}

.detail-panel p,
.detail-panel li {
  color: var(--muted);
  line-height: 1.75;
}

.detail-panel ul {
  padding-left: 20px;
}

.detail-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(18,43,30,.12);
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--leaf);
  font-weight: 700;
}

.factory-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(116,198,157,.22), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #eef6ea 48%, #f5f0e8 100%);
}

.factory-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.factory-copy h2 {
  margin: 16px 0 22px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.factory-copy h2 span {
  color: var(--leaf);
  font-style: italic;
}

.factory-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.production-steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.production-steps div {
  padding: 18px 20px;
  border: 1px solid rgba(74,158,92,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.64);
  box-shadow: 0 14px 34px rgba(18,43,30,.08);
}

.production-steps strong,
.production-steps span {
  display: block;
}

.production-steps strong {
  margin-bottom: 6px;
  color: var(--ink);
}

.production-steps span {
  color: var(--muted);
  line-height: 1.65;
}

.factory-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.factory-photo {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--deep);
  box-shadow: 0 24px 64px rgba(18,43,30,.18);
}

.factory-photo.featured {
  grid-column: span 2;
  min-height: 360px;
}

.factory-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .7s ease;
}

.factory-photo:hover img {
  transform: scale(1.04);
}

.factory-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,34,24,.88));
  pointer-events: none;
}

.factory-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--cream);
}

.factory-photo strong,
.factory-photo span {
  display: block;
}

.factory-photo strong {
  margin-bottom: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.factory-photo span {
  color: rgba(245,240,232,.76);
  line-height: 1.55;
}

.farm-section {
  background:
    radial-gradient(circle at 84% 10%, rgba(217,119,31,.16), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}

.farm-gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  margin-bottom: 42px;
}

.farm-gallery-item {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--deep);
  box-shadow: 0 20px 56px rgba(18,43,30,.14);
}

.farm-gallery-item.featured {
  grid-row: span 2;
  min-height: 520px;
}

.farm-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .7s ease;
}

.farm-gallery-item:hover img {
  transform: scale(1.04);
}

.farm-gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(13,34,24,.82));
  pointer-events: none;
}

.farm-gallery-item figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--cream);
  font-weight: 800;
}

.farm-leads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.farm-lead-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18,43,30,.12);
}

.farm-lead-card img,
.farm-lead-placeholder {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center top;
}

.farm-lead-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1a3d2b, #4a9e5c);
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 60px;
  font-weight: 900;
}

.farm-lead-body {
  padding: 26px;
}

.farm-lead-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
}

.farm-lead-body .role {
  margin: 6px 0 14px;
  color: var(--leaf);
  font-weight: 800;
}

.farm-lead-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.team-photo {
  display: block;
  background: linear-gradient(135deg, #1a3d2b, #4a9e5c);
  object-position: center top;
}

.placeholder-photo {
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  font-weight: 900;
}

.team-card h3 { margin: 0; color: var(--ink); font-size: 26px; }
.team-card .role { margin: 6px 0 14px; color: var(--leaf); font-weight: 700; }
.team-card p { color: var(--muted); line-height: 1.7; }

.team-page-hero {
  min-height: 64vh;
  display: grid;
  align-items: end;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(13,34,24,.94), rgba(18,43,30,.64), rgba(18,43,30,.18)),
    url("assets/home-page.jpeg") center / cover;
  padding-top: 120px;
}

.team-page-hero-content {
  max-width: 820px;
  padding: 120px 0 92px;
}

.team-page-hero h1 {
  margin: 18px 0 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: .94;
}

.team-page-hero h1 span {
  color: var(--mint);
  font-style: italic;
}

.team-page-hero p {
  max-width: 690px;
  color: rgba(245,240,232,.82);
  font-size: 18px;
  line-height: 1.75;
}

.team-page-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(116,198,157,.16), transparent 30%),
    linear-gradient(180deg, var(--cream), var(--paper));
}

.team-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-profile-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18,43,30,.12);
}

.team-profile-card img,
.team-profile-placeholder {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
}

.team-profile-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1a3d2b, #4a9e5c);
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 58px;
  font-weight: 900;
}

.team-profile-body {
  padding: 24px;
}

.team-profile-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
}

.team-profile-body .role {
  margin: 6px 0 14px;
  color: var(--leaf);
  font-weight: 800;
}

.team-profile-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.extension-team-section {
  background:
    radial-gradient(circle at 15% 16%, rgba(116,198,157,.22), transparent 30%),
    linear-gradient(145deg, #07140f 0%, #12331f 52%, #0d2218 100%);
  color: var(--cream);
}

.extension-team-section .section-head p,
.extension-team-section .team-profile-body p {
  color: rgba(245,240,232,.72);
}

.extension-team-section .section-head h2 span {
  color: var(--mint);
}

.extension-profile-card {
  background: linear-gradient(145deg, rgba(255,250,242,.12), rgba(255,250,242,.05));
  border: 1px solid rgba(116,198,157,.24);
}

.extension-profile-card .team-profile-body h3 {
  color: var(--cream);
}

.extension-profile-card .team-profile-body .role {
  color: var(--mint);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(116,198,157,.28);
}
.milestone {
  position: relative;
  width: calc(50% - 34px);
  padding: 26px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,250,242,.18), rgba(255,250,242,.06)),
    linear-gradient(180deg, rgba(116,198,157,.10), rgba(13,34,24,.08));
  border: 1px solid rgba(245,240,232,.18);
  box-shadow: 0 26px 80px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(14px) saturate(130%);
  opacity: 0;
  transform: translateY(58px) scale(.965);
  transition:
    opacity 1.45s ease,
    transform 1.45s cubic-bezier(.16, 1, .3, 1),
    box-shadow 1.45s ease,
    border-color 1.45s ease;
}
.milestone:nth-child(even) { margin-left: calc(50% + 34px); }
.milestone.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(116,198,157,.34);
  box-shadow: 0 34px 95px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.16);
}
.milestone h3 { margin: 0 0 10px; font-size: 24px; color: var(--mint); }
.milestone .year { color: var(--cream); font-weight: 800; letter-spacing: .08em; }
.milestone p { color: rgba(245,240,232,.72); line-height: 1.7; }

@media (prefers-reduced-motion: reduce) {
  .milestone {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: start;
}
.contact-info p { color: var(--muted); line-height: 1.75; }
.contact-list { display: grid; gap: 18px; margin: 28px 0; }
.contact-item { display: flex; gap: 14px; align-items: start; }
.contact-item strong { display: block; margin-bottom: 4px; color: var(--ink); }
.contact-item span { color: var(--muted); }

.contact-form {
  border-radius: 24px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18,43,30,.14);
}
.contact-form h3 { margin-top: 0; font-size: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; margin: 0 0 7px; color: var(--ink); font-size: 14px; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
.field { margin-bottom: 16px; }

.contact-hero {
  min-height: 62vh;
  display: grid;
  align-items: end;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(13,34,24,.94), rgba(18,43,30,.64), rgba(18,43,30,.20)),
    url("assets/home-page.jpeg") center / cover;
  padding-top: 120px;
}

.contact-hero-content {
  max-width: 780px;
  padding: 120px 0 90px;
}

.contact-hero h1 {
  margin: 18px 0 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: .94;
}

.contact-hero h1 span {
  color: var(--mint);
  font-style: italic;
}

.contact-hero p {
  max-width: 650px;
  color: rgba(245,240,232,.82);
  font-size: 18px;
  line-height: 1.75;
}

.contact-page-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(116,198,157,.18), transparent 30%),
    linear-gradient(180deg, var(--cream), var(--paper));
}

.contact-page-grid,
.extension-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: start;
}

.contact-info-panel,
.myanmar-map-card {
  border-radius: 24px;
  padding: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 46px rgba(18,43,30,.12);
}

.contact-info-panel h2,
.extension-grid h2 {
  margin: 16px 0 22px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.extension-grid h2 span {
  color: var(--leaf);
  font-style: italic;
}

.map-card,
.myanmar-map-card {
  overflow: hidden;
}

.map-card {
  height: 340px;
  margin-top: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(18,43,30,.12);
}

.map-card iframe,
.myanmar-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-page-form {
  position: relative;
}

.suggestion-box textarea {
  min-height: 150px;
}

.extension-section {
  background:
    radial-gradient(circle at 14% 22%, rgba(116,198,157,.25), transparent 32%),
    linear-gradient(135deg, #07140f 0%, #12331f 48%, #0d2218 100%);
  color: var(--cream);
}

.extension-section p {
  color: rgba(245,240,232,.74);
  line-height: 1.78;
}

.extension-town-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.extension-town-card {
  padding: 20px;
  border: 1px solid rgba(116,198,157,.24);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,250,242,.12), rgba(255,250,242,.05));
  box-shadow: 0 20px 54px rgba(0,0,0,.16);
}

.extension-town-card strong,
.extension-town-card span,
.extension-town-card small {
  display: block;
}

.extension-town-card strong {
  color: var(--mint);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
}

.extension-town-card span {
  margin-top: 4px;
  color: rgba(245,240,232,.66);
  font-weight: 700;
}

.extension-town-card p {
  margin: 14px 0 8px;
}

.extension-town-card small {
  color: rgba(245,240,232,.58);
  line-height: 1.6;
}

.myanmar-map-card {
  height: 620px;
  padding: 0;
  background: var(--deep);
}

.site-footer {
  background: var(--deep);
  color: var(--cream);
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 48px;
}
.site-footer p, .site-footer a { color: rgba(245,240,232,.62); line-height: 1.7; }
.site-footer h4 {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-nav, .footer-products { display: grid; gap: 10px; }
.copyright {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(74,158,92,.22);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(245,240,232,.42);
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-content { padding-top: 120px; }
  .about-grid, .products-grid, .team-grid, .team-page-grid, .contact-grid, .footer-grid, .farm-leads {
    grid-template-columns: 1fr;
  }
  .detail-grid, .factory-grid, .contact-page-grid, .extension-grid { grid-template-columns: 1fr; }
  .myanmar-map-card { height: 420px; }
  .farm-gallery {
    grid-template-columns: 1fr;
  }
  .farm-gallery-item.featured {
    grid-row: auto;
    min-height: 320px;
  }
  .factory-photo,
  .factory-photo.featured {
    grid-column: auto;
    min-height: 280px;
  }
  .timeline::before { left: 8px; }
  .milestone, .milestone:nth-child(even) {
    width: auto;
    margin-left: 28px;
  }
  .form-grid { grid-template-columns: 1fr; }
  .copyright { flex-direction: column; }
}
