/* FAIRWAY Enterprise — Website Renewal Prototype
   Design reference: Apollo Agriculture (apolloagriculture.com) — deep green + cream,
   full-bleed field photography, bold rounded headlines, human storytelling. */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
  --green: #008C57;
  --green-dark: #0B3323;
  --green-deep: #072318;
  --blue: #144986;
  --black: #414042;
  --white: #FFFFFF;
  --cream: #F6F2E9;
  --cream-deep: #EDE6D6;
  --line: #E2DCCB;
  --text: #22281F;
  --text-soft: #5B5F55;

  --font: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow: 0 20px 50px -25px rgba(7, 35, 24, 0.35);
  --shadow-sm: 0 8px 20px -12px rgba(7, 35, 24, 0.25);

  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}
.section-light .eyebrow,
.on-dark .eyebrow { color: #7CD9AE; }
.on-dark .eyebrow::before { background: #7CD9AE; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--green-deep);
}

h2 { font-size: clamp(28px, 3.4vw, 42px); }
h3 { font-size: 21px; }

p { color: var(--text-soft); }

.lede {
  font-size: 18px;
  max-width: 640px;
}

.section {
  padding: 96px 0;
}
.section--tight { padding: 64px 0; }
.section--cream { background: var(--cream); }
.section--dark {
  background: linear-gradient(180deg, var(--green-deep), var(--green-dark));
  color: var(--white);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.72); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #007249; }
.btn-outline { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-ghost { border-color: var(--line); color: var(--green-deep); }
.btn-ghost:hover { background: var(--cream); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-deep);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.brand span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 10px;
  margin-left: 2px;
}
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.main-nav a.active { background: var(--white); color: var(--green-deep); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  background: #0B3323;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,35,24,0.55) 0%, rgba(7,35,24,0.35) 40%, rgba(7,35,24,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 68px;
  color: var(--white);
  width: 100%;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(38px, 5.6vw, 68px);
  max-width: 820px;
  margin-bottom: 20px;
}
.hero-content .lede { color: rgba(255,255,255,0.85); font-size: 19px; max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Audience split strip */
.audience-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.audience-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.audience-card {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background 0.15s ease;
}
.audience-card:last-child { border-right: none; }
.audience-card:hover { background: var(--cream); }
.audience-card .label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); display: block; margin-bottom: 4px; }
.audience-card strong { font-size: 16.5px; color: var(--green-deep); }
.audience-card .arrow {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px; color: var(--green);
}

/* Trust / partner logo strip */
.trust-strip { padding: 40px 0; background: var(--cream); border-bottom: 1px solid var(--line); }
.trust-strip .trust-label {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-soft); text-align: center; margin-bottom: 22px;
}
.trust-logos {
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-logos .badge {
  font-weight: 800; font-size: 17px; color: var(--green-deep); opacity: 0.55;
  letter-spacing: 0.02em;
}
.trust-logos .badge small { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-soft); opacity: 0.9; }

/* Cards grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.service-card .icon-badge {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card .icon-badge img { width: 30px; height: 30px; object-fit: contain; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 15px; margin-bottom: 16px; }
.service-card .link { font-size: 14px; font-weight: 700; color: var(--green); }

/* Stats */
.stats-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-deep);
}
.stat-cell {
  padding: 38px 22px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.68); font-weight: 600; line-height: 1.4; }

/* Commodities */
.commodity-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.commodity-chip {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--line);
  font-weight: 700;
  font-size: 15px;
  color: var(--green-deep);
}
.warehouse-note {
  margin-top: 40px;
  padding: 26px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.warehouse-note img { width: 34px; height: 34px; flex-shrink: 0; }

/* News cards */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.news-card .thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.news-card .body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.news-card .date { font-size: 12.5px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.news-card h3 { font-size: 18px; margin-bottom: 10px; }
.news-card p { font-size: 14.5px; flex: 1; }
.news-card .link { margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--green-deep); }

/* Quote block */
.quote-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--line);
  position: relative;
}
.quote-block .mark { font-size: 64px; color: var(--green); opacity: 0.25; font-weight: 800; line-height: 0.5; display: block; margin-bottom: 18px; }
.quote-block p.quote-text { font-size: 22px; color: var(--green-deep); font-weight: 600; font-style: italic; line-height: 1.5; margin-bottom: 22px; }
.quote-block .attribution { font-size: 14px; font-weight: 700; color: var(--text-soft); }

/* Photo gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
}
.gallery-grid > div {
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}
.gallery-grid .tall { grid-row: span 2; }

/* CTA band */
.cta-band {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--white);
}
.cta-band h2 { color: var(--white); font-size: clamp(24px, 2.6vw, 32px); max-width: 460px; }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 420px; margin-top: 10px; }

