:root {
  --cream: #ffffff;
  --paper: #f5f6f7;
  --paper-deep: #eceef0;
  --barn: #c8392a;
  --barn-dark: #a52c1f;
  --forest: #1f6b41;
  --forest-dark: #123a24;
  --leaf: #2f8a54;
  --wood: #a36a3d;
  --gold: #e2a63b;
  --ink: #14181a;
  --muted: #5b6570;
  --line: #e3e6e9;
  --white: #ffffff;
  --shadow: 0 10px 28px rgba(20, 24, 26, 0.09);
  --radius: 12px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: var(--barn);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--barn-dark);
}

h1,
h2,
h3,
.brand-title {
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 0.65rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  max-width: 780px;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.35rem;
}

.skip-link {
  background: var(--forest-dark);
  color: var(--cream);
  left: 1rem;
  padding: 0.65rem 1rem;
  position: fixed;
  top: 0.75rem;
  transform: translateY(-160%);
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 78px;
  padding: 0.55rem 1.2rem;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 0.75rem;
  min-width: 230px;
  text-decoration: none;
}

.brand img {
  height: 56px;
  width: 58px;
}

.brand-title {
  color: var(--ink);
  display: block;
  font-size: 1.18rem;
  margin: 0;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.menu-toggle {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 0.5rem;
  padding: 0.5rem 0.7rem;
}

.menu-toggle:hover {
  border-color: var(--forest);
}

.menu-toggle .hamburger {
  color: var(--forest);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 20px;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  left: 0;
  position: absolute;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.primary-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.18rem;
  justify-content: flex-end;
}

.mobile-nav-panel,
.mobile-group-links,
.mobile-group-links-inner {
  display: contents;
}

.nav-close,
.mobile-group-trigger {
  display: none;
}

.nav-link,
.nav-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  min-height: 44px;
  padding: 0.65rem 0.78rem;
  text-decoration: none;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-trigger:hover,
.nav-trigger.is-current {
  border-bottom-color: var(--forest);
  color: var(--forest);
}

.nav-group {
  position: static;
}

.nav-trigger::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  content: "";
  margin-left: 0.5rem;
}

.mega-menu {
  background: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 22px 55px rgba(20, 24, 26, 0.12);
  display: none;
  gap: 0.75rem 2rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  left: 0;
  min-width: 0;
  opacity: 0;
  padding: 1.9rem max(1.5rem, calc((100% - var(--max)) / 2));
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu,
.nav-group.open .mega-menu {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

@media (min-width: 1041px) {
  .mega-menu::before {
    content: "";
    height: 1.15rem;
    left: 0;
    position: absolute;
    right: 0;
    top: -1.15rem;
  }
}

.mega-menu p {
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
  padding-bottom: 0.45rem;
  text-transform: uppercase;
}

.mega-menu a {
  border-radius: 8px;
  color: var(--ink);
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 -0.5rem;
  padding: 0.4rem 0.5rem;
  text-decoration: none;
}

.mega-menu a:hover {
  background: var(--paper);
  color: var(--forest);
  text-decoration: none;
}

.hero {
  align-items: center;
  background: var(--white);
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3.5rem) 0;
  position: relative;
}

.hero-media {
  align-content: center;
  background: var(--paper);
  display: grid;
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}


.page-hero__media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  inset: 0;
  position: absolute;
}

.page-hero__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(18, 58, 36, 0.95), rgba(18, 58, 36, 0.72) 48%, rgba(18, 58, 36, 0.18)),
    linear-gradient(0deg, rgba(18, 58, 36, 0.78), transparent 46%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  align-self: center;
  padding: clamp(2.75rem, 6vw, 5rem) clamp(1.4rem, 5vw, 4.5rem);
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--ink);
}

.page-hero h1 {
  color: var(--cream);
}

.eyebrow {
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  max-width: 520px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  align-items: center;
  background: var(--barn);
  border: 2px solid var(--barn);
  border-radius: var(--radius);
  color: var(--white);
  display: inline-flex;
  font-weight: 700;
  min-height: 46px;
  padding: 0.68rem 1.15rem;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  background: var(--barn-dark);
  border-color: var(--barn-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn.btn-secondary:hover {
  background: var(--paper);
  border-color: var(--ink);
  color: var(--ink);
}

.page-hero .btn.btn-secondary,
.green-band .btn.btn-secondary,
.callout .btn.btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--cream);
}

