:root {
  --parchment: #f5eedf;
  --surface: #fbf7ee;
  --moss: #143a2b;
  --loam: #0b231a;
  --ochre: #f2b233;
  --coral: #ec6a47;
  --sage: #c8d6b4;
  --mist: #9dc9e5;
  --hairline: #d9cfb8;
  --shadow: 0 20px 48px rgba(20, 58, 43, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--loam);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 10;
  transform: translateY(-160%);
  background: var(--moss);
  color: var(--surface);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

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

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

.section {
  padding: 88px 0;
}

.concept-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  background: var(--moss);
  color: var(--surface);
  font-size: 0.875rem;
  text-align: center;
}

.concept-bar p {
  margin: 0;
}

.concept-bar a {
  font-weight: 700;
  color: var(--ochre);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(245, 238, 223, 0.94);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
}

.brand img {
  width: 138px;
  height: auto;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--moss);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--moss);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.header-cta,
.button-primary {
  background: var(--moss);
  color: var(--surface);
}

.button-secondary {
  background: var(--ochre);
  color: var(--moss);
}

.button-ghost {
  background: transparent;
  color: var(--moss);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  justify-self: end;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--moss);
  border-radius: 999px;
  background: transparent;
  color: var(--moss);
  font: inherit;
  font-weight: 800;
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.eyebrow,
.card-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--moss);
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: 5.35rem;
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 1.17rem;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-media {
  position: relative;
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(251, 247, 238, 0.93);
  color: var(--moss);
}

.hero-note strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.location-band,
.story-band {
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.wide {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.42fr);
  gap: 32px;
  align-items: end;
  max-width: none;
}

.section-heading h2,
.visit-panel h2 {
  font-size: 3.35rem;
}

.section-heading p:last-child {
  margin: 0;
  font-size: 1.05rem;
}

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

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background: var(--parchment);
}

.location-card.accent {
  background: var(--sage);
}

.location-card h3 {
  margin-bottom: 10px;
  font-size: 2.1rem;
}

.location-card p {
  margin: 0;
}

dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

dt {
  color: rgba(11, 35, 26, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 3px 0 0;
  font-weight: 700;
}

.holiday-note {
  margin: 22px 0 0;
  color: rgba(11, 35, 26, 0.72);
  font-size: 0.95rem;
}

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

.department-card {
  display: grid;
  grid-template-rows: 230px auto 1fr;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(20, 58, 43, 0.06);
}

.department-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.department-card span {
  display: block;
  padding: 22px 22px 0;
  color: var(--moss);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.08;
}

.department-card p {
  margin: 0;
  padding: 12px 22px 24px;
}

.department-card:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.story-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}

.story-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
}

.story-media img:last-child {
  height: 380px;
}

.story-copy h2 {
  max-width: 10ch;
  font-size: 3.5rem;
}

.story-copy p {
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.source-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  position: relative;
  padding-left: 28px;
}

.source-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--coral);
}

.visit-section {
  padding-top: 70px;
}

.visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) auto;
  gap: 32px;
  align-items: center;
  padding: 38px;
  border-radius: 28px;
  background: var(--mist);
  color: var(--moss);
}

.visit-panel .eyebrow {
  color: var(--moss);
}

.site-footer {
  padding: 56px 0;
  background: var(--moss);
  color: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(160px, 0.45fr));
  gap: 40px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: rgba(251, 247, 238, 0.8);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--ochre);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .header-cta,
  .department-card {
    transition: transform 160ms ease, background-color 160ms ease;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 124px 16px auto 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--hairline);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .hero-grid,
  .story-grid,
  .section-heading.wide,
  .visit-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
    font-size: 4.1rem;
  }

  .section-heading h2,
  .visit-panel h2,
  .story-copy h2 {
    font-size: 2.8rem;
  }

  .hero-media,
  .hero-media img {
    min-height: 520px;
  }

  .location-grid,
  .department-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .department-card {
    grid-row: auto;
    grid-template-rows: 260px auto 1fr;
    min-height: 0;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 60px 0;
  }

  .concept-bar {
    flex-direction: column;
    gap: 4px;
    padding: 9px 12px;
  }

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

  .brand img {
    width: 116px;
  }

  .site-nav {
    top: 114px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .hero-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-actions,
  .visit-actions {
    flex-direction: column;
  }

  .section-heading h2,
  .visit-panel h2,
  .story-copy h2 {
    font-size: 2.25rem;
  }

  .location-card,
  .visit-panel {
    padding: 22px;
    border-radius: 18px;
  }

  .department-card span {
    font-size: 1.55rem;
  }

  .story-media {
    grid-template-columns: 1fr;
  }

  .story-media img,
  .story-media img:last-child {
    height: 330px;
  }
}
