:root {
  color-scheme: light;
  --ink: #1e252c;
  --muted: #5c6670;
  --line: #d9ded8;
  --paper: #fbfbf7;
  --panel: #ffffff;
  --accent: #bf2f24;
  --accent-dark: #8f2018;
  --steel: #40515f;
  --green: #2f6f55;
  --gold: #f0b43c;
  --shadow: 0 18px 60px rgba(24, 32, 38, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(251, 251, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(145px, 16vw, 190px);
  height: 54px;
  object-fit: contain;
  object-position: center;
}

nav {
  flex-wrap: wrap;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - 72px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 56px) 48px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  width: min(100%, 760px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow,
.label {
  display: block;
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.lede {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

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

.button.secondary {
  background: #fff;
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--steel);
}

.quick-list {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--steel);
  font-weight: 750;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 0;
}

.hero-media::before {
  position: absolute;
  inset: 8% -4% -3% 8%;
  content: "";
  background: linear-gradient(145deg, var(--gold), var(--green));
  border-radius: 8px;
  opacity: 0.28;
}

.hero-media img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(26, 32, 36, 0.22));
}

.logo-showcase {
  display: grid;
  min-height: 0;
  place-items: center;
}

.logo-showcase::before {
  display: none;
}

.hero-media .hero-logo {
  width: min(100%, 560px);
  max-height: 360px;
  border-radius: 8px;
  object-fit: contain;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: -26px auto 0;
  padding: 0 clamp(18px, 5vw, 56px);
  position: relative;
  z-index: 2;
}

.info-strip > div {
  min-height: 118px;
  padding: 24px;
  min-width: 0;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.info-strip a,
.info-strip span:last-child {
  display: block;
  max-width: 100%;
  font-size: 1.1rem;
  font-weight: 850;
  overflow-wrap: anywhere;
  word-break: normal;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 110px) clamp(18px, 5vw, 56px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

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

.service-card {
  min-height: 128px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--accent);
  background: #fff7e4;
  border-radius: 50%;
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-card strong {
  display: block;
  font-size: 1.05rem;
}

.split-section,
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.split-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.notice-panel,
.visit-card {
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.notice-panel ul {
  margin: 0;
  padding-left: 20px;
}

.notice-panel li + li {
  margin-top: 10px;
}

.hours-section {
  padding-top: 40px;
}

.hours-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 17px 20px;
  border-top: 1px solid var(--line);
}

.hours-row:first-child {
  border-top: 0;
}

.hours-row.today {
  background: #fff7e4;
}

.hours-row strong {
  font-weight: 900;
}

.map-frame {
  overflow: hidden;
  min-height: 320px;
  background: #dfe5df;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 56px);
  color: #ffffff;
  background: var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    padding-block: 12px;
  }

  .split-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .info-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .info-strip {
    margin-top: 0;
  }

  .info-strip > div {
    min-height: 0;
    padding: 18px;
  }

  .info-strip a,
  .info-strip span:last-child {
    font-size: 1rem;
    line-height: 1.35;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: static;
    padding-inline: 24px;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .hero-copy {
    justify-items: stretch;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
  }

  h1 {
    max-width: none;
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    margin: 18px 0 18px;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .section {
    padding-block: 56px;
  }

  .hero-media .hero-logo {
    width: min(100%, 280px);
    max-height: 100px;
    filter: none;
  }

  .quick-list li {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .site-header,
  .hero,
  .info-strip,
  .section,
  footer {
    padding-inline: 20px;
  }

  .hero-media .hero-logo {
    width: min(100%, 260px);
    max-height: 92px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .info-strip a,
  .info-strip span:last-child {
    font-size: 0.96rem;
  }
}