.page-hero .btn.btn-secondary:hover,
.green-band .btn.btn-secondary:hover,
.callout .btn.btn-secondary:hover {
  background: var(--cream);
  color: var(--forest-dark);
}

.callout .btn.btn-light {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--forest-dark);
}

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

.btn.btn-green {
  background: var(--forest);
  border-color: var(--forest);
}

.btn.btn-green:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}

.quick-facts {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.quick-facts__inner {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: var(--max);
}

.quick-facts div {
  background: var(--white);
  border-right: 1px solid var(--line);
  padding: 1.1rem 1.4rem;
}

.quick-facts div:last-child {
  border-right: 0;
}

.quick-facts strong {
  color: var(--forest);
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.quick-facts a {
  color: var(--ink);
  font-weight: 700;
}

.quick-facts a:hover {
  color: var(--forest);
}

.quick-facts span {
  color: var(--ink);
  display: block;
  font-size: 0.97rem;
  font-weight: 600;
}

.season-banner {
  background: rgba(31, 107, 65, 0.07);
  border-bottom: 1px solid var(--line);
}

.season-banner__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0 auto;
  max-width: var(--max);
  padding: 0.9rem 1.2rem;
}

.season-banner__tag {
  background: var(--forest);
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.32rem 0.72rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.season-banner p {
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}

.season-banner__link {
  color: var(--forest);
  font-weight: 800;
  margin-left: auto;
  text-decoration: none;
  white-space: nowrap;
}

.season-banner__link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .season-banner__link {
    margin-left: 0;
  }
}

.section {
  padding: clamp(3.2rem, 7vw, 6rem) 1.2rem;
}

.section.section-tight {
  padding-top: clamp(1.75rem, 3vw, 2.6rem);
}

.section.band {
  background: var(--paper);
}

.section.green-band {
  background: var(--forest);
  color: var(--cream);
}

.section.green-band h2,
.section.green-band h3 {
  color: var(--cream);
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max);
}

