:root {
  --forest: #143a29;
  --forest-2: #1d5138;
  --moss: #58764c;
  --cream: #f4efe5;
  --cream-2: #fbf9f4;
  --earth: #a87846;
  --ink: #17211b;
  --muted: #667169;
  --line: #dce2db;
  --white: #fff;
  --shadow-sm: 0 8px 22px rgba(20, 58, 41, .07);
  --shadow: 0 18px 50px rgba(17, 43, 30, .11);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 980px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  background: rgba(10, 31, 20, .94);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f0dfbd;
  color: var(--forest);
  font-weight: 800;
  letter-spacing: .06em;
  flex: 0 0 auto;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-text {
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: .9rem;
  color: rgba(255,255,255,.86);
  transition: .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.main-nav .nav-cta {
  background: #f1d9ab;
  color: var(--forest);
  padding-inline: 16px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  place-items: center;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: #fff;
  margin: 2px 0;
  border-radius: 99px;
}

/* Typography */
.eyebrow {
  margin: 0 0 10px;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
}

.eyebrow-light {
  color: #d9ebdc;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: #fff;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 15px;
  color: var(--muted);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #203b2c;
}

/*
  Desktop:
  Cover is intentional here because large landscape screens
  can display the hero edge-to-edge.
*/
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image), url('/images/farm-placeholder.svg');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5,20,12,.84) 0%,
      rgba(5,20,12,.5) 43%,
      rgba(5,20,12,.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5,20,12,.16),
      rgba(5,20,12,.62)
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 105px;
  max-width: 800px;
  margin-left: max(16px, calc((100vw - var(--container))/2));
  margin-right: auto;
  width: min(calc(100% - 32px), 800px);
}

.hero-eyebrow {
  color: #dbead8;
}

.hero h1 em {
  color: #f4d9ab;
  font-style: normal;
}

.hero-lead {
  max-width: 670px;
  color: rgba(255,255,255,.83);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: .9rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 12px 26px rgba(20,58,41,.2);
}

.btn-light {
  background: #fff;
  color: var(--forest);
}

.btn-light-outline {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.07);
  color: #fff;
}

.btn-secondary {
  background: #edf2ed;
  color: var(--forest);
  border-color: #dbe4dc;
}

.btn-wide {
  width: 100%;
}

.scroll-cue {
  position: absolute;
  z-index: 1;
  right: max(16px, calc((100vw - var(--container))/2));
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.scroll-cue span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* Sections */
.section {
  padding: 90px 0;
}

.section-light {
  background: #fff;
}

.section-cream {
  background: var(--cream-2);
}

.section-heading {
  margin-bottom: 35px;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 680px;
}

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.split-heading h2 {
  margin-bottom: 0;
}

/* Intro / visual rhythm */
.split-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 66px;
}

.split-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
  background: #e7ece7;
  box-shadow: var(--shadow);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.48);
}

.image-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 13px;
  background: rgba(11,30,20,.68);
  color: #fff;
  border-radius: 13px;
  font-size: .8rem;
  backdrop-filter: blur(9px);
}

.split-copy h2 {
  max-width: 640px;
}

.split-copy p {
  max-width: 650px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--forest);
  font-weight: 800;
  font-size: .87rem;
}

/* Offer cards */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #e4e8e2;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
}

.offer-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.offer-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e5ebe5;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.offer-card:hover .offer-media img {
  transform: scale(1.05);
}

.offer-media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.34));
}

.offer-badge {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--forest);
  font-size: .68rem;
  font-weight: 800;
}

.offer-body {
  padding: 23px 23px 25px;
}

.offer-body h3 {
  margin-bottom: 8px;
}

.offer-body p {
  min-height: 72px;
  font-size: .9rem;
}

/* Catalog cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #e8ede8;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-body {
  padding: 17px;
}

.card-body h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: .72rem;
  color: var(--muted);
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--forest);
  font-weight: 800;
  font-size: .68rem;
}

/* Dark band */
.dark-band {
  background:
    radial-gradient(circle at top right, rgba(103,143,112,.16), transparent 38%),
    var(--forest);
  color: #fff;
}

.dark-band p {
  color: rgba(255,255,255,.72);
}

.benefits-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.benefit-intro h2 {
  color: #fff;
  max-width: 530px;
}

.benefit-list {
  display: grid;
  gap: 10px;
}