/* Footer */
.site-footer { background: var(--green-deep); color: rgba(255,255,255,0.72); padding: 72px 0 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 28px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14.5px; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a, .footer-col address { color: rgba(255,255,255,0.65); font-size: 14.5px; font-style: normal; line-height: 1.7; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 24px;
  font-size: 13px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 10px;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(180deg, var(--green-deep), var(--green-dark));
  color: var(--white);
  padding: 76px 0 68px;
}
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4.4vw, 50px); max-width: 720px; }
.page-hero .lede { color: rgba(255,255,255,0.78); margin-top: 16px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 18px; font-weight: 600; letter-spacing: 0.04em; }
.breadcrumb span { color: #7CD9AE; }

/* Mission/vision */
.pillar-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
}
.pillar-card h3 { color: var(--green-deep); margin-bottom: 14px; }
.pillar-card ul li { padding-left: 22px; position: relative; margin-bottom: 10px; font-size: 15px; color: var(--text-soft); }
.pillar-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* Timeline */
.timeline { border-left: 2px solid var(--line); padding-left: 28px; display: flex; flex-direction: column; gap: 34px; }
.timeline-item { position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: -33px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--green); border: 3px solid var(--cream);
}
.timeline-item .year { font-weight: 800; color: var(--green); font-size: 14px; letter-spacing: 0.04em; margin-bottom: 4px; display: block; }

