:root {
  --orange: #f36c0b;
  --orange-dark: #c64e05;
  --red: #dc1f26;
  --ink: #151515;
  --muted: #5f5f5f;
  --paper: #fffaf4;
  --surface: #ffffff;
  --soft: #f5eee7;
  --line: #e5ded7;
  --green: #0f766e;
  --shadow: 0 18px 45px rgba(20, 20, 20, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 10px 32px;
  color: var(--ink);
  background: rgba(255, 250, 244, 0.94);
  border-bottom: 1px solid rgba(229, 222, 215, 0.8);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.05;
  min-width: 132px;
}

.brand strong {
  font-size: 0.92rem;
}

.brand small {
  color: var(--orange-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange-dark);
  background: rgba(243, 108, 11, 0.1);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 6px 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.language-picker svg {
  width: 18px;
  height: 18px;
  color: var(--orange-dark);
}

.language-select {
  max-width: 128px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 0.92rem;
  font-weight: 850;
  outline: none;
}

.hero {
  position: relative;
  min-height: clamp(560px, 72vh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  filter: brightness(1.05) contrast(1.04) saturate(1.06);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.5) 38%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.22) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 116px 0 56px;
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: #ffd1b2;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 4.25rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.hero__lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.hero__actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button svg,
.site-nav svg,
.service-card svg,
.check-list svg,
.hero__facts svg,
.contact-links svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

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

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.5);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.location .button--secondary,
.business-copy .button--secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin-top: 34px;
}

.hero__facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 800;
}

.status-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.status-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
}

.status-band p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 900;
}

.status-band small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.status-band a {
  color: var(--orange-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.is-open {
  color: var(--green);
}

.is-closed {
  color: var(--red);
}

.section {
  padding: 88px 0;
}

.section--intro,
.section--business {
  background: var(--paper);
}

.intro-grid,
.business-grid,
.location-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 46px;
  align-items: center;
}

.intro-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.business-grid {
  grid-template-columns: 0.9fr 1fr;
}

.location-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

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

h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.intro-copy > p:not(.kicker),
.section-heading > p:not(.kicker),
.business-copy > p,
.location-copy > p,
.contact-grid p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.intro-metrics div {
  min-height: 102px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-metrics strong {
  display: block;
  color: var(--orange-dark);
  font-size: 2rem;
  line-height: 1;
}

.intro-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.intro-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.intro-media img,
.business-media img,
.gallery-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-media img:first-child {
  aspect-ratio: 4 / 3;
  max-height: 360px;
  object-position: 50% 58%;
}

.intro-media img:last-child {
  aspect-ratio: 4 / 3;
  max-height: 360px;
  margin-bottom: 0;
  object-position: 50% 45%;
}

.services {
  background: var(--surface);
}

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

.section-heading--compact {
  margin-bottom: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

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

.service-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--orange);
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.business-media img {
  aspect-ratio: 16 / 10;
  max-height: 420px;
  object-position: 50% 48%;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 850;
}

.check-list svg {
  color: var(--green);
  margin-top: 2px;
}

.gallery {
  background: var(--surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.gallery-trigger:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.gallery-grid img {
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  box-shadow: none;
  display: block;
  opacity: 1;
  object-position: 50% 50%;
  pointer-events: none;
  transition: transform 220ms ease;
}

.gallery-grid figure:nth-child(1) img {
  object-position: 50% 38%;
}

.gallery-grid figure:nth-child(3) img,
.gallery-grid figure:nth-child(5) img {
  object-position: 50% 45%;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-caption,
.gallery-grid figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  cursor: zoom-out;
  background: rgba(0, 0, 0, 0.78);
  border: 0;
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-height: min(86vh, 820px);
  display: grid;
  gap: 12px;
}

.lightbox__panel img {
  width: 100%;
  max-height: calc(86vh - 58px);
  object-fit: contain;
  background: #111;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}

.lightbox__panel p {
  justify-self: start;
  margin: 0;
  padding: 9px 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 6px;
  font-weight: 900;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: rgba(0, 0, 0, 0.9);
  outline: none;
}

.lightbox__close svg {
  width: 22px;
  height: 22px;
}

body.lightbox-open {
  overflow: hidden;
}

.location {
  background: var(--paper);
}

address {
  margin: 22px 0;
  font-style: normal;
  font-weight: 850;
}

.hours {
  display: grid;
  gap: 10px;
  max-width: 470px;
}

.parking-note {
  max-width: 520px;
}

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

.hours span {
  color: var(--muted);
}

.map-wrap {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-wrap img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.route-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  max-width: 360px;
  padding: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.route-panel .eyebrow {
  margin-bottom: 0;
  color: #ffd1b2;
}

.route-panel strong {
  font-size: 1.18rem;
}

.route-panel a {
  color: #fff;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.contact-band {
  padding: 58px 0;
  color: #fff;
  background: var(--ink);
}

.contact-band .kicker {
  color: #ffd1b2;
}

.contact-band h2 {
  color: #fff;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-links {
  display: grid;
  gap: 10px;
  min-width: 320px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #0d0d0d;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer a,
.site-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
}

.footer-credit {
  margin-top: 22px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 750;
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 3.35rem;
  }

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

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

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
    padding: 8px 18px;
  }

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

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

  .header-actions {
    gap: 8px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

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

  .language-picker {
    min-height: 42px;
  }

  .hero {
    min-height: 80vh;
  }

  .hero__content {
    padding: 126px 0 44px;
  }

  .hero h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .status-band__grid,
  .intro-grid,
  .business-grid,
  .location-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .status-band__grid {
    gap: 18px;
  }

  .section {
    padding: 68px 0;
  }

  h2 {
    font-size: 2rem;
  }

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

  .intro-media img:last-child {
    margin-bottom: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-links {
    min-width: 0;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand span {
    display: none;
  }

  .language-picker {
    padding: 6px;
  }

  .language-select {
    max-width: 84px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 78vh;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero__actions,
  .location-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__facts {
    gap: 8px;
  }

  .hero__facts span {
    width: 100%;
  }

  .intro-metrics,
  .intro-media,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .gallery-grid img {
    aspect-ratio: 16 / 11;
  }

  .gallery-grid figure {
    aspect-ratio: 16 / 11;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox__panel img {
    max-height: calc(86vh - 54px);
  }

  .hours div {
    display: grid;
    gap: 4px;
  }
}
