/* Hi Grade Farm Supply — shared styles */
:root {
  --green: #4ea03e;
  --green-dark: #3d8030;
  --green-darker: #2e6024;
  --blue: #1499be;
  --blue-dark: #107a99;
  --tan: #f8f8f8;
  --white: #ffffff;
  --ink: #1c2a1f;
  --ink-soft: #4a5650;
  --rule: #e6e8e3;
  --shadow-sm: 0 2px 6px rgba(28,42,31,0.06);
  --shadow-md: 0 10px 30px rgba(28,42,31,0.10);
  --serif: "PT Serif", Georgia, "Times New Roman", serif;
  --sans: "PT Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); text-decoration: underline; }
h1,h2,h3,h4 { font-family: var(--serif); color: var(--ink); margin: 0 0 0.5em; line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -0.005em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 920px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: var(--tan);
  z-index: 50;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 10px 40px;
  max-width: 100%;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; position: relative; z-index: 5; }
.brand img { width: 118px; height: auto; display: block; margin-bottom: -42px; }
.nav-primary { display: flex; align-items: center; gap: 28px; }
.nav-cta { margin-left: auto; }
.nav-primary a {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-primary a:hover { color: var(--green-dark); text-decoration: none; }
.nav-primary a.active { color: var(--green-dark); }
.nav-primary a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--green);
}
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-weight: 700; color: var(--ink);
}
.nav-phone svg { width: 16px; height: 16px; color: var(--blue); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--sans); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--blue); color: #fff; }
.btn-secondary:hover { background: var(--blue-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--green-dark); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--green-dark); border: 2px solid var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; text-decoration: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 960px) {
  .nav-primary {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 14px;
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-primary.open { display: flex; }
  .nav-primary a { padding: 14px 24px; border-bottom: 1px solid var(--rule); }
  .nav-primary a.active::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-phone span { display: none; }
  .brand img { width: 78px; height: auto; margin-bottom: -22px; }
  .header-inner { padding: 8px 16px; }
}
@media (max-width: 520px) {
  .nav-cta .btn { padding: 10px 14px; font-size: 0.85rem; }
  .nav-phone { padding: 8px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(420px, 70vh, 640px);
  color: #fff;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: var(--hero-img);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,30,22,0.70) 0%, rgba(20,30,22,0.40) 55%, rgba(20,30,22,0.15) 100%);
  z-index: -1;
}
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 { color: #fff; max-width: 720px; }
.hero p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 580px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Section ---------- */
section { padding: clamp(56px, 9vw, 110px) 0; }
.section-tan { background: var(--tan); }
.section-green { background: var(--green); color: #fff; }
.section-green h2 { color: #fff; }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: ""; width: 28px; height: 1px; background: var(--green); display: inline-block;
}
.section-head p { max-width: 640px; margin-left: auto; margin-right: auto; color: var(--ink-soft); }

/* ---------- Service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.section-tan .service-card { background: #fff; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card .img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.service-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--green-darker); }
.service-card p { color: var(--ink-soft); margin-bottom: 18px; }
.service-card .learn {
  margin-top: auto;
  font-family: var(--serif); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.78rem;
  color: var(--green-dark);
}
.service-card .learn::after { content: " →"; }
@media (max-width: 880px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

/* ---------- Split (about / intro) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.split.reverse { grid-template-columns: 1.05fr 1fr; }
.split.reverse .split-media { order: 2; }
.split.reverse .split-copy { order: 1; }
.split-copy .eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.split-copy h2 { margin-bottom: 18px; }
.split-copy p { color: var(--ink-soft); }
.split-media {
  position: relative;
}
.split-media .stack {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
}
.split-media .stack img { border-radius: 4px; box-shadow: var(--shadow-md); object-fit: cover; height: 100%; width: 100%; }
.split-media .stack .a { aspect-ratio: 3/4; }
.split-media .stack .b { aspect-ratio: 3/4; align-self: end; }
.split-media .badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: #fff;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.split-media .badge .num {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--green-dark);
  line-height: 1;
}
.split-media .badge .lbl { font-size: 0.78rem; line-height: 1.25; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; }
@media (max-width: 820px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split.reverse .split-copy { order: 0; }
}

/* ---------- Stats bar ---------- */
.stats-band {
  position: relative;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--stats-img);
  background-size: cover; background-position: center;
  z-index: -2;
}
.stats-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(46, 96, 36, 0.78), rgba(46, 96, 36, 0.78));
  z-index: -1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-grid .stat { padding: 8px; }
.stats-grid .num {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1; color: #fff;
  display: block; margin-bottom: 8px;
}
.stats-grid .lbl {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; opacity: 0.92;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; } }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px;
  position: relative;
  display: flex; flex-direction: column;
}
.testimonial .stars {
  color: #f5b800;
  font-size: 1rem; letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial blockquote {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}
.testimonial .person {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.testimonial .who strong {
  display: block;
  font-family: var(--serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.testimonial .who span { font-size: 0.82rem; color: var(--ink-soft); }
.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 3rem; line-height: 1;
  color: var(--green); opacity: 0.3;
}
@media (max-width: 880px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ---------- Bullet list ---------- */
.checklist {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  padding-left: 0;
}
.checklist li::before {
  content: ""; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 4px;
}
.checklist.two-col { grid-template-columns: 1fr 1fr; gap: 14px 32px; }
@media (max-width: 720px) { .checklist.two-col { grid-template-columns: 1fr; } }

/* ---------- Category preview ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.cat-tile {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: flex; align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
.cat-tile::before {
  content: ""; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: var(--cat-img);
  transition: transform .5s ease;
  z-index: -2;
}
.cat-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 35%, rgba(0,0,0,0.72) 100%);
  z-index: -1;
}
.cat-tile:hover::before { transform: scale(1.05); }
.cat-tile .body { padding: 32px; width: 100%; }
.cat-tile h3 { color: #fff; font-size: 1.7rem; margin-bottom: 6px; }
.cat-tile p { color: rgba(255,255,255,0.9); margin-bottom: 14px; }
.cat-tile .arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.78rem;
}
.cat-tile a { position: absolute; inset: 0; text-indent: -9999px; }
@media (max-width: 880px) { .cat-grid { grid-template-columns: 1fr; } .cat-tile { aspect-ratio: 16/10; } }

/* ---------- Why list ---------- */
.why {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.why-img {
  aspect-ratio: 5/4;
  background-size: cover; background-position: center;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 820px) { .why { grid-template-columns: 1fr; } }

/* ---------- Video ---------- */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
}
.video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ---------- FAQ / Accordion ---------- */
.faq {
  border-top: 1px solid var(--rule);
}
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem; line-height: 1;
  color: var(--green); font-weight: 400;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 12px; color: var(--ink-soft); }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--green);
  color: #fff;
  padding: 60px 0;
}
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; margin: 0; max-width: 720px; }
.cta-strip .btn-outline { border-color: #fff; }
.cta-strip .btn-outline:hover { background: #fff; color: var(--green-dark); }

/* ---------- Page intro band ---------- */
.intro-band {
  text-align: center;
}
.intro-band p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 780px;
  margin: 0 auto 16px;
}
.intro-band p:first-of-type::first-letter { /* no */ }

/* ---------- Footer ---------- */
.site-footer {
  background: #1a2418;
  color: #d6dbd2;
  padding: 0;
}
.footer-map {
  width: 100%; height: 360px; border: 0; display: block;
  filter: saturate(1.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 32px;
}
.footer-brand img { width: 140px; height: auto; display: block; margin-bottom: 16px; }
.footer-brand p { color: #b9c0b3; font-size: 0.95rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--serif);
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: #d6dbd2; }
.footer-col a:hover { color: var(--green); text-decoration: none; }
.footer-col .row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-col .row svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 4px; }
.footer-col .row span { color: #d6dbd2; font-size: 0.95rem; }
.footer-col .row strong { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: background .15s ease;
}
.socials a:hover { background: var(--green); text-decoration: none; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: #8f978a;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 48px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-map { height: 260px; }
}

/* ---------- Page header (interior) ---------- */
.page-header {
  position: relative;
  min-height: 360px;
  display: flex; align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover; background-position: center;
  z-index: -2;
}
.page-header::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,30,22,0.78) 0%, rgba(20,30,22,0.50) 100%);
  z-index: -1;
}
.page-header h1 { color: #fff; max-width: 760px; }
.page-header p.lead { color: rgba(255,255,255,0.92); max-width: 620px; font-size: 1.15rem; margin-bottom: 0; }
.crumbs {
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.crumbs a { color: rgba(255,255,255,0.85); }
.crumbs a:hover { color: #fff; }
.crumbs .sep { margin: 0 8px; opacity: 0.6; }

/* ---------- Sections content (interior pages) ---------- */
.lead-copy {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 780px;
}

/* ---------- Detail card grid (interior listings) ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 32px;
  display: flex; gap: 22px; align-items: flex-start;
}
.section-tan .detail-card { background: #fff; }
.detail-card .ic {
  flex: 0 0 56px; width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(78,160,62,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
}
.detail-card .ic svg { width: 28px; height: 28px; }
.detail-card h3 { color: var(--green-darker); margin-bottom: 8px; }
.detail-card p { color: var(--ink-soft); margin: 0 0 10px; }
.detail-card ul { margin: 0; padding-left: 18px; color: var(--ink-soft); }
.detail-card ul li { margin-bottom: 4px; }
@media (max-width: 720px) { .detail-grid { grid-template-columns: 1fr; } .detail-card { padding: 24px; } }

/* ---------- Photo mosaic ---------- */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.photo-mosaic img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
@media (max-width: 900px) {
  .photo-mosaic { grid-template-columns: repeat(2, 1fr); }
  .photo-mosaic img { height: 220px; }
}

/* ---------- Brand strip ---------- */
.brand-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 48px;
  padding: 24px 0;
}
.brand-strip span {
  font-family: var(--serif); font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.brand-strip strong {
  font-family: var(--serif); font-weight: 700;
  font-size: 1.4rem;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

/* ---------- Contact info cards ---------- */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
}
.contact-card .ic {
  margin: 0 auto 14px;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(78,160,62,0.12);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .ic svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--green-darker); }
.contact-card p, .contact-card a { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }
.contact-card a { color: var(--green-dark); font-weight: 700; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Hours + Map ---------- */
.hours-map { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: stretch; }
.hours-card { background: #fff; border: 1px solid var(--rule); border-radius: 6px; padding: 36px; }
.hours-card .eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 14px; }
.map-card { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; background: #eee; }
.map-frame { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
@media (max-width: 820px) { .hours-map { grid-template-columns: 1fr; } .map-card { min-height: 320px; } .map-frame { min-height: 320px; } }

/* ---------- Smaller page header (contact) ---------- */
.page-header-sm { min-height: 280px; padding: 80px 0 56px; }

/* ---------- Hours table ---------- */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr { border-bottom: 1px solid var(--rule); }
.hours-table td { padding: 10px 0; font-size: 0.98rem; }
.hours-table td:first-child { font-weight: 700; font-family: var(--serif); }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }

/* ---------- Skip link & a11y ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.divider { width: 60px; height: 3px; background: var(--green); border: 0; margin: 18px 0 22px; }
.section-head .divider { margin-left: auto; margin-right: auto; }