.benefit {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.benefit span {
  color: #e2c78d;
  font-weight: 800;
}

.benefit h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.benefit p {
  margin-bottom: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  gap: 12px;
}

.gallery-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 19px;
  background: #dde5dc;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .55s ease;
}

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

.gallery-tile span {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 13px;
  padding: 9px 11px;
  background: rgba(8,25,16,.7);
  color: #fff;
  border-radius: 11px;
  font-size: .78rem;
  backdrop-filter: blur(8px);
}

.gallery-placeholder,
.empty-state {
  padding: 32px;
  border: 1px dashed #cad4ca;
  border-radius: 18px;
  background: #f6f9f5;
  color: var(--muted);
  text-align: center;
}

/* CTA */
.cta-section {
  padding: 92px 0;
  background: linear-gradient(135deg, #173e2b, #27553b 62%, #476a4f);
  color: #fff;
}

.cta-inner {
  max-width: 850px;
  text-align: center;
}

.cta-inner h2 {
  color: #fff;
}

.cta-inner p {
  color: rgba(255,255,255,.75);
  max-width: 720px;
  margin-inline: auto;
}

.centered-buttons {
  justify-content: center;
}

/* Forms */
.form-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.form-card form > label,
.settings-panel form > label,
.settings-panel > label,
.settings-panel label {
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
}

label small {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 500;
  margin-top: 7px;
}

.optional {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #ced8cf;
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  margin-top: 8px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(20,58,41,.08);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 18px;
}

.form-errors {
  padding: 14px 16px;
  background: #fff3f1;
  color: #87372c;
  border: 1px solid #f0cbc4;
  border-radius: 14px;
  margin-bottom: 20px;
}

.form-errors ul {
  margin: 8px 0 0 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 60px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 480px;
}

.contact-items {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-items span {
  display: block;
  color: var(--muted);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-items a {
  color: var(--forest);
  font-weight: 800;
}

.contact-note {
  margin-top: 24px;
  padding: 18px;
  background: var(--cream);
  border-radius: 16px;
}

.contact-note p {
  margin-bottom: 0;
  font-size: .86rem;
}

.selected-inquiry {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 15px;
  border-radius: 13px;
  background: #eff5ef;
  margin-bottom: 18px;
}

.selected-inquiry span {
  color: var(--muted);
  font-size: .78rem;
}

/* FAQ/details */
.faq-list {
  max-width: 880px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  padding: 0 18px;
}

details summary {
  padding: 19px 0;
  list-style: none;
  cursor: pointer;
  font-weight: 800;
}

details summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 0 19px;
  margin: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}

.detail-image {
  overflow: hidden;
  border-radius: 26px;
  min-height: 560px;
  background: #e8eee8;
  box-shadow: var(--shadow);
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-copy h1 {
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.fact {
  padding: 14px;
  border-radius: 15px;
  background: #f5f8f4;
}

.fact span {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.fact strong {
  display: block;
  margin-top: 3px;
}

/* Footer */
.site-footer {
  background: #0e2619;
  color: #fff;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr .8fr .9fr .9fr;
  gap: 32px;
  padding-bottom: 48px;
}

.footer-brand {
  color: #fff;
}

.footer-copy {
  max-width: 440px;
  color: rgba(255,255,255,.61);
  font-size: .86rem;
  margin-top: 17px;
}

.site-footer h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #ead6a8;
  margin-bottom: 13px;
}

.site-footer a,
.site-footer span {
  display: block;
  color: rgba(255,255,255,.69);
  font-size: .85rem;
  margin: 8px 0;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 22px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
}

/* Admin */
.admin-body {
  background: #f4f7f3;
  color: var(--ink);
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #102c1f;
  color: #fff;
  box-shadow: 0 6px 25px rgba(0,0,0,.12);
}

.admin-header-inner {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.admin-header .brand-text small {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-top-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-top-nav a,
.admin-top-nav button {
  color: rgba(255,255,255,.84);
  background: transparent;
  border: 0;
  font-size: .82rem;
  padding: 7px 10px;
}

.admin-top-nav button:hover,
.admin-top-nav a:hover {
  color: #fff;
}

.admin-main {
  padding: 45px 0 85px;
}

.admin-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.admin-title h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 6px;
}

.admin-title p {
  margin-bottom: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 35px;
}

.stat-card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.stat-card strong {
  display: block;
  font-size: 2.05rem;
  margin: 4px 0 2px;
  font-family: Georgia, "Times New Roman", serif;
}

.stat-card small {
  color: var(--muted);
}

.stat-accent {
  background: #edf5ee;
  border-color: #ccddcf;
}

.admin-section-block {
  margin-bottom: 35px;
}

.section-heading-row,
.panel-heading,
.settings-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading-row h2,
.panel-heading h2,
.settings-panel-head h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.admin-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.admin-action {
  min-height: 125px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: .2s ease;
}

.admin-action:hover {
  transform: translateY(-3px);
  border-color: #bfcec0;
  box-shadow: var(--shadow);
}

.admin-action span {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #eaf1ea;
  color: var(--forest);
  font-weight: 800;
}

.admin-action b {
  font-size: .95rem;
}

.admin-action small {
  color: var(--muted);
}

.admin-panel,
.settings-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 22px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 13px 12px;
  border-bottom: 1px solid #edf1ed;
  text-align: left;
  font-size: .82rem;
}

th {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .68rem;
}

td small {
  display: block;
  color: var(--muted);
}

.admin-status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
}

.admin-status.new {
  background: #fff0d6;
  color: #835d18;
}

.admin-status.contacted {
  background: #e9f1ff;
  color: #355d93;
}

.admin-status.resolved {
  background: #e7f5ea;
  color: #2b6d42;
}

.settings-chip {
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf5ee;
  color: var(--forest);
  font-size: .7rem;
  font-weight: 800;
  white-space: nowrap;
}

.settings-intro {
  max-width: 720px;
  margin: 0;
}

.settings-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 12px 0 18px;
}

.settings-upload-grid > label {
  padding: 17px;
  background: #f7faf6;
  border: 1px solid #e2e9e2;
  border-radius: 17px;
}

.settings-upload-grid label > span {
  display: block;
  font-weight: 800;
}

.settings-preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 13px;
  margin-top: 11px;
  background: #e5ebe5;
  border: 1px solid #d9e1d9;
}

.settings-preview.icon-preview {
  width: 90px;
  height: 90px;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
}

.settings-preview.logo-preview {
  width: 100%;
  height: 100px;
  object-fit: contain;
  background: #fff;
}

.preview-placeholder {
  display: grid;
  place-items: center;
  border-radius: 13px;
  border: 1px dashed #ccd8cd;
  background: linear-gradient(135deg,#f0f5ef,#e6ede5);
  color: #6a796e;
  margin-top: 11px;
}

.photo-placeholder {
  min-height: 145px;
}

.logo-placeholder {
  min-height: 100px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--forest);
}

.logo-placeholder small {
  display: block;
  font: 500 .7rem Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--muted);
}

