:root {
  --orange: #d8571f;
  --orange-deep: #b54412;
  --green: #2d6a3d;
  --green-deep: #184527;
  --cream: #fbf2e4;
  --paper: #fffaf3;
  --ink: #161311;
  --muted: #6a6058;
  --line: rgba(22, 19, 17, 0.14);
  --max: 1180px;
  --display: "League Spartan", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "League Spartan", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(45, 106, 61, 0.08), transparent 32%),
    linear-gradient(180deg, #fff8ef 0%, #fffdf9 44%, #f6efe3 100%);
  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: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 242, 228, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  display: grid;
  gap: 2px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}

.logo-main {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.logo-sub {
  color: #ffd98f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.site-header.is-scrolled .logo-sub,
.site-header.is-open .logo-sub {
  color: var(--orange);
}

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

.main-nav a {
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.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: 92svh;
  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;
  object-position: center;
  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:
    linear-gradient(180deg, rgba(16, 12, 10, 0.42) 0%, rgba(16, 12, 10, 0.78) 100%),
    radial-gradient(circle at bottom left, rgba(216, 87, 31, 0.34), transparent 40%);
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 44px));
  padding-top: 94px;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: #ffd98f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  display: grid;
  gap: 6px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(68px, 13vw, 160px);
  font-weight: 800;
  line-height: 0.84;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero h1 strong {
  color: #ffe28d;
  font-family: var(--serif);
  font-size: 0.5em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.hero-copy {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.38;
}

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

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-badges span {
  min-height: 36px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff3cf;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.button-orange:hover {
  background: var(--orange-deep);
}

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

.button-green:hover {
  background: var(--green-deep);
}

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

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(90deg, #ffd868 0%, #f8c84a 100%);
  border-top: 2px solid rgba(22, 19, 17, 0.08);
  border-bottom: 2px solid rgba(22, 19, 17, 0.08);
}

.quick-strip a {
  display: grid;
  place-items: center;
  min-height: 76px;
  border-right: 1px solid rgba(22, 19, 17, 0.14);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

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

.section-heading {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 36px;
}

.section-heading h2,
.split-copy h2,
.reviews-heading h2,
.location-copy h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.section-heading p:last-child,
.split-copy p,
.location-copy p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.process-band {
  padding: 92px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.process-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(22, 19, 17, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 54px rgba(22, 19, 17, 0.07);
}

.process-grid span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-grid h3 {
  margin: 30px 0 12px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

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

.split-alt {
  background: linear-gradient(180deg, #eef6ee 0%, #f7fbf4 100%);
}

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

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

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

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

.reviews-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at top right, rgba(216, 87, 31, 0.12), transparent 32%),
    var(--paper);
}

.reviews-heading {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 34px;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  width: min(900px, calc(100% - 44px));
  margin: 0 auto;
}

.review-card {
  min-height: 280px;
  padding: 30px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 20px 60px rgba(22, 19, 17, 0.08);
}

.review-card-accent {
  background: linear-gradient(180deg, #fff5d9 0%, #fffaf0 100%);
}

.stars {
  color: var(--orange);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 22px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.15;
}

.review-card strong {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 28px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 96px 0 112px;
}

.hours-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, #1d4f2c 0%, #143b21 100%);
  color: white;
  box-shadow: 0 18px 54px rgba(22, 19, 17, 0.14);
}

.hours-card h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hours-card dt,
.hours-card dd {
  font-size: 18px;
  line-height: 1.4;
}

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

.location-actions {
  justify-content: flex-start;
}

.mobile-footer {
  display: none;
}

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

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-footer a {
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

@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: rgba(251, 242, 228, 0.98);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

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

  .main-nav a {
    min-height: 44px;
  }

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

  .quick-strip a {
    border-right: 0;
    border-bottom: 1px solid rgba(22, 19, 17, 0.12);
  }

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

  .mobile-footer {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(90deg, #ffd868 0%, #f8c84a 100%);
    border-top: 1px solid rgba(22, 19, 17, 0.12);
  }

  .mobile-footer a {
    display: grid;
    place-items: center;
    min-height: 60px;
    border-right: 1px solid rgba(22, 19, 17, 0.12);
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

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

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

@media (max-width: 560px) {
  .logo-main {
    font-size: 24px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 108px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .hero-copy,
  .section-heading p:last-child,
  .split-copy p,
  .location-copy p,
  .process-grid p {
    font-size: 18px;
  }

  .review-card p {
    font-size: 28px;
  }

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

  .button {
    width: 100%;
  }

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

  .process-grid article,
  .review-card,
  .hours-card {
    padding: 24px;
  }
}