/* Service detail rows */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .visual { order: 2; }
.service-detail .visual {
  border-radius: var(--radius-lg);
  min-height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.service-detail .visual .tag {
  position: absolute; top: 20px; left: 20px;
  background: rgba(7,35,24,0.85); color: var(--white);
  padding: 8px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
}
.service-detail .kicker { font-weight: 700; color: var(--green); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.service-detail ul { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.service-detail ul li { padding-left: 24px; position: relative; font-size: 15px; color: var(--text); }
.service-detail ul li::before { content: '→'; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* Partner cards */
.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
}
.partner-card .mark {
  width: 68px; height: 68px; border-radius: 16px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: var(--green-deep);
  flex-shrink: 0; text-align: center; line-height: 1.2;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; }
.contact-info-card {
  background: var(--green-deep); color: var(--white);
  border-radius: var(--radius-lg); padding: 42px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 22px; }
.contact-row { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-row:first-of-type { border-top: none; }
.contact-row .k { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #7CD9AE; width: 90px; flex-shrink: 0; padding-top: 2px; }
.contact-row .v { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.map-block {
  margin-top: 24px; border-radius: var(--radius); overflow: hidden; height: 180px;
  background:
    radial-gradient(circle at 32% 40%, rgba(0,140,87,0.5), transparent 55%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 26px),
    var(--green-dark);
  position: relative;
}
.map-block .pin { position: absolute; left: 32%; top: 40%; transform: translate(-50%,-100%); font-size: 30px; }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 42px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--green-deep); }
.field input, .field select, .field textarea {
  font-family: var(--font);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--text);
  background: var(--cream);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: var(--white); }
.form-note { font-size: 12.5px; color: var(--text-soft); margin-top: 14px; }

/* News filter tabs */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-tabs button {
  font-family: var(--font); cursor: pointer;
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--white); font-weight: 700; font-size: 14px; color: var(--text-soft);
}
.filter-tabs button.active { background: var(--green-deep); border-color: var(--green-deep); color: var(--white); }

/* Utility */
.mt-64 { margin-top: 64px; }
.text-center { text-align: center; margin-left: auto; margin-right: auto; }

@media (max-width: 980px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .audience-strip .container { grid-template-columns: 1fr; }
  .audience-card { border-right: none; border-bottom: 1px solid var(--line); }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse .visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(7, 35, 24, 0.55);
  z-index: 300;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 18px 36px -8px rgba(7, 35, 24, 0.6); }
.whatsapp-float svg { width: 30px; height: 30px; }

@media (max-width: 720px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); background: none; cursor: pointer; font-size: 18px;
  }
  .site-header.nav-open .main-nav {
    display: flex; flex-direction: column; position: absolute; top: 84px; left: 0; right: 0;
    background: var(--green-deep); padding: 12px 20px 24px; gap: 2px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .site-header.nav-open .main-nav a { padding: 13px 14px; }
  .header-actions .btn span.long { display: none; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 110px; }
}

/* ---- Admin CMS (admin.html) ---- */
.admin-shell { min-height: 100vh; background: var(--cream); }
.admin-gate { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 24px; }
.admin-gate-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; max-width: 380px; width: 100%; box-shadow: var(--shadow); text-align: center; }
.admin-gate-card img { height: 30px; margin: 0 auto 22px; }
.admin-gate-card input { width: 100%; margin: 18px 0; text-align: center; }
.admin-topbar { background: var(--green-deep); color: var(--white); padding: 18px 28px; display: flex; justify-content: space-between; align-items: center; }
.admin-topbar .brand-mini { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.admin-topbar .brand-mini img { height: 22px; filter: brightness(0) invert(1); }
.admin-tabs { display: flex; gap: 6px; padding: 16px 28px 0; background: var(--white); border-bottom: 1px solid var(--line); overflow-x: auto; }
.admin-tab-btn { padding: 12px 18px; border-radius: 10px 10px 0 0; font-weight: 700; font-size: 14px; color: var(--text-soft); cursor: pointer; border: none; background: none; font-family: var(--font); white-space: nowrap; }
.admin-tab-btn.active { color: var(--green-deep); background: var(--cream); }
.admin-panel { padding: 32px 28px 40px; max-width: 920px; margin: 0 auto; }
.admin-panel h2 { font-size: 22px; margin-bottom: 4px; }
.admin-panel .hint { font-size: 13.5px; color: var(--text-soft); margin-bottom: 24px; }
.admin-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 16px; position: relative; }
.admin-card .remove-btn { position: absolute; top: 14px; right: 14px; background: none; border: none; color: #B3261E; font-weight: 700; cursor: pointer; font-size: 13px; font-family: var(--font); }
.admin-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.admin-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.admin-field.full { grid-column: 1 / -1; }
.admin-field label { font-size: 11.5px; font-weight: 700; color: var(--green-deep); text-transform: uppercase; letter-spacing: 0.05em; }
.admin-field input, .admin-field select, .admin-field textarea {
  font-family: var(--font); border: 1.5px solid var(--line); border-radius: 10px; padding: 10px 12px; font-size: 14px; background: var(--cream); color: var(--text);
}
.admin-field textarea { min-height: 76px; resize: vertical; }
.admin-field input:focus, .admin-field select:focus, .admin-field textarea:focus { outline: none; border-color: var(--green); background: var(--white); }
.admin-add-btn { width: 100%; padding: 16px; border-radius: var(--radius-sm); border: 1.5px dashed var(--line); background: none; font-family: var(--font); font-weight: 700; color: var(--text-soft); cursor: pointer; }
.admin-add-btn:hover { border-color: var(--green); color: var(--green); }
.admin-actions-bar { position: sticky; bottom: 0; background: var(--white); border-top: 1px solid var(--line); padding: 16px 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.admin-status { font-size: 13px; font-weight: 600; }
.admin-status.ok { color: var(--green); }
.admin-status.err { color: #B3261E; }
@media (max-width: 720px) {
  .admin-field-grid { grid-template-columns: 1fr; }
  .admin-topbar, .admin-tabs, .admin-panel, .admin-actions-bar { padding-left: 16px; padding-right: 16px; }
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 40px 28px;
}
.team-card { text-align: center; }
.team-photo {
  width: 168px; height: 168px; margin: 0 auto 20px;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(from 210deg, var(--green), var(--green-dark) 55%, var(--green));
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; align-items: center; justify-content: center;
}
.team-photo img, .team-photo span {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; border: 4px solid var(--white);
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 48px; font-weight: 800; color: var(--green);
}
.team-card:hover .team-photo { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-card h3 { font-size: 18px; margin-bottom: 6px; }
.team-role { font-size: 14px; color: var(--green); font-weight: 700; line-height: 1.4; }
.team-quote { font-size: 13.5px; margin-top: 10px; font-style: italic; }

/* Map links */
a.map-block { display: block; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease; }
a.map-block:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.map-badge {
  position: absolute; right: 14px; bottom: 14px;
  background: var(--white); color: var(--green-deep);
  font-size: 12.5px; font-weight: 700; padding: 8px 14px; border-radius: 999px;
}
.map-link { color: inherit; }
.map-link:hover { text-decoration: underline; }
.map-link--cta { display: inline-block; margin-top: 8px; color: #7CD9AE; font-weight: 700; font-size: 13.5px; }

/* Location map image + button */
.location-map { margin-top: 24px; border-radius: var(--radius); overflow: hidden; background: var(--white); }
.location-map img { width: 100%; height: auto; display: block; }
.map-btn { margin-top: 16px; width: 100%; justify-content: center; }

.form-actions { display: flex; gap: 12px; flex-wrap: wrap; }
