/* =============================================================
   Narrowsburg Feed & Grain — Design System
   Brand: wheat gold + barn red + forest green + parchment
   Fonts: Fraunces (display) + Plus Jakarta Sans (UI/body)
   ============================================================= */

/* ----------  Tokens  ---------- */
:root {
  /* Wheat gold (primary) */
  --gold-900: #5c4212;
  --gold-800: #7a591a;
  --gold-700: #987023;
  --gold-600: #c9973e;   /* primary */
  --gold-500: #d9ac5c;
  --gold-400: #e5c184;
  --gold-300: #eed4a8;
  --gold-200: #f5e6c8;
  --gold-100: #faf1e0;
  --gold-50:  #fdf8ef;

  /* Barn red (accent) */
  --red-800: #6b2620;
  --red-700: #8b3327;
  --red-600: #a13d2f;
  --red-500: #b8523f;
  --red-300: #dba598;
  --red-100: #f5e3de;

  /* Forest green (secondary) */
  --green-800: #253a26;
  --green-700: #34502f;
  --green-600: #4a6741;
  --green-500: #5f7f55;
  --green-300: #a9c0a0;
  --green-100: #e6efe2;

  /* Ink / neutrals — warm brown-grey, not cold blue-grey */
  --ink-900: #241d15;
  --ink-800: #362c20;
  --ink-700: #4c4032;
  --ink-600: #6b5d4c;
  --ink-500: #8f8271;
  --ink-300: #d4c9b6;
  --line:    #e7ddc9;
  --bg:      #fbf7ef;
  --bg-soft: #f4ecd9;
  --surface: #ffffff;

  /* Semantic */
  --primary: var(--gold-600);
  --primary-ink: #ffffff;
  --accent: var(--green-600);

  /* Gradients */
  --grad-brand: linear-gradient(120deg, var(--gold-600) 0%, var(--red-600) 100%);
  --grad-brand-deep: linear-gradient(125deg, var(--green-800) 0%, var(--green-700) 45%, var(--gold-700) 100%);
  --grad-fresh: linear-gradient(120deg, var(--gold-600) 0%, var(--green-600) 100%);
  --grad-soft: linear-gradient(160deg, #ffffff 0%, var(--gold-50) 100%);

  /* Shape & depth */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(92, 66, 18, .08);
  --shadow: 0 14px 40px -18px rgba(92, 66, 18, .32);
  --shadow-lg: 0 30px 70px -28px rgba(92, 66, 18, .42);
  --shadow-glow: 0 18px 50px -16px rgba(201, 151, 62, .5);
  --ring: 0 0 0 4px rgba(201, 151, 62, .18);

  --container: 1200px;
  --nav-h: 80px;
  --banner-h: 0px; /* set by JS only when the Argos Sites sample-review banner is present; 0 at real go-live */

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + var(--banner-h) + 14px); }
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
svg { display: inline-block; width: 1.1em; height: 1.1em; vertical-align: -0.15em; flex: none; }
a { color: var(--gold-700); text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--ink-900);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -.01em;
}

/* ----------  Layout  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--bg { background: var(--bg-soft); }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }

/* ----------  Eyebrow + headings  ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-800);
  background: var(--gold-50);
  border: 1px solid var(--gold-300);
  padding: 7px 16px; border-radius: var(--r-pill);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-brand); }
.section-title { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 18px 0 14px; }
.section-title .hl { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
.section-sub { font-size: 1.1rem; color: var(--ink-600); max-width: 620px; }
.center .section-sub { margin-inline: auto; }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  padding: 15px 28px; border-radius: var(--r-pill);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  will-change: transform; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 24px 56px -16px rgba(201,151,62,.65); }
.btn--ghost { background: rgba(255,255,255,.7); color: var(--gold-800); border: 1.5px solid var(--gold-300); backdrop-filter: blur(6px); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--gold-500); background: #fff; }
.btn--white { background: #fff; color: var(--gold-800); box-shadow: var(--shadow); }
.btn--white:hover { transform: translateY(-3px); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--gold-700); }
.link-arrow svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* =============================================================
   Navbar
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; top: var(--banner-h); height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  transition: height .3s var(--ease), background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(251, 247, 239, .78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  opacity: 0; transition: opacity .3s;
}
.nav.scrolled { --nav-h: 66px; }
.nav.scrolled::before { opacity: 1; border-bottom-color: var(--line); box-shadow: 0 6px 24px -16px rgba(92,66,18,.4); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; font-family: "Fraunces", serif; font-weight: 700; font-size: 1.25rem; color: var(--ink-900); }
.brand .brand-mark { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-glow); flex-shrink: 0; }
.brand .brand-mark svg { width: 24px; height: 24px; }
.brand small { display: block; font-family: "Plus Jakarta Sans", sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 10px 15px; border-radius: var(--r-pill);
  color: var(--ink-700); font-weight: 600; font-size: .96rem; transition: color .25s, background .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-800); background: var(--gold-50); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--ink-800); }
.nav-phone svg { width: 18px; height: 18px; color: var(--red-600); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--gold-50); border: 1px solid var(--gold-300); position: relative; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2.5px; background: var(--ink-800); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; padding: calc(var(--nav-h) + var(--banner-h) + 20px) 28px 40px;
  background: var(--grad-brand-deep);
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .45s var(--ease), opacity .3s, visibility .3s;
}
body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a { color: #fff; font-family: "Fraunces", serif; font-size: 1.7rem; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.14); }
.mobile-menu .btn { margin-top: 22px; }
.mobile-menu .mm-contact { margin-top: auto; color: rgba(255,255,255,.85); font-weight: 600; }
.mobile-menu .mm-contact a { font-family: inherit; font-size: 1rem; border: 0; padding: 4px 0; display: inline; }

/* =============================================================
   Hero
   ============================================================= */