.icon-placeholder {
  width: 90px;
  height: 90px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  color: var(--forest);
}

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

.settings-savebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--forest);
  color: #fff;
  padding: 19px 20px;
  border-radius: 18px;
  margin-top: 20px;
}

.settings-savebar small {
  display: block;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

.settings-savebar .btn-secondary {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}

.settings-success {
  background: #e8f5eb;
  color: #24653c;
  border: 1px solid #cce4d2;
  border-radius: 14px;
  padding: 13px 15px;
  margin-bottom: 18px;
}

.admin-note {
  margin-top: 18px;
  padding: 17px 18px;
  background: var(--cream);
  border: 1px solid #e5dccb;
  border-radius: 16px;
}

.admin-note p {
  margin: 5px 0 0;
  font-size: .84rem;
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Tablet */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    background: #0f3021;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
  }

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

  .main-nav a {
    border-radius: 10px;
  }

  .menu-toggle {
    display: grid;
  }

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

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

  .benefits-grid,
  .split-section,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .detail-image {
    min-height: 460px;
  }

  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

/* Mobile */
@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  /*
    IMPORTANT MOBILE HERO FIX

    1. 58svh keeps the hero from taking almost the whole phone.
    2. contain keeps the complete uploaded photograph visible.
    3. The image is centered and is never stretched.
  */
  .hero {
    min-height: 58svh;
    max-height: 680px;
    background: #203b2c;
  }

  .hero::before {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transform: none;
  }

  .hero-content {
    width: min(calc(100% - 24px), 800px);
    margin-left: 12px;
    margin-right: 12px;
    padding-top: 92px;
    padding-bottom: 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5,20,12,.08) 0%,
        rgba(5,20,12,.12) 34%,
        rgba(5,20,12,.72) 100%
      );
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .split-heading,
  .admin-title,
  .settings-savebar,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .offer-grid,
  .card-grid,
  .gallery-grid,
  .gallery-grid.compact,
  .settings-upload-grid,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .offer-body p {
    min-height: 0;
  }

  .split-visual {
    min-height: 350px;
  }

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

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

  .admin-actions {
    grid-template-columns: 1fr;
  }

  .admin-panel,
  .settings-panel,
  .form-card {
    padding: 18px;
  }

  /* Mobile clarity and touch safety */
  body {
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    background: rgba(10,31,20,.96);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark,
  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 190px;
  }

  .main-nav {
    top: 62px;
    max-height: calc(100svh - 78px);
    overflow-y: auto;
  }

  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    line-height: 1.14;
  }

  h3 {
    font-size: 1.22rem;
  }

  p {
    font-size: 1rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .btn {
    min-height: 48px;
    padding: 12px 16px;
  }

  .split-visual {
    min-height: 300px;
  }

  .detail-image {
    min-height: 330px;
  }

  .gallery-tile {
    min-height: 220px;
  }

  .offer-card,
  .card,
  .settings-panel,
  .admin-panel {
    min-width: 0;
  }

  input,
  textarea,
  select {
    font-size: 16px;
  }

  .admin-top-nav {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .admin-top-nav a,
  .admin-top-nav button {
    min-height: 40px;
  }
}

/* Small phones */
@media (max-width: 470px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

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

  .brand-text {
    font-size: .9rem;
  }

  .button-row .btn {
    width: 100%;
  }
}

/* Extra-small phones */
@media (max-width: 380px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .brand-text {
    max-width: 145px;
  }

  .admin-login-card {
    padding: 22px 18px;
  }

  .hero {
    min-height: 54svh;
  }

  .hero-content {
    padding-top: 84px;
    padding-bottom: 28px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .card,
  .offer-card,
  .gallery-tile img,
  .card-media img {
    transition: none;
  }
}

/* Admin login */
.admin-login {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(79,122,88,.12), transparent 35%),
    linear-gradient(145deg,#edf4ee,#f8f5ed);
}

.admin-login-card {
  width: min(100%, 470px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.admin-login-card h1 {
  color: var(--ink);
  font-size: 2.8rem;
}

.admin-login-card .brand {
  margin-bottom: 34px;
}

.admin-login-card .back-link {
  display: block;
  margin-top: 17px;
  color: var(--forest);
  font-weight: 700;
  font-size: .85rem;
}
/* Final mobile hero image fix */
@media (max-width: 760px) {
  .hero {
    min-height: 62svh;
    max-height: 62svh;
  }

  .hero::before {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transform: none;
  }

  .hero-content {
    padding-top: 76px;
    padding-bottom: 42px;
  }
}

/* ===== FINAL HERO FIX ===== */

/* Keep original desktop layered hero design */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Mobile: image controls the hero height */
@media (max-width: 760px) {
  .hero {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    display: block;
    background: #203b2c;
  }

  .hero-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero-content {
    position: absolute;
    z-index: 2;
    left: 12px;
    right: 12px;
    bottom: 0;
    width: auto;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0 28px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
    margin-bottom: 12px;
  }

  .hero-lead {
    font-size: .94rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .hero .button-row {
    gap: 8px;
  }

  .hero .btn {
    min-height: 44px;
    padding: 10px 14px;
  }

  .scroll-cue {
    display: none;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-content {
    padding-top: 70px;
    padding-bottom: 22px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: .9rem;
  }
}

/* DESKTOP: COW PHOTO AS FULL HERO BACKGROUND WITH TEXT ON TOP */
@media (min-width: 761px) {
  .hero {
    min-height: 100svh;
    display: grid;
    align-items: end;
    position: relative;
    overflow: hidden;
    background: #203b2c;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

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

  .scroll-cue {
    position: absolute;
    z-index: 3;
  }
}

/* MOBILE ONLY: BRIGHTER, CLEARER HERO PHOTO */
@media (max-width: 760px) {
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5,20,12,.20) 0%, rgba(5,20,12,.08) 55%, rgba(5,20,12,.02) 100%),
      linear-gradient(180deg, rgba(5,20,12,.02), rgba(5,20,12,.16));
  }

  .hero-image {
    filter: brightness(1.18) contrast(1.05);
  }
}

/* =========================================================
   FINAL HERO OVERRIDE — DESKTOP + MOBILE
   ========================================================= */

/* DESKTOP / PC */
@media (min-width: 761px) {
  .hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #203b2c;
  }

  .hero::before {
    display: none !important;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: none;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(5,20,12,.84) 0%, rgba(5,20,12,.50) 43%, rgba(5,20,12,.18) 100%),
      linear-gradient(180deg, rgba(5,20,12,.16), rgba(5,20,12,.62));
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 150px;
    padding-bottom: 105px;
  }

  .scroll-cue {
    position: absolute;
    z-index: 3;
  }
}

/* MOBILE / PHONE */
@media (max-width: 760px) {
  .hero {
    position: relative;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    display: block;
    overflow: hidden;
    background: #203b2c;
  }

  .hero::before {
    display: none !important;
  }

  .hero-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    z-index: 0;
    filter: brightness(1.25) contrast(1.06);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(5,20,12,.16) 0%, rgba(5,20,12,.07) 55%, rgba(5,20,12,.02) 100%),
      linear-gradient(180deg, rgba(5,20,12,.01), rgba(5,20,12,.14));
  }

  .hero-content {
    position: absolute;
    z-index: 2;
    left: 12px;
    right: 12px;
    bottom: 0;
    width: min(calc(100% - 24px), 800px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 76px;
    padding-bottom: 42px;
  }

  .scroll-cue {
    display: none;
  }
}

/* VERY SMALL PHONES */
@media (max-width: 380px) {
  .hero-content {
    padding-top: 70px;
    padding-bottom: 22px;
  }

  .hero-image {
    filter: brightness(1.25) contrast(1.06);
  }
}

/* FINAL CORRECTION: PHONE BRIGHTNESS ONLY */
@media screen and (max-width: 760px) {
  .hero-image {
    filter: brightness(1.40) contrast(1.08) !important;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5,20,12,.08) 0%, rgba(5,20,12,.04) 55%, rgba(5,20,12,0) 100%),
      linear-gradient(180deg, rgba(5,20,12,0), rgba(5,20,12,.08)) !important;
  }
}

