:root {
  --red: #a41e22;
  --red-dark: #7a1216;
  --green: #0d6b3a;
  --green-dark: #094d29;
  --cream: #fff8ef;
  --paper: #fffdf9;
  --ink: #17140f;
  --muted: #5c554c;
  --line: rgba(23, 20, 15, 0.18);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Josefin Sans", Karla, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.logo {
  display: grid;
  place-items: center;
  min-width: 156px;
  color: inherit;
  text-decoration: none;
}

.logo img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1;
}

.main-nav a,
.main-nav button,
.site-footer a,
.site-footer button {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
}

.nav-button {
  padding: 12px 16px;
  border: 2px solid currentColor !important;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-gallery,
.hero-gallery img,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-gallery img {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 4000ms ease;
}

.hero-gallery img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-scrim {
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  display: grid;
  place-items: center;
  width: min(920px, calc(100% - 40px));
  padding-top: 80px;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .hero-kicker {
  display: inline-block;
  padding: 5px 12px;
  color: var(--green);
  background: white;
}

.hero h1 {
  display: block;
  width: 100%;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 10vw, 128px);
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
}

.hero h1 span:first-child {
  display: block;
  white-space: nowrap;
}

.hero h1 .hero-subtitle {
  display: block;
  margin-top: 6px;
  font-size: 0.28em;
  letter-spacing: 0.06em;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.button-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 2px solid transparent;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-yellow {
  background: white;
  color: var(--ink);
}

.button-red {
  background: var(--red);
  color: white;
}

.button-red:hover {
  background: var(--red-dark);
}

.button-outline {
  border-color: white;
  color: white;
}

.motion-toggle {
  margin-top: 24px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  cursor: pointer;
}

.embed-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--green);
  border-bottom: 2px solid var(--ink);
}

.embed-strip a,
.embed-strip button {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 0;
  border-right: 2px solid var(--ink);
  background: transparent;
  color: white;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.embed-strip > :last-child {
  border-right: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--cream);
}

.split-alt .split-copy {
  order: 2;
}

.split-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(42px, 8vw, 110px);
}

.split-copy h2,
.location-section h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--green);
}

.split-copy p,
.location-section p {
  max-width: 520px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.split-image {
  min-height: 480px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.hours-card {
  padding: 30px;
  border: 2px solid var(--ink);
  background: var(--cream);
}

.hours-card h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 34px;
  text-transform: uppercase;
  color: var(--red);
}

.hours-card dl,
.hours-card dd {
  margin: 0;
}

.hours-card div {
  padding: 14px 0;
  border-top: 1px solid rgba(23, 20, 15, 0.28);
}

.hours-card dt {
  font-weight: 900;
}

.hours-card .button {
  margin-top: 22px;
  border-color: var(--ink);
}

.mobile-footer {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: white;
}

.social-links,
.site-footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 28px;
    background: var(--cream);
    color: var(--ink);
    border-bottom: 2px solid var(--ink);
  }

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

  .main-nav a,
  .main-nav button {
    min-height: 44px;
    text-align: left;
  }

  .embed-strip,
  .split,
  .location-section {
    grid-template-columns: 1fr;
  }

  .embed-strip a,
  .embed-strip button {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .split-alt .split-copy {
    order: 0;
  }

  .location-section {
    padding: 70px 0 110px;
  }

  .mobile-footer {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 2px solid var(--ink);
  }

  .mobile-footer button,
  .mobile-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border: 0;
    border-right: 2px solid var(--ink);
    background: var(--green);
    color: white;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-footer button:last-child,
  .mobile-footer a:last-child {
    border-right: 0;
  }

  .site-footer {
    display: grid;
    padding-bottom: 96px;
  }
}

@media (max-width: 560px) {
  .logo img {
    height: 40px;
  }

  .hero h1 {
    font-size: clamp(30px, 10vw, 64px);
  }

  .hero-actions,
  .button-row {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .split-copy {
    padding: 50px 22px;
  }
}
