/* =================================================================
   FLORIDA MANGO GROVELTS — stylesheet
   Aesthetic: Old Florida editorial. Warm paper, botanical greens,
   sun-ripened oranges. Fraunces display, DM Sans body, Caveat for
   handwritten accents.
   ================================================================= */

:root {
  /* Palette — warm paper + grove */
  --paper:        #F4ECDA;      /* hero / base */
  --paper-deep:   #EADFC4;      /* alt sections */
  --paper-warm:   #FAF4E3;      /* cards */
  --ink:          #2B1A10;      /* body text */
  --ink-soft:     #5A3E26;      /* secondary */
  --line:         #3B2414;      /* rules + accents */

  --mango:        #E86A2E;      /* primary accent */
  --mango-deep:   #C25A1F;      /* hover / press */
  --mango-bright: #F2B441;      /* sun yellow */
  --mango-blush:  #D9451E;      /* blush red */

  --grove:        #1F4B2C;      /* leaf green */
  --grove-deep:   #0F3B21;      /* shadow green */
  --grove-soft:   #2F5D3A;

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-hand:    'Caveat', 'Bradley Hand', cursive;

  /* Rhythm */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--mango-deep); text-decoration: none; }
a:hover { color: var(--ink); }

/* Paper grain overlay -------------------------------------------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.22 0 0 0 0 0.12 0 0 0 0.15 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* TYPOGRAPHY ----------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  font-weight: 500;
}

.section-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--mango-deep);
  letter-spacing: 0.02em;
}
.section-kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* BUTTONS -------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover { background: var(--mango-deep); color: var(--paper); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

/* TOP BAR -------------------------------------------------------- */

.topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  background: rgba(244, 236, 218, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(59, 36, 20, 0.12);
}
.topbar__mark {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.topbar__sun {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--mango-bright) 0%, var(--mango) 60%, var(--mango-deep) 100%);
  box-shadow: 0 0 0 1px rgba(59, 36, 20, 0.25);
  flex-shrink: 0;
}
.topbar__name { font-style: italic; }
.topbar__nav {
  display: flex; gap: 26px; align-items: center;
  font-size: 14px;
}
.topbar__nav a {
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.topbar__nav a:not(.topbar__cta)::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1.5px; background: var(--mango);
  transition: right .3s ease;
}
.topbar__nav a:not(.topbar__cta):hover::after { right: 0; }
.topbar__cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar__cta:hover { background: var(--mango-deep); }

.topbar__menu {
  display: none;
  background: transparent; border: none;
  width: 36px; height: 36px;
  cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.topbar__menu span {
  display: block; width: 24px; height: 1.5px; background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}

/* HERO ----------------------------------------------------------- */

.hero {
  position: relative;
  padding: 12px 0 0;
}

.hero__banner {
  text-align: center;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: var(--ink-soft);
  padding: 14px 0;
  border-top: 1px solid rgba(59, 36, 20, 0.2);
  border-bottom: 1px solid rgba(59, 36, 20, 0.2);
  background: var(--paper-deep);
}

.hero__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px var(--gutter) 40px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
}
.hero__title .line { display: block; }
.hero__title .line--accent {
  color: var(--mango-deep);
  font-style: italic;
  font-weight: 300;
}
.hero__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

.hero__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 32px;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 48px;
}

.hero__stats {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(59, 36, 20, 0.2);
}
.hero__stats li {
  display: flex; flex-direction: column; gap: 4px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero__art {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  animation: floatIn 1.2s ease .1s both;
}

.hero__photo {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow:
    0 30px 60px -20px rgba(43, 26, 16, 0.35),
    0 12px 24px -12px rgba(43, 26, 16, 0.25);
  transform: rotate(-1deg);
}
.hero__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
.hero__photo figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 20px 16px;
  background: linear-gradient(to top, rgba(43, 26, 16, 0.85), transparent);
  color: var(--paper);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.01em;
}