.hero { position: relative; padding: calc(var(--nav-h) + var(--banner-h) + 56px) 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--grad-soft); }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: -1; animation: float 14s ease-in-out infinite; }
.blob--1 { width: 460px; height: 460px; background: var(--gold-300); top: -120px; right: -80px; }
.blob--2 { width: 380px; height: 380px; background: var(--red-300); bottom: -120px; left: -60px; animation-delay: -4s; }
.blob--3 { width: 300px; height: 300px; background: var(--green-300); top: 40%; left: 45%; opacity: .4; animation-delay: -8s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-26px) scale(1.06); } 66% { transform: translate(-22px,18px) scale(.96); } }

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); font-weight: 600; letter-spacing: -.02em; margin: 22px 0 20px; }
.hero h1 .hl { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
.hero-lead { font-size: 1.18rem; color: var(--ink-600); max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust .stars { color: var(--red-500); font-size: 1.1rem; letter-spacing: 2px; }
.hero-trust small { color: var(--ink-500); font-weight: 600; }
.hero-trust .divider { width: 1px; height: 30px; background: var(--line); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo { position: relative; border-radius: 32px 32px 32px 80px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1/1.04; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(36,29,21,.34)); }
.float-card {
  position: absolute; background: rgba(255,255,255,.86); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7); border-radius: 18px; padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
.float-card .fc-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.float-card .fc-num { font-family: "Fraunces", serif; font-size: 1.4rem; font-weight: 700; color: var(--ink-900); line-height: 1; }
.float-card .fc-label { font-size: .78rem; color: var(--ink-500); font-weight: 600; }
.float-card--tl { top: 26px; left: -28px; }
.float-card--br { bottom: 30px; right: -26px; animation-delay: -2.5s; }
.hero-badge {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  background: var(--grad-brand); color: #fff; border-radius: var(--r-pill);
  padding: 12px 26px; font-weight: 700; box-shadow: var(--shadow-glow); white-space: nowrap;
  display: flex; align-items: center; gap: 9px;
}

/* Marquee of trust words */
.trust-strip { border-block: 1px solid var(--line); background: var(--surface); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 14px 38px; justify-content: center; align-items: center; padding-block: 22px; }
.trust-strip span { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink-600); font-size: .95rem; }
.trust-strip svg { width: 19px; height: 19px; color: var(--green-600); }

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

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.card:hover::before { transform: scaleX(1); }
.card-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; color: #fff; box-shadow: var(--shadow-glow); }
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.3rem; margin-bottom: 9px; }
.card p { color: var(--ink-600); font-size: .98rem; }

/* icon color variants */
.i-gold { background: var(--grad-brand); }
.i-green { background: linear-gradient(135deg, var(--green-600), var(--green-500)); box-shadow: 0 18px 50px -16px rgba(74,103,65,.5); }
.i-red { background: linear-gradient(135deg, var(--red-600), var(--red-500)); box-shadow: 0 18px 50px -16px rgba(161,61,47,.5); }
.i-deep { background: linear-gradient(135deg, var(--green-800), var(--green-600)); }

/* Service tile (compact) */
.svc-tile { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); font-weight: 700; color: var(--ink-800); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.svc-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.svc-tile .dot { width: 40px; height: 40px; border-radius: 11px; background: var(--gold-50); color: var(--gold-700); display: grid; place-items: center; flex-shrink: 0; }
.svc-tile .dot svg { width: 21px; height: 21px; }

/* =============================================================
   Stats band
   ============================================================= */