/* PC: DO NOT BRIGHTEN THE PHOTO */
@media screen and (min-width: 761px) {
  .hero-image {
    filter: none !important;
  }
}

/* =========================================================
   EXPERIENCE SECTION — PREMIUM RESPONSIVE DESIGN
   ========================================================= */

.dark-band {
  background: #f7f5ef;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.dark-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: rgba(20, 58, 41, .045);
  pointer-events: none;
}

.dark-band .container {
  position: relative;
  z-index: 1;
}

.dark-band p {
  color: var(--muted);
}

.dark-band .benefits-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.dark-band .benefit-intro {
  max-width: 540px;
}

.dark-band .benefit-intro .eyebrow {
  color: var(--moss);
}

.dark-band .benefit-intro h2 {
  color: var(--ink);
  max-width: 520px;
  font-size: clamp(2.3rem, 4.5vw, 3.7rem);
  line-height: 1.08;
}

.dark-band .benefit-intro > p:last-child {
  max-width: 470px;
  font-size: 1.02rem;
}

.dark-band .benefit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.dark-band .benefit {
  position: relative;
  display: block;
  padding: 24px 26px 24px 30px;
  background: #fff;
  border: 1px solid #e2e5df;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(20, 58, 41, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.dark-band .benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: 0 5px 5px 0;
  background: var(--forest);
}

