/* ==========================================================================
   TIMTAM AGROVET — STYLESHEET
   Design tokens live at the top. Change a value here to restyle the
   whole site consistently.
   ========================================================================== */

:root {
  /* Palette — pulled from the TimTam Agrovet flier */
  --cream: #f8f7f1;
  --cream-deep: #f0ede2;
  --ink: #10261a;
  --ink-soft: #3a4d41;

  --green-900: #0a3320;
  --green-800: #0d4a2a;
  --green-700: #146c3a;
  --green-600: #1c8a49;
  --green-500: #2ea85c;
  --green-400: #57c47d;
  --green-100: #e6f5ec;

  --gold: #e3b023;
  --gold-deep: #b8860f;
  --red: #c1272d;
  --red-deep: #8f1c21;

  --font-display: "Baloo 2", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 10px 30px rgba(10, 51, 32, 0.12);
  --shadow-lift: 0 18px 40px rgba(10, 51, 32, 0.18);

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-900);
  margin: 0 0 .5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--green-900); color: #fff; }
.section--dark p { color: rgba(255,255,255,.78); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--cream-deep { background: var(--cream-deep); }

.eyebrow-row { display: flex; justify-content: center; margin-bottom: 22px; }

/* ---------- Signature element: hanging sign tag ----------
   Echoes the flier's dangling "NOW OPEN" sign and the red
   "Our Services" plate — used throughout as section labels. */
.hang-tag {
  position: relative;
  display: inline-block;
  padding: 10px 26px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow: var(--shadow-soft);
  transform: rotate(-2deg);
}
.hang-tag::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 2px;
  height: 18px;
  background: var(--ink-soft);
  opacity: .5;
  transform: translateX(-50%) rotate(4deg);
}
.hang-tag--green {
  background: linear-gradient(180deg, var(--green-600) 0%, var(--green-800) 100%);
}

.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }

/* ---------------------------- Header ---------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(10,51,32,.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 42px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--green-800);
}
.brand-name span { color: var(--green-500); display: block; font-size: 12px; font-weight: 600; letter-spacing: .08em; }

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  position: relative;
}
.nav-links a:hover { color: var(--green-700); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 8px 20px rgba(28,138,73,.35);
}
.btn-primary:hover { background: var(--green-700); }
.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border: 2px solid var(--green-700);
}
.btn-gold {
  background: linear-gradient(180deg, #f2c94c, var(--gold-deep));
  color: var(--green-900);
  box-shadow: 0 8px 20px rgba(184,134,15,.35);
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-900);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------------------------- Hero ---------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 100px;
  background: radial-gradient(circle at 85% 10%, var(--green-100), transparent 55%), var(--cream);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.section, .hero { scroll-margin-top: 90px; }
.hero-copy { max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(10,51,32,.1);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: var(--green-700);
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(193,39,45,.15);
}
.hero h1 {
  font-size: clamp(36px, 5.2vw, 58px);
  letter-spacing: -.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-600);
}
.hero-lede { font-size: 18px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green-800);
}
.hero-stats div span { font-size: 13px; color: var(--ink-soft); }

.hero-art {
  position: relative;
}
.hero-art .sign {
  position: absolute;
  top: -34px;
  right: 12px;
  z-index: 3;
  transform: rotate(4deg);
}
.hero-art .sign .string {
  width: 2px;
  height: 30px;
  background: var(--ink-soft);
  margin: 0 auto;
  opacity: .5;
}
.hero-art .sign .plate {
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, var(--red), var(--red-deep));
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-lift);
  transform: rotate(-3deg);
  font-size: 15px;
  line-height: 1.2;
}
.hero-photo img { width: 100%; height: auto; display: block; }

.leaf {
  position: absolute;
  opacity: .12;
  z-index: 0;
}

/* ---------------------------- Services ---------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10,51,32,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.service-card .check {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-weight: 800;
}
.service-card h3 { font-size: 17px; margin-bottom: 6px; }
.service-card p { font-size: 14px; margin: 0; }

/* ---------------------------- Products / Shop ---------------------------- */
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.filter-btn {
  background: #fff;
  border: 1.5px solid rgba(10,51,32,.14);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all .15s ease;
}
.filter-btn:hover { border-color: var(--green-600); color: var(--green-700); }
.filter-btn.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

.search-row {
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
}
.search-row input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  border-radius: 999px;
  border: 1.5px solid rgba(10,51,32,.14);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.search-row input:focus {
  outline: none;
  border-color: var(--green-600);
}
.search-row svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.results-count {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin: -14px 0 26px;
}

.pagination-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 44px;
}
.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1.5px solid rgba(10,51,32,.14);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  transition: all .15s ease;
}
.page-btn:hover:not(:disabled) { border-color: var(--green-600); color: var(--green-700); }
.page-btn.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}
.page-btn:disabled { opacity: .4; cursor: not-allowed; }
.page-dots { padding: 0 4px; color: var(--ink-soft); }