.stats { background: var(--grad-brand-deep); color: #fff; border-radius: var(--r-xl); padding: clamp(36px,5vw,56px); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.stats::after { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.16) 1.4px, transparent 1.4px); background-size: 26px 26px; opacity:.4; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; position: relative; }
.stat { text-align: center; }
.stat .num { font-family: "Fraunces", serif; font-size: clamp(2.4rem,5vw,3.4rem); font-weight: 700; line-height: 1; background: linear-gradient(120deg,#fff, var(--gold-200)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { margin-top: 8px; font-weight: 600; color: rgba(255,255,255,.85); font-size: .98rem; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.16); }

/* =============================================================
   Feature split (About / staff / nutrition-science)
   ============================================================= */
.doc { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: center; }
.doc-photo { position: relative; }
.doc-photo img { border-radius: 28px 28px 90px 28px; box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 1/1.08; object-fit: cover; object-position: top; }
.doc-photo .ring { position: absolute; inset: -16px -16px auto auto; width: 120px; height: 120px; border: 2px dashed var(--gold-400); border-radius: 50%; z-index: -1; }
.doc-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.cred-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-50); border: 1px solid var(--gold-300); color: var(--gold-800); font-weight: 700; font-size: .85rem; padding: 8px 15px; border-radius: var(--r-pill); }
.cred-pill svg { width: 15px; height: 15px; color: var(--green-600); }

/* =============================================================
   Nutrition science band (livestock feed quality)
   ============================================================= */
.nutri-band { position: relative; border-radius: var(--r-xl); overflow: hidden; color: #fff; box-shadow: var(--shadow-lg); }
.nutri-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; align-items: stretch; }
.nutri-copy { padding: clamp(34px,4.5vw,60px); position: relative; z-index: 2; background: var(--grad-fresh); }
.nutri-copy h2 { color: #fff; font-size: clamp(1.9rem,3.6vw,2.7rem); }
.nutri-copy p { color: rgba(255,255,255,.92); margin-top: 14px; }
.nutri-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.nutri-pill { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); color:#fff; font-weight: 700; font-size: .86rem; padding: 9px 16px; border-radius: var(--r-pill); backdrop-filter: blur(4px); }
.nutri-photo { position: relative; min-height: 320px; }
.nutri-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Species nutrition cards */
.species-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.species-card h4 { font-size: 1.08rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.species-card .sp-icon { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.species-card .sp-icon svg { width: 20px; height: 20px; }
.species-card p { color: var(--ink-600); font-size: .93rem; }

/* =============================================================
   Testimonials
   ============================================================= */
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); position: relative; height: 100%; display: flex; flex-direction: column; }
.quote .mark { font-family: "Fraunces", serif; font-size: 4rem; line-height: .6; color: var(--gold-200); margin-bottom: 8px; }
.quote .stars { color: var(--red-500); letter-spacing: 2px; margin-bottom: 12px; }
.quote p { color: var(--ink-700); font-size: 1.02rem; flex: 1; }
.quote .who { margin-top: 18px; font-weight: 800; color: var(--gold-800); display: flex; align-items: center; gap: 10px; }
.quote .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-brand); color:#fff; display: grid; place-items: center; font-family:"Fraunces",serif; }

/* =============================================================
   Accordion (FAQ)
   ============================================================= */
.accordion { display: grid; gap: 14px; }
.acc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.acc[open], .acc.open { box-shadow: var(--shadow); border-color: var(--gold-300); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-family: "Fraunces", serif; font-size: 1.12rem; font-weight: 600; color: var(--ink-900); }
.acc-head .chev { width: 30px; height: 30px; border-radius: 50%; background: var(--gold-50); color: var(--gold-700); display: grid; place-items: center; flex-shrink: 0; transition: transform .35s var(--ease), background .3s, color .3s; }
.acc-head .chev svg { width: 17px; height: 17px; }
.acc.open .acc-head .chev { transform: rotate(180deg); background: var(--grad-brand); color: #fff; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-body-inner { padding: 0 24px 22px; color: var(--ink-600); }
.acc-body-inner p + p { margin-top: 10px; }

/* =============================================================
   Contact
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--gold-50); color: var(--gold-700); display: grid; place-items: center; flex-shrink: 0; }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row h4 { font-family: "Plus Jakarta Sans", sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-500); margin-bottom: 3px; }
.info-row .v { font-weight: 700; color: var(--ink-900); }
.info-row .v a { color: var(--gold-800); }

.hours-list { display: grid; gap: 2px; }
.hours-list .hr { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.hours-list .hr.closed { color: var(--ink-500); }
.hours-list .hr span:first-child { font-weight: 700; color: var(--ink-800); }

/* Form */
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 17px; }
.field label { display: block; font-weight: 700; font-size: .9rem; color: var(--ink-800); margin-bottom: 7px; }
.field label .req { color: var(--red-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; color: var(--ink-800); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { display: none; padding: 16px; border-radius: var(--r); background: var(--green-100); border: 1px solid var(--green-300); color: var(--green-800); font-weight: 600; margin-top: 6px; }
.form-msg.show { display: block; }

/* map */
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }

/* directions */
.dir-card { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--gold-500); border-radius: var(--r); padding: 20px 24px; }
.dir-card h4 { font-family: "Plus Jakarta Sans", sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; color: var(--gold-700); margin-bottom: 7px; }
.dir-card p { color: var(--ink-600); font-size: .95rem; }

/* =============================================================
   Blog (Adam's Corner)
   ============================================================= */
.blog-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card .bc-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .bc-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .bc-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card .bc-tag { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.blog-card p { color: var(--ink-600); font-size: .93rem; flex: 1; }
.blog-card .bc-meta { margin-top: 14px; font-size: .82rem; color: var(--ink-500); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.blog-card .bc-meta .av { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: "Fraunces", serif; font-size: .8rem; }

.post-hero { padding: calc(var(--nav-h) + var(--banner-h) + 50px) 0 30px; background: var(--grad-soft); }
.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.post-meta .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: "Fraunces", serif; font-weight: 700; }
.post-meta .who strong { display: block; color: var(--ink-900); }
.post-meta .who small { color: var(--ink-500); }
.post-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.post-body { max-width: 760px; margin-inline: auto; padding: 50px 0; }
.post-body img { border-radius: var(--r-lg); box-shadow: var(--shadow); margin: 28px 0; }
.post-body h2 { font-size: 1.6rem; margin: 36px 0 14px; }
.post-body h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.post-body p { margin-bottom: 16px; color: var(--ink-700); font-size: 1.06rem; }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 16px; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 6px; color: var(--ink-700); }
.post-body blockquote { border-left: 4px solid var(--gold-500); padding: 4px 0 4px 20px; margin: 24px 0; font-style: italic; color: var(--ink-600); font-size: 1.1rem; }
.post-sources { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .88rem; color: var(--ink-500); }
.post-sources h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-600); margin-bottom: 10px; }
.post-sources li { margin-bottom: 6px; }

