:root {
  color-scheme: light;
  --ink: #141315;
  --charcoal: #242226;
  --paper: #f7f2e9;
  --cream: #fff9ef;
  --teal: #177a76;
  --cobalt: #215aa8;
  --gold: #f2b83b;
  --brick: #ba4c35;
  --muted: #6f6962;
  --line: rgba(20, 19, 21, 0.14);
  --shadow: 0 24px 80px rgba(20, 19, 21, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 19, 21, 0.92);
  color: #fff;
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #fff0a6);
  color: var(--ink);
  font-weight: 900;
  font-size: 22px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
}

.nav-links a,
.site-footer a {
  text-decoration: none;
  color: currentColor;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.nav-links a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.icon-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 370px);
  align-items: end;
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(72px, 11vw, 138px) clamp(18px, 5vw, 72px) clamp(34px, 7vw, 70px);
  overflow: clip;
  background: var(--ink);
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(1.08) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 19, 21, 0.88), rgba(20, 19, 21, 0.56) 45%, rgba(20, 19, 21, 0.2)),
    linear-gradient(0deg, rgba(20, 19, 21, 0.78), transparent 46%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(19px, 2.1vw, 28px);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

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

.button.ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.hero-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(20, 19, 21, 0.74);
  box-shadow: var(--shadow);
}

.hero-panel dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.hero-panel div {
  display: grid;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-panel dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-panel dd {
  margin: 0;
  font-size: 18px;
  font-weight: 850;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.quick-info article {
  min-height: 230px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.quick-info article:last-child {
  border-right: 0;
}

.quick-info span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--brick);
  font-weight: 950;
}

.quick-info h2 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
  letter-spacing: 0;
}

.quick-info p,
.section-copy p,
.contact-copy p,
.message-form p {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(360px, 1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p {
  max-width: 640px;
  font-size: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 780;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 950;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 14px;
}

.photo-tile,
.gallery-strip button {
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-tile.large {
  grid-row: span 2;
}

.photo-tile img,
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-tile:hover img,
.gallery-strip button:hover img {
  transform: scale(1.035);
}

.photo-tile.large img {
  aspect-ratio: 4 / 5;
}

.photo-tile:not(.large) img {
  aspect-ratio: 1 / 1;
}

.band {
  background: var(--charcoal);
  color: #fff;
}

.band .section-heading {
  margin-bottom: 36px;
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(300px, 1.14fr);
  gap: 20px;
  align-items: stretch;
}

.hours-card,
.map-card,
.message-form {
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hours-card {
  padding: clamp(22px, 4vw, 34px);
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brick);
}

.status-dot.is-open {
  background: var(--teal);
}

.hours-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.hours-list span {
  font-weight: 850;
}

.source-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(200px, 0.96fr) minmax(260px, 1fr);
  overflow: hidden;
}

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

.map-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 42px);
}

.map-card h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

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

.gallery-section {
  background: var(--cream);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.82fr 1fr;
  gap: 14px;
}

.gallery-strip img {
  aspect-ratio: 1 / 1;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--paper);
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 3px 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  text-decoration: none;
}

.contact-methods span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
}

.contact-methods small {
  color: var(--muted);
}

.message-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.message-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.message-form input,
.message-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
  color: var(--ink);
}

.message-form textarea {
  resize: vertical;
}

.message-form p {
  margin: 0;
  font-size: 14px;
}

.site-footer {
  min-height: 110px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.mobile-cta {
  display: none;
}

.lightbox {
  width: min(960px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(20, 19, 21, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

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

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

  .quick-info {
    grid-template-columns: 1fr;
  }

  .quick-info article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info article:last-child {
    border-bottom: 0;
  }

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

  .map-card img {
    min-height: 240px;
    max-height: 320px;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .lang-toggle,
  .icon-link {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 80px 16px 24px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-actions .button {
    flex: 1 1 calc(50% - 8px);
  }

  .hero-actions .button.ghost {
    flex-basis: 100%;
  }

  .hero-panel {
    padding: 18px;
  }

  .section {
    padding: 54px 16px;
  }

  .photo-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .photo-tile.large {
    grid-row: auto;
  }

  .photo-tile.large img,
  .photo-tile:not(.large) img,
  .gallery-strip img {
    aspect-ratio: 4 / 3;
  }

  .hours-list li {
    align-items: baseline;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 92px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(20, 19, 21, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--ink);
    text-decoration: none;
    font-weight: 950;
  }

  .mobile-cta a:last-child {
    background: var(--teal);
    color: #fff;
  }
}