.shop-toolbar {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10,51,32,.06);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.product-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f3f7f2;
}
.product-media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--green-900);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 5px 10px;
  border-radius: 999px;
}
.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.product-cat { font-size: 12px; font-weight: 700; color: var(--green-600); text-transform: uppercase; letter-spacing: .05em; }
.product-body h3 { font-size: 18px; margin: 0; }
.product-body p { font-size: 14px; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.product-unit { font-size: 13px; color: var(--ink-soft); font-weight: 600; }

/* ---------------------------- Pickup locations ---------------------------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.location-card {
  background: var(--green-900);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}
.location-card::after {
  content: "";
  position: absolute;
  right: -30px; bottom: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.location-card h3 { color: #fff; font-size: 20px; margin-bottom: 6px; }
.location-card p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 0; }
.location-card--soon { opacity: 0.72; }
.location-badge {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--gold);
  color: var(--green-900);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 999px;
}
.location-pin {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* ---------------------------- About / CEO ---------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid var(--cream-deep);
  position: relative;
}
.about-photo .placeholder-note {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  background: rgba(10,51,32,.85);
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
}
.about-quote {
  border-left: 4px solid var(--green-600);
  padding-left: 20px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--green-900);
  margin: 20px 0;
}
.credentials { display: flex; gap: 26px; margin-top: 26px; flex-wrap: wrap; }
.credentials div strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--green-800); }
.credentials div span { font-size: 13px; color: var(--ink-soft); }

/* ---------------------------- Trust strip ---------------------------- */
.trust-strip {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid rgba(10,51,32,.08);
  border-bottom: 1px solid rgba(10,51,32,.08);
}
.trust-item { text-align: center; max-width: 180px; }
.trust-item strong { display: block; font-family: var(--font-display); color: var(--green-800); font-size: 15px; margin-bottom: 4px; }
.trust-item span { font-size: 13px; color: var(--ink-soft); }
.trust-item span a { color: var(--green-700); font-weight: 600; }
.trust-item span a:hover { text-decoration: underline; }

/* ---------------------------- Contact ---------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card .icon {
  width: 42px; height: 42px;
  background: var(--green-600);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card h4 { color: #fff; margin-bottom: 4px; font-size: 15px; }
.contact-card p { margin: 0; font-size: 14px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  min-height: 320px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.social-row a:hover { background: var(--green-600); }

/* ---------------------------- Footer ---------------------------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,.6);
  padding: 26px 0;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------------------------- Floating WhatsApp ---------------------------- */
.fab-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.5);
  z-index: 200;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------------------------- Order Modal ---------------------------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,20,15,.55);
  display: none;
  align-items: center; justify-content: center;
  z-index: 300;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-lift);
}
.modal h3 { margin-bottom: 4px; }
.modal .modal-product { color: var(--green-700); font-weight: 700; margin-bottom: 18px; }
.modal label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.modal select, .modal input[type=text] {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(10,51,32,.16);
  font-size: 15px;
  margin-bottom: 18px;
  font-family: inherit;
}
.modal-actions { display: flex; gap: 10px; }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none; border: none;
  font-size: 20px;
  color: var(--ink-soft);
}
.modal { position: relative; }

/* ---------------------------- Page header (shop page) ---------------------------- */
.page-header {
  padding: 56px 0 20px;
  text-align: center;
  background: radial-gradient(circle at 85% 10%, var(--green-100), transparent 55%), var(--cream);
}
.page-header h1 { font-size: clamp(30px, 4.5vw, 44px); }
.page-header p { max-width: 560px; margin: 0 auto; }
.breadcrumb {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--green-700); }

.view-all-row { text-align: center; margin-top: 36px; }

/* ---------------------------- How It Works ---------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  border: 1px solid rgba(10,51,32,.06);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 17px; margin-bottom: 6px; }
.step-card p { font-size: 14px; margin: 0; }

/* ---------------------------- Team ---------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 22px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 20px 26px;
  text-align: center;
  border: 1px solid rgba(10,51,32,.06);
  box-shadow: var(--shadow-soft);
}
.team-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 3px solid var(--cream-deep);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 16px; margin-bottom: 2px; }
.team-role { font-size: 13px; font-weight: 700; color: var(--green-600); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.team-card p.team-bio { font-size: 13.5px; margin: 0; }

/* ---------------------------- FAQ ---------------------------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10,51,32,.08);
  box-shadow: var(--shadow-soft);
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 30px 18px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--green-900);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--green-600);
  transition: transform .15s ease;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 18px; margin: 0; font-size: 14.5px; }

/* ---------------------------- Responsive ---------------------------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .site-header.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid rgba(10,51,32,.08);
    box-shadow: var(--shadow-soft);
  }
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-item summary { font-size: 14.5px; }
  .hero { padding: 40px 0 60px; }
  .hero-stats { gap: 20px; }
  .trust-strip { justify-content: flex-start; }
  .header-cta { display: none; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------------------------- Gallery ---------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.gallery-item {
  border: none;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-soft);
  background: var(--green-100);
  display: block;
  width: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,51,32,.35) 100%);
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ---------------------------- Lightbox ---------------------------- */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(10,20,15,.88);
  display: none;
  align-items: center; justify-content: center;
  z-index: 400;
  padding: 40px 20px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 26px;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

/* ---------------------------- Scroll-reveal animation ---------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