/* =============================================================
   CTA band
   ============================================================= */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--grad-brand-deep); color: #fff; text-align: center; padding: clamp(48px,6vw,84px) 28px; box-shadow: var(--shadow-lg); }
.cta-band::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.14) 1.5px, transparent 1.5px); background-size: 30px 30px; opacity:.5; }
.cta-band h2 { color:#fff; font-size: clamp(2rem,4.6vw,3rem); position: relative; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 540px; margin: 14px auto 30px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* =============================================================
   Footer
   ============================================================= */
.footer { background: var(--ink-900); color: rgba(255,255,255,.72); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer h5 { font-family: "Plus Jakarta Sans", sans-serif; color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 800; }
.footer a { color: rgba(255,255,255,.72); transition: color .2s; }
.footer a:hover { color: var(--gold-300); }
.footer-links { display: grid; gap: 11px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-family: "Fraunces", serif; font-weight: 700; font-size: 1.15rem; color: #fff; }
.footer-brand .brand-mark { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-brand); display: grid; place-items: center; flex-shrink: 0; }
.footer-brand .brand-mark svg { width: 22px; height: 22px; color: #fff; }
.footer-brand p { font-size: .95rem; max-width: 300px; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 400; color: rgba(255,255,255,.72); }
.footer-contact div { display: flex; gap: 11px; margin-bottom: 13px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-300); flex-shrink: 0; margin-top: 3px; }
.foot-creds { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.foot-creds span { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; padding: 5px 11px; font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom .built { color: rgba(255,255,255,.5); }

/* =============================================================
   Page hero (interior pages)
   ============================================================= */
.page-hero { padding: calc(var(--nav-h) + var(--banner-h) + 60px) 0 60px; background: var(--grad-soft); position: relative; overflow: hidden; }
.page-hero .blob { opacity: .4; }
.crumbs { display: flex; gap: 8px; align-items: center; color: var(--ink-500); font-weight: 600; font-size: .88rem; margin-bottom: 14px; }
.crumbs a { color: var(--gold-700); }
.page-hero h1 { font-size: clamp(2.2rem,5vw,3.4rem); }
.page-hero p { color: var(--ink-600); font-size: 1.12rem; max-width: 640px; margin-top: 14px; }

/* =============================================================
   Scroll reveal
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .doc { grid-template-columns: 1fr; gap: 36px; }
  .doc-photo { max-width: 420px; }
  .nutri-inner { grid-template-columns: 1fr; }
  .nutri-photo { min-height: 260px; order: -1; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat:nth-child(3) { border-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 960px) {
  .nav-links, .nav-cta .btn, .nav-phone span { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 760px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-card--tl { left: 10px; }
  .float-card--br { right: 8px; }
  .section { padding: 64px 0; }
}
@media (max-width: 460px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