.dark-band .benefit:hover {
  transform: translateY(-4px);
  border-color: #d1d9d1;
  box-shadow: 0 16px 38px rgba(20, 58, 41, .11);
}

.dark-band .benefit h3 {
  color: var(--ink);
  margin-bottom: 7px;
  font-size: 1.3rem;
}

.dark-band .benefit p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}

/* Phone */
@media (max-width: 760px) {
  .dark-band {
    padding: 68px 0;
  }

  .dark-band .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dark-band .benefit-intro {
    max-width: none;
  }

  .dark-band .benefit-intro h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.12;
  }

  .dark-band .benefit-intro > p:last-child {
    font-size: .96rem;
  }

  .dark-band .benefit-list {
    gap: 12px;
  }

  .dark-band .benefit {
    padding: 21px 20px 21px 25px;
    border-radius: 17px;
  }

  .dark-band .benefit::before {
    top: 17px;
    bottom: 17px;
    width: 3px;
  }

  .dark-band .benefit h3 {
    font-size: 1.18rem;
  }

  .dark-band .benefit p {
    font-size: .92rem;
    line-height: 1.6;
  }
}

@media (max-width: 380px) {
  .dark-band {
    padding: 58px 0;
  }

  .dark-band .benefit {
    padding: 19px 17px 19px 22px;
  }
}