/* Small sun mark floating near the photo */
.mango-mark {
  position: absolute;
  top: -40px; right: -30px;
  width: 140px; height: 140px;
  filter: drop-shadow(0 8px 16px rgba(194, 90, 31, 0.4));
  animation: spin 60s linear infinite;
  z-index: 2;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* TICKER --------------------------------------------------------- */

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 0;
  border-top: 2px solid var(--mango);
  border-bottom: 2px solid var(--mango);
  margin-top: 40px;
}
.ticker__track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 80s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  padding-left: 28px;
}
.ticker__track span:nth-child(even) {
  color: var(--mango-bright);
  font-style: normal;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* GROVE ---------------------------------------------------------- */

.grove {
  background: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  position: relative;
}
.grove__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.grove__label {
  display: flex; flex-direction: column; gap: 4px;
  position: sticky; top: 90px;
}
.grove__prose h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-weight: 400;
}
.grove__prose p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 46ch;
}
.grove__pullquote {
  border-left: 3px solid var(--mango);
  padding: 24px 0 24px 28px;
  margin: 0;
}
.grove__pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 300;
}
.grove__pullquote footer {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Photo band - real photos from the grove (Unsplash stand-ins for now) */

.photo-band {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: clamp(60px, 8vw, 100px) var(--gutter) 0;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin: 0 auto;
}
.photo-band__card {
  transform: rotate(var(--rot, 0deg));
  transition: transform .4s ease;
  flex: 0 0 auto;
  margin: 0;
  width: 240px;
}
.photo-band__card:hover {
  transform: rotate(0deg) scale(1.03);
  z-index: 3;
}
.photo-band__card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border: 8px solid var(--paper-warm);
  box-shadow: 0 12px 28px rgba(43, 26, 16, 0.18);
  background: var(--paper-warm);
  filter: saturate(1.05);
}
.photo-band__card figcaption {
  font-family: var(--font-hand);
  font-size: 20px;
  color: var(--ink);
  margin: 10px 0 0;
  text-align: center;
  transform: rotate(calc(var(--rot, 0deg) * -0.3));
}

/* VARIETIES ----------------------------------------------------- */

.varieties {
  background: var(--paper-deep);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid rgba(59, 36, 20, 0.15);
  border-bottom: 1px solid rgba(59, 36, 20, 0.15);
}

.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
}
.section-head__left {
  display: flex; flex-direction: column; gap: 4px;
}
.section-head__title {
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
  grid-column: 2;
}
.section-head__sub {
  grid-column: 2;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin: 18px 0 0;
}

.variety-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(59, 36, 20, 0.15);
  border: 1px solid rgba(59, 36, 20, 0.15);
}
.variety {
  background: var(--paper-warm);
  padding: 34px 30px 30px;
  position: relative;
  transition: background .3s ease, transform .3s ease;
  cursor: default;
  display: flex; flex-direction: column; gap: 12px;
}
.variety:hover {
  background: var(--paper);
}
.variety__swatch {
  width: 56px; height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--swatch) 100%, white 40%) 0%, var(--swatch) 55%, color-mix(in srgb, var(--swatch) 60%, black 35%) 100%);
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.15);
  margin-bottom: 8px;
}
.variety h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.variety__origin {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mango-deep);
  margin: 0;
  font-weight: 500;
}
.variety__desc {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.variety__season {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  margin: 12px 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(59, 36, 20, 0.25);
}

.varieties__more {
  max-width: var(--maxw);
  margin: 50px auto 0;
  padding: 0 var(--gutter);
  text-align: center;
}
.varieties__more p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-soft);
  margin: 0 0 20px;
}

/* GRAFTING ------------------------------------------------------ */

.grafting {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.grafting::before {
  content: "";
  position: absolute;
  top: -100px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--mango) 0%, transparent 70%);
  opacity: 0.18;
  filter: blur(20px);
}
.grafting__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(30px, 5vw, 80px);
  position: relative;
}
.grafting__label { display: flex; flex-direction: column; gap: 4px; }
.grafting__label .section-num { color: var(--mango-bright); }
.grafting__label .section-kicker { color: rgba(244, 236, 218, 0.65); }
.grafting__hero h2 {
  color: var(--paper);
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 24px;
}
.grafting__intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(244, 236, 218, 0.8);
  max-width: 48ch;
  margin: 0 0 60px;
  font-weight: 300;
}