.section-header {
  margin-bottom: 2rem;
  max-width: 780px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.green-band .lead {
  color: rgba(255, 248, 237, 0.88);
}

.intro-grid,
.content-grid {
  align-items: start;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.intro-feature {
  display: grid;
  gap: 2rem;
}

.intro-feature .stack {
  max-width: 860px;
}

.image-strip {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-strip img {
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(42, 36, 30, 0.08);
  height: clamp(145px, 16vw, 210px);
  object-fit: cover;
  width: 100%;
}

.content-grid.reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.stack > * + * {
  margin-top: 1.1rem;
}

.photo-pair,
.photo-grid {
  display: grid;
  gap: 1rem;
}

.photo-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.photo-grid {
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-grid.spaced {
  margin-top: 2rem;
}

.photo-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack-narrow {
  max-width: 760px;
}

.figure-card,
.category-card,
.mini-card,
.special-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(42, 36, 30, 0.08);
  overflow: hidden;
}

.figure-card img,
.mini-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.category-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.figure-card figcaption,
.mini-card__body,
.category-card__body {
  padding: 0.95rem;
}

.figure-card {
  margin: 0;
}

.figure-card figcaption {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.category-card {
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  box-shadow: var(--shadow);
  color: var(--ink);
  transform: translateY(-3px);
}

.category-card h3,
.mini-card h3 {
  margin-bottom: 0.4rem;
}

.category-card p,
.mini-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.service-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-strip > div {
  background: rgba(255, 248, 237, 0.08);
  line-height: 1.45;
  padding: 1.4rem;
}

.service-strip strong {
  color: var(--gold);
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.logo-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.logo-row img {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 86px;
  object-fit: contain;
  padding: 0.7rem;
  width: 86px;
}

.page-hero {
  align-items: end;
  background: var(--forest-dark);
  color: var(--cream);
  display: flex;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

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

.page-hero__content {
  margin: 0 auto;
  max-width: var(--max);
  padding: 5.5rem 1.2rem 3.2rem;
  position: relative;
  width: 100%;
  z-index: 1;
}

.page-hero__content p:not(.eyebrow) {
  color: rgba(255, 248, 237, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  max-width: 720px;
}

.jump-nav {
  background: rgba(255, 248, 237, 0.97);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  position: sticky;
  top: 78px;
  z-index: 35;
}

.jump-nav__inner {
  align-items: center;
  display: flex;
  gap: 0.45rem;
  margin: 0 auto;
  max-width: var(--max);
  overflow-x: auto;
  padding: 0.7rem 1.2rem;
  scrollbar-width: thin;
  white-space: nowrap;
}

.jump-nav span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-right: 0.35rem;
  text-transform: uppercase;
}

.jump-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest-dark);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.34rem 0.68rem;
  text-decoration: none;
}

.jump-nav a:hover {
  background: var(--paper);
  color: var(--barn);
}

.anchor-section {
  scroll-margin-top: 96px;
}

.department-section {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: 2.6rem 0;
}

.department-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.pill-list,
.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
}

.pill-list li,
.brand-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest-dark);
  font-size: 0.96rem;
  font-weight: 800;
  margin: 0;
  padding: 0.38rem 0.72rem;
}

.check-list {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
  padding: 0;
}

.check-list li {
  break-inside: avoid;
  margin: 0 0 0.55rem;
  padding-left: 1.45rem;
  position: relative;
}

.check-list li::before {
  color: var(--leaf);
  content: "\2713";
  font-weight: 900;
  left: 0;
  position: absolute;
}

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

.specials-layout {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
}

.specials-art {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.specials-art img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.special-grid {
  column-count: 2;
  column-gap: 1rem;
}

.special-card {
  break-inside: avoid;
  display: inline-block;
  margin: 0 0 1rem;
  padding: 1.25rem;
  width: 100%;
}

.special-card h3 {
  color: var(--barn);
}

.callout {
  align-self: start;
  background: var(--forest);
  border-radius: var(--radius);
  color: var(--cream);
  padding: 1.55rem;
}

.callout h2,
.callout h3 {
  color: var(--cream);
}

.callout a {
  color: var(--cream);
  font-weight: 900;
}

.callout-note {
  border-top: 1px solid rgba(255, 248, 237, 0.28);
  color: rgba(255, 248, 237, 0.9);
  font-size: 0.96rem;
  margin: 1.2rem 0 0;
  padding-top: 1rem;
}

.visit-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.visit-media {
  display: grid;
  gap: 1rem;
}

.visit-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.visit-note h2 {
  font-size: 1.45rem;
}

.hours-list {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.hours-list div {
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
}

.map-wrap {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-wrap iframe {
  border: 0;
  display: block;
  height: 420px;
  width: 100%;
}

.site-footer {
  background: var(--forest-dark);
  color: rgba(255, 248, 237, 0.9);
  padding: 2.6rem 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(240px, 1fr) minmax(200px, 0.8fr) minmax(260px, 1.2fr);
  margin: 0 auto;
  max-width: var(--max);
}

.footer-brand {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
}

.footer-brand img {
  background: var(--cream);
  border-radius: var(--radius);
  height: 72px;
  padding: 0.35rem;
  width: 74px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--cream);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

.site-footer address {
  font-style: normal;
}

.footer-map iframe {
  height: 230px;
}

.copyright {
  border-top: 1px solid rgba(255, 248, 237, 0.18);
  font-size: 0.92rem;
  margin: 1.6rem auto 0;
  max-width: var(--max);
  padding-top: 1rem;
}

.call-bar {
  display: none;
}

@media (max-width: 720px) {
  .call-bar {
    align-items: center;
    background: var(--forest);
    border-radius: 999px;
    bottom: 1rem;
    box-shadow: 0 8px 22px rgba(20, 24, 26, 0.28);
    color: var(--cream);
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 800;
    gap: 0.45rem;
    padding: 0.68rem 1.05rem;
    position: fixed;
    right: 1rem;
    text-decoration: none;
    z-index: 60;
  }

  .call-bar:hover {
    background: var(--forest-dark);
    color: var(--cream);
  }

  .call-bar svg {
    fill: currentColor;
    height: 18px;
    width: 18px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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

@media (max-width: 1040px) {
  .site-header {
    z-index: 90;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    align-items: stretch;
    background: rgba(18, 58, 36, 0.55);
    backdrop-filter: blur(3px);
    display: block;
    height: 100vh;
    height: 100dvh;
    inset: 0;
    justify-content: start;
    max-width: none;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: fixed;
    transition:
      opacity 240ms ease,
      visibility 0s linear 260ms;
    visibility: hidden;
    width: 100vw;
    z-index: 100;
  }

  body.nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transition:
      opacity 240ms ease,
      visibility 0s linear 0s;
    visibility: visible;
  }

  .mobile-nav-panel {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(18, 58, 36, 0.22);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.95rem;
    transform: translateY(-100%);
    transition: transform 280ms ease;
    width: 100%;
  }

  body.nav-open .mobile-nav-panel {
    transform: translateY(0);
  }

  .nav-close {
    align-items: center;
    align-self: flex-end;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 0.45rem;
    justify-content: center;
    min-height: 40px;
    padding: 0.5rem 0.7rem;
  }

  .nav-close:hover {
    border-color: var(--forest);
  }

  .nav-close span[aria-hidden="true"] {
    color: var(--forest);
    font-size: 1.3rem;
    line-height: 0.85;
  }

  .nav-link,
  .nav-trigger {
    background: var(--white);
    border: 1px solid var(--line);
    justify-content: space-between;
    min-height: 52px;
    padding: 0.82rem 0.95rem;
    width: 100%;
  }

  .nav-link:hover,
  .nav-link[aria-current="page"],
  .nav-trigger:hover,
  .nav-trigger.is-current {
    background: rgba(31, 107, 65, 0.1);
    border-color: var(--forest);
    color: var(--forest);
  }

  .nav-trigger::after,
  .mobile-group-trigger::after {
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    content: "";
    height: 0.5rem;
    margin-left: 0.65rem;
    transform: rotate(45deg);
    transition: transform 220ms ease;
    width: 0.5rem;
  }

  .nav-group.open > .nav-trigger::after,
  .mobile-menu-section.open > .mobile-group-trigger::after {
    transform: rotate(225deg);
  }

  .nav-group {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .nav-group > .nav-trigger {
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .mega-menu {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    gap: 0.55rem;
    grid-template-columns: 1fr;
    min-width: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 0.55rem;
    position: static;
    transform: none;
    transition:
      max-height 260ms ease,
      opacity 220ms ease,
      padding 220ms ease;
    visibility: visible;
  }

  .nav-group.open .mega-menu {
    display: grid;
    max-height: 1200px;
    opacity: 1;
    padding: 0.05rem 0.55rem 0.65rem;
  }

  .mega-menu p {
    display: none;
  }

  .mobile-menu-section {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .mobile-group-trigger {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--forest-dark);
    cursor: pointer;
    display: flex;
    font: inherit;
    font-size: 1rem;
    font-weight: 800;
    justify-content: space-between;
    min-height: 50px;
    padding: 0.78rem 0.9rem;
    text-align: left;
    width: 100%;
  }

  .mobile-group-links {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition:
      max-height 240ms ease,
      opacity 180ms ease,
      visibility 0s linear 240ms;
    visibility: hidden;
  }

  .mobile-menu-section.open .mobile-group-links {
    max-height: 340px;
    opacity: 1;
    pointer-events: auto;
    transition:
      max-height 240ms ease,
      opacity 180ms ease,
      visibility 0s linear 0s;
    visibility: visible;
  }

  .mobile-group-links-inner {
    display: block;
    min-height: 0;
    overflow: hidden;
    padding: 0 0.4rem;
    transition: padding 220ms ease;
  }

  .mobile-menu-section.open .mobile-group-links-inner {
    padding: 0.35rem 0.4rem 0.55rem;
  }

  .mega-menu a {
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1.25;
    padding: 0.62rem 0.72rem;
  }

  .mega-menu a + a {
    border-top: 1px solid var(--line);
  }

  .quick-facts__inner,
  .service-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid,
  .mini-grid,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .content-grid,
  .content-grid.reverse,
  .department-section,
  .visit-grid,
  .specials-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1041px) and (max-width: 1280px) {
  .service-strip > div {
    padding: 1.1rem;
  }

  .service-strip strong {
    font-size: 1.06rem;
  }

  .service-strip span {
    font-size: 0.96rem;
  }
}

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

  .hero-media {
    order: -1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    height: 48px;
    width: 50px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .jump-nav {
    top: 72px;
  }

  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(24, 50, 34, 0.94), rgba(24, 50, 34, 0.68)),
      linear-gradient(0deg, rgba(24, 50, 34, 0.84), transparent 55%);
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero__media {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero__media img:nth-child(3) {
    display: none;
  }

  .quick-facts__inner,
  .service-strip,
  .category-grid,
  .image-strip,
  .mini-grid,
  .photo-grid,
  .photo-pair {
    grid-template-columns: 1fr;
  }

  .special-grid {
    column-count: 1;
  }

  .image-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-strip img,
  .category-card img {
    height: 190px;
  }

  .check-list {
    columns: 1;
  }

  .hours-list div {
    gap: 1rem;
  }
}