/* =========================================================
   EXPERIENCE SECTION — FINAL PROFESSIONAL DESIGN
   ========================================================= */

.dark-band {
  background: #f7f5ef !important;
  color: var(--ink) !important;
  position: relative;
  overflow: hidden;
}

.dark-band::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -220px;
  top: -220px;
  border-radius: 50%;
  background: rgba(20, 58, 41, .045);
  pointer-events: none;
}

.dark-band .container {
  position: relative;
  z-index: 1;
}

.dark-band .eyebrow {
  color: var(--moss) !important;
}

.dark-band p {
  color: var(--muted) !important;
}

.dark-band .benefits-grid {
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.dark-band .benefit-intro h2 {
  color: var(--ink) !important;
  max-width: 540px;
}

.dark-band .benefit-intro > p:last-child {
  max-width: 500px;
  color: var(--muted) !important;
}

.dark-band .benefit-list {
  display: grid;
  gap: 16px;
}

.dark-band .benefit {
  display: block;
  position: relative;
  padding: 25px 28px 25px 32px;
  background: #ffffff !important;
  border: 1px solid #e2e5df !important;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(20, 58, 41, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.dark-band .benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: var(--forest);
  border-radius: 0 5px 5px 0;
}

.dark-band .benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(20, 58, 41, .12);
}

.dark-band .benefit h3 {
  color: var(--ink) !important;
  font-size: 1.3rem;
  margin-bottom: 7px;
}

.dark-band .benefit p {
  color: var(--muted) !important;
  margin: 0;
  font-size: .94rem;
  line-height: 1.65;
}

/* TABLET */
@media (max-width: 1020px) {
  .dark-band .benefits-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .dark-band .benefit-intro {
    max-width: 700px;
  }
}

/* PHONE */
@media (max-width: 760px) {
  .dark-band {
    padding: 68px 0 !important;
  }

  .dark-band .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dark-band .benefit-intro h2 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.12;
  }

  .dark-band .benefit-intro > p:last-child {
    font-size: .96rem;
    line-height: 1.65;
  }

  .dark-band .benefit-list {
    gap: 13px;
  }

  .dark-band .benefit {
    padding: 21px 19px 21px 25px;
    border-radius: 17px;
  }

  .dark-band .benefit::before {
    top: 17px;
    bottom: 17px;
    width: 3px;
  }

  .dark-band .benefit h3 {
    font-size: 1.18rem;
  }

  .dark-band .benefit p {
    font-size: .92rem;
    line-height: 1.6;
  }
}

/* SMALL PHONES */
@media (max-width: 380px) {
  .dark-band {
    padding: 58px 0 !important;
  }

  .dark-band .benefit {
    padding: 19px 17px 19px 22px;
  }
}


/* =========================================================
   FINAL HERO READABILITY FIX — NORMAL PHOTO + TEXT OVERLAY
   ========================================================= */

/* PC + PHONE: keep the actual photo at natural brightness */
.hero-image {
  filter: none !important;
}

/* DESKTOP */
@media screen and (min-width: 761px) {
  .hero-image {
    filter: none !important;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5,20,12,.82) 0%,
        rgba(5,20,12,.52) 42%,
        rgba(5,20,12,.16) 72%,
        rgba(5,20,12,0) 100%
      ),
      linear-gradient(
        180deg,
        rgba(5,20,12,.10),
        rgba(5,20,12,.48)
      ) !important;
  }
}

/* PHONE */
@media screen and (max-width: 760px) {
  .hero-image {
    filter: none !important;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5,20,12,.48) 0%,
        rgba(5,20,12,.20) 65%,
        rgba(5,20,12,.06) 100%
      ),
      linear-gradient(
        180deg,
        rgba(5,20,12,.04) 0%,
        rgba(5,20,12,.16) 38%,
        rgba(5,20,12,.68) 100%
      ) !important;
  }
}