.graft-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(244, 236, 218, 0.2);
  border-bottom: 1px solid rgba(244, 236, 218, 0.2);
}
.graft-steps li {
  padding: 36px 28px;
  border-right: 1px solid rgba(244, 236, 218, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .3s ease;
}
.graft-steps li:last-child { border-right: none; }
.graft-steps li:hover { background: rgba(244, 236, 218, 0.03); }
.graft-steps__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--mango-bright);
  line-height: 1;
}
.graft-steps h3 {
  color: var(--paper);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}
.graft-steps p {
  color: rgba(244, 236, 218, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.grafting__note {
  grid-column: 2;
  padding: 28px 32px;
  border-left: 3px solid var(--mango);
  background: rgba(244, 236, 218, 0.05);
}
.grafting__note .caveat {
  font-family: var(--font-hand);
  font-size: 32px;
  color: var(--mango-bright);
  margin: 0 0 4px;
  line-height: 1;
}
.grafting__note p:last-child {
  color: rgba(244, 236, 218, 0.85);
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

/* VISIT --------------------------------------------------------- */

.visit {
  background: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
}
.visit__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 28px;
}
.visit__card {
  background: var(--paper-warm);
  border: 1px solid rgba(59, 36, 20, 0.15);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.visit__card h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.visit__addr {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  font-style: italic;
}
.visit__note {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}
.visit__card .btn { align-self: flex-start; margin-top: auto; }

.visit__phone {
  margin: 0;
  padding: 14px 0 4px;
  border-top: 1px dashed rgba(59, 36, 20, 0.25);
  border-bottom: 1px dashed rgba(59, 36, 20, 0.25);
  margin-bottom: 6px;
}
.visit__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease;
}
.visit__phone-link:hover { color: var(--mango-deep); }
.visit__phone-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--mango);
  color: var(--paper);
  flex-shrink: 0;
}

/* Contact direct-call card ------------------------------------- */