/* FINAL PHONE HERO TEXT POSITION FIX */
@media screen and (max-width: 760px) {
  .hero-content {
    bottom: 0 !important;
    padding-top: 120px !important;
    padding-bottom: 28px !important;
  }

  .hero-eyebrow {
    margin-top: 24px !important;
  }
}

/* =========================================================
   FINAL MOBILE HERO CONTENT FIX
   Keep "Welcome to Delamere Farm" visible below the header
   ========================================================= */
@media screen and (max-width: 760px) {
  .hero-content {
    top: 95px !important;
    bottom: auto !important;
    padding: 0 12px 30px !important;
    left: 0 !important;
    right: 0 !important;
  }

  .hero-eyebrow {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 0 10px !important;
  }
}

/* =========================================================
   FINAL MOBILE HERO POSITION FIX — KEEP ALL CONTENT VISIBLE
   ========================================================= */
@media screen and (max-width: 760px) {
  .hero-content {
    top: auto !important;
    bottom: 0 !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    padding: 55px 0 18px !important;
  }

  .hero-eyebrow {
    display: block !important;
    visibility: visible !important;
    margin: 0 0 6px !important;
    font-size: .65rem !important;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
    margin-bottom: 8px !important;
  }

  .hero-lead {
    font-size: .88rem !important;
    line-height: 1.45 !important;
    margin-bottom: 10px !important;
  }

  .hero .button-row {
    gap: 7px !important;
  }

  .hero .btn {
    min-height: 42px !important;
    padding: 9px 13px !important;
  }
}

/* =========================================================
   REVIEWS + DIRECT CONTACT
   ========================================================= */

.reviews-section {
  position: relative;
}

.reviews-summary {
  width: fit-content;
  margin: 0 auto 2rem;
  text-align: center;
}

.reviews-summary strong {
  display: block;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1;
}

.reviews-summary span {
  display: block;
  margin-top: .45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  opacity: .7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  padding: 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(20, 30, 20, .08);
  box-shadow: 0 10px 30px rgba(20, 30, 20, .06);
}

.review-stars {
  color: #c9972b;
  letter-spacing: .12em;
  font-size: 1rem;
  white-space: nowrap;
}

.review-text {
  margin: 1rem 0 1.25rem;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: #edf2e8;
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author small {
  margin-top: .15rem;
  opacity: .6;
  font-size: .78rem;
}

.direct-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.5rem 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: #25D366;
  color: #fff !important;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff !important;
}

.btn-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
  animation: whatsappFloat 2.2s ease-in-out infinite;
}

.whatsapp-float .whatsapp-icon {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  color: #fff;
  animation-play-state: paused;
  transform: scale(1.08);
}

@keyframes whatsappFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .direct-contact-actions {
    flex-direction: column;
  }

  .direct-contact-actions .btn {
    width: 100%;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }
}
/* Livestock + Products showcase layouts */
.livestock-list,
.products-list {
  display: grid;
  gap: 2rem;
}

.livestock-card,
.product-showcase-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: stretch;
  padding: 1.25rem;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1.25rem;
  background: var(--surface, #fff);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  overflow: hidden;
}

.livestock-card-image,
.product-showcase-image {
  min-height: 300px;
  border-radius: 1rem;
  overflow: hidden;
  background: #f4f4f4;
}

.livestock-card-image img,
.product-showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: contain;
  display: block;
}

.livestock-card-content,
.product-showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: .75rem;
}

.livestock-card-content h2,
.product-showcase-content h2 {
  margin-top: .25rem;
  margin-bottom: .75rem;
}

.livestock-description {
  line-height: 1.7;
}

.product-price {
  margin-top: .75rem;
  font-size: 1.05rem;
}

.livestock-card .btn,
.product-showcase-card .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

@media (max-width: 760px) {
  .livestock-card,
  .product-showcase-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: .9rem;
  }

  .livestock-card-image,
  .product-showcase-image {
    min-height: 240px;
  }

  .livestock-card-image img,
  .product-showcase-image img {
    min-height: 240px;
  }

  .livestock-card-content,
  .product-showcase-content {
    padding: .5rem;
  }
}