.contact__direct {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 960px) {
  .contact__direct { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .contact__direct { grid-template-columns: 1fr; }
}
.contact__phone-card {
  display: block;
  text-decoration: none;
  padding: 24px 26px;
  background: var(--paper-warm);
  border: 1px solid rgba(59, 36, 20, 0.18);
  border-left: 4px solid var(--mango);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.contact__phone-card--email {
  border-left-color: var(--grove, #1F4B2C);
}
.contact__phone-card::after {
  content: "→";
  position: absolute;
  right: 26px; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--mango-deep);
  transition: transform .25s ease;
}
.contact__phone-card--email::after {
  color: var(--grove, #1F4B2C);
}
.contact__phone-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(43, 26, 16, 0.12);
  border-left-color: var(--mango-deep);
}
.contact__phone-card--email:hover {
  border-left-color: #0F3B21;
}
.contact__phone-card:hover::after { transform: translateY(-50%) translateX(4px); }
.contact__phone-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.contact__phone-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 4px;
}
.contact__phone-card--email .contact__phone-num {
  font-size: clamp(13px, 1.3vw, 16px);
  word-break: break-all;
  padding-right: 32px;
}

/* SMS / Text Charlie card ------------------------------------- */

.contact__phone-card--sms {
  border-left-color: #1e5b8a;  /* muted blue */
}
.contact__phone-card--sms::after {
  color: #1e5b8a;
}
.contact__phone-card--sms:hover {
  border-left-color: #0f3f64;
}

/* Form submission result feedback ----------------------------- */

.contact__form-result {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  padding: 0;
  min-height: 0;
  transition: all .25s ease;
}
.contact__form-result.is-success {
  padding: 16px 18px;
  margin-top: 8px;
  background: rgba(31, 75, 44, 0.08);
  border-left: 3px solid var(--grove);
  color: var(--grove);
}
.contact__form-result.is-success a {
  color: var(--mango-deep);
  font-weight: 500;
}
.contact__form-result.is-error {
  padding: 16px 18px;
  margin-top: 8px;
  background: rgba(138, 46, 20, 0.08);
  border-left: 3px solid #8A2E14;
  color: #8A2E14;
}
.contact__phone-note {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
}

.visit__card--season p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.visit__card--season strong { color: var(--ink); }

.season-strip {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 16px;
}
.season-strip__row {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
}
.season-strip__label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.season-strip__bar {
  height: 14px;
  position: relative;
  background: transparent !important;
  border-radius: 2px;
  overflow: hidden;
}
.season-strip__bar::before {
  content: "";
  position: absolute;
  left: calc(var(--start) * 1%);
  width: calc((var(--end) - var(--start)) * 1%);
  top: 0; bottom: 0;
  background: inherit;
  background-color: currentColor;
  border-radius: 2px;
}
.season-strip__row:nth-child(1) .season-strip__bar::before { background: #F8C56A; }  /* Mar - early pale */
.season-strip__row:nth-child(2) .season-strip__bar::before { background: #F2B441; }  /* May - yellow */
.season-strip__row:nth-child(3) .season-strip__bar::before { background: #E86A2E; }  /* Jun - orange */
.season-strip__row:nth-child(4) .season-strip__bar::before { background: #C65A1F; }  /* Jul - deeper */
.season-strip__row:nth-child(5) .season-strip__bar::before { background: #9A6A1F; }  /* Aug - late brown */

.visit__map {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
}

.aerial-frame {
  position: relative;
  background: var(--ink);
  border: 1px solid rgba(59, 36, 20, 0.2);
  overflow: hidden;
  aspect-ratio: 515 / 573;
  max-width: 720px;
  margin: 0 auto;
  box-shadow:
    0 30px 60px -20px rgba(43, 26, 16, 0.35),
    0 0 0 8px var(--paper-warm),
    0 0 0 9px rgba(59, 36, 20, 0.2);
}
.aerial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08);
}
.aerial-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.aerial-caption {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(244, 236, 218, 0.94);
  padding: 10px 16px;
  border-left: 3px solid var(--mango);
  display: flex; flex-direction: column; gap: 2px;
  max-width: 70%;
  box-shadow: 0 4px 12px rgba(43, 26, 16, 0.25);
}
.aerial-caption__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.1;
}
.aerial-caption__sub {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.aerial-figcap {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 20px auto 0;
  padding: 0 var(--gutter);
}

/* CONTACT ------------------------------------------------------- */

.contact {
  background: var(--paper-deep);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid rgba(59, 36, 20, 0.15);
}
.contact__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact__head {
  display: flex; flex-direction: column; gap: 10px;
  position: sticky; top: 90px;
}
.contact__head h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}
.contact__head p {
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact__form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.contact__form label.full { grid-column: 1 / -1; }
.contact__form input,
.contact__form textarea {
  background: var(--paper-warm);
  border: 1px solid rgba(59, 36, 20, 0.2);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color .2s ease, background .2s ease;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--mango);
  background: var(--paper);
}
.contact__form textarea { resize: vertical; font-family: var(--font-body); }
.contact__actions {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center;
  margin-top: 8px;
}

/* FOOTER -------------------------------------------------------- */

.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 40px;
}
.foot__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.foot__mark {
  display: inline-block;
  width: 36px; height: 36px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--mango-bright) 0%, var(--mango) 60%, var(--mango-deep) 100%);
  margin-bottom: 16px;
}
.foot__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--paper);
}
.foot__tag {
  color: rgba(244, 236, 218, 0.65);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 32ch;
}
.foot__heading {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mango-bright);
  margin: 0 0 16px;
}
.foot__col a {
  display: block;
  color: rgba(244, 236, 218, 0.8);
  padding: 4px 0;
  font-size: 14px;
  transition: color .2s ease;
}
.foot__col a:hover { color: var(--paper); }
.foot__fine p {
  color: rgba(244, 236, 218, 0.5);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 10px;
}
.foot__fine a {
  color: rgba(244, 236, 218, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(244, 236, 218, 0.3);
}
.foot__fine a:hover { color: var(--mango-bright); }
.foot__credits {
  font-size: 11px !important;
  letter-spacing: 0.02em;
  margin-top: 16px !important;
  color: rgba(244, 236, 218, 0.4) !important;
}

/* RESPONSIVE ---------------------------------------------------- */

@media (max-width: 960px) {
  .topbar__nav { display: none; }
  .topbar__menu { display: flex; }
  .topbar.open .topbar__nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 24px var(--gutter);
    background: var(--paper);
    border-bottom: 1px solid rgba(59, 36, 20, 0.12);
    gap: 18px;
  }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { order: -1; max-width: 420px; margin: 0 auto; }
  .grove__grid,
  .grafting__grid,
  .section-head { grid-template-columns: 1fr; }
  .grove__label,
  .grafting__label { position: static; flex-direction: row; gap: 12px; }
  .section-head__title,
  .section-head__sub { grid-column: 1; }
  .visit__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__head { position: static; }
  .contact__form { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grafting__note { grid-column: 1; }
}

@media (max-width: 560px) {
  .hero__stats { grid-template-columns: 1fr; gap: 18px; }
  .photo-band__card { width: 200px; }
  .photo-band__card img { height: 260px; }
  .foot__grid { grid-template-columns: 1fr; }
  .variety-grid { grid-template-columns: 1fr; }
}

/* TREES FOR SALE ----------------------------------------------- */

.trees {
  background: var(--paper-warm);
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid rgba(59, 36, 20, 0.12);
  position: relative;
}
.trees::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 3px;
  background: var(--mango);
}

.trees__grid { display: none; } /* deprecated, kept in case */

/* OFFERINGS - mangoes and trees side by side */

.offerings {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.offering {
  background: var(--paper);
  border: 1px solid rgba(59, 36, 20, 0.18);
  padding: 36px 32px;
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.offering:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(43, 26, 16, 0.2);
}
.offering--fruit {
  background: var(--paper);
  border-top: 4px solid var(--mango);
}
.offering--trees {
  background: var(--paper);
  border-top: 4px solid var(--grove);
}

.offering__tag {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--mango);
  color: var(--paper);
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.offering__tag--dark {
  background: var(--grove);
  color: var(--paper);
}

.offering__icon {
  margin-bottom: 6px;
  display: inline-flex;
}

.offering h3 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
}
.offering__kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--mango-deep);
  margin: 0;
  line-height: 1.4;
}
.offering--trees .offering__kicker { color: var(--grove); }

.offering > p:not(.offering__kicker) {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.offering__detail {
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px dashed rgba(59, 36, 20, 0.25);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offering__detail-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.5;
}
.offering__detail-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--ink-soft);
  padding-top: 3px;
  font-weight: 500;
}
.offering__detail-row span:last-child {
  color: var(--ink);
}

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

/* Original trees section shared CSS for CTA and disclaimer ----- */

.trees__cta {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding: 0 var(--gutter);
}
.trees__cta-inner {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.trees__cta-inner::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--mango) 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(10px);
  pointer-events: none;
}
.trees__cta-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--mango-bright);
  margin: 0 0 10px;
  font-weight: 500;
}
.trees__cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0 0 8px;
}
.trees__cta-sub {
  color: rgba(244, 236, 218, 0.75);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 50ch;
}
.btn--large {
  padding: 18px 32px;
  font-size: 15px;
  background: var(--mango);
  color: var(--ink);
  border-color: var(--mango);
}
.btn--large:hover {
  background: var(--mango-bright);
  color: var(--ink);
  border-color: var(--mango-bright);
  transform: translateY(-1px);
}

.trees__disclaimer {
  max-width: 680px;
  margin: 40px auto 0;
  padding: 0 var(--gutter);
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.trees__disclaimer em {
  font-style: italic;
  color: var(--mango-deep);
  font-weight: 500;
}

@media (max-width: 720px) {
  .trees__cta-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .btn--large { justify-self: start; }
}

/* HONEST ASIDE -------------------------------------------------- */

.aside-honest {
  background: var(--paper-warm);
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid rgba(59, 36, 20, 0.12);
  position: relative;
}
.aside-honest::before {
  content: "";
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--mango);
}
.aside-honest__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.aside-honest h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  margin: 12px 0 20px;
  color: var(--ink);
}
.aside-honest p {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 300;
}

/* REVEAL ON SCROLL --------------------------------------------- */
.variety,
.graft-steps li,
.photo-band__card,
.visit__card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.variety.is-in,
.graft-steps li.is-in,
.photo-band__card.is-in,
.visit__card.is-in {
  opacity: 1;
  transform: translateY(0);
}
.photo-band__card.is-in {
  transform: rotate(var(--rot, 0deg)) translateY(0);
}
.photo-band__card {
  transform: rotate(var(--rot, 0deg)) translateY(24px);
}

/* REDUCED MOTION ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
