:root {
  --ink: #181411;
  --muted: #6d6259;
  --paper: #fbf8f1;
  --rice: #fffdf8;
  --red: #b62920;
  --red-dark: #741810;
  --gold: #d8a739;
  --jade: #1f6b55;
  --line: rgba(24, 20, 17, 0.13);
  --shadow: 0 28px 80px rgba(35, 18, 10, 0.24);
}

* {
  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;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 16px;
  left: 50%;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(20, 14, 11, 0.48);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  background: rgba(24, 20, 17, 0.92);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--red-dark);
  border-radius: 6px;
  background: var(--gold);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav a,
.header-call {
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover,
.header-call:hover {
  background: rgba(255, 255, 255, 0.14);
}

.header-call {
  color: var(--ink);
  background: white;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px max(24px, calc((100vw - 1120px) / 2)) 70px;
  color: white;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 8, 6, 0.88), rgba(12, 8, 6, 0.48) 48%, rgba(12, 8, 6, 0.18)),
    linear-gradient(0deg, rgba(12, 8, 6, 0.75), rgba(12, 8, 6, 0.08) 42%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

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

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

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 11vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.48;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
}

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

.button.ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.button.dark,
.button.dark-text {
  color: var(--ink);
  border-color: var(--line);
  background: var(--rice);
}

.status-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 70px;
  width: min(310px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.status-panel p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.status-panel strong {
  font-size: 1.55rem;
}

.pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: #52e09c;
  box-shadow: 0 0 0 8px rgba(82, 224, 156, 0.18);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: white;
}

.ticker span {
  padding: 18px 24px;
  text-align: center;
  font-weight: 800;
}

.ticker span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: end;
}

.intro p:last-child,
.feature-copy p,
.terrace p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.feature-grid,
.terrace,
.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.feature-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--rice);
}

.day-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.day-strip span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 8px;
  background: var(--jade);
  color: white;
  font-size: 1.6rem;
  font-weight: 950;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
  align-items: end;
}

.image-stack img,
.terrace img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  height: 430px;
}

.image-stack img:last-child {
  background: #080706;
  object-fit: contain;
  padding: 26px;
}

.terrace {
  grid-template-columns: 1.1fr 0.9fr;
}

.terrace > div {
  padding-left: 20px;
}

.hours {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hours-list {
  display: grid;
  gap: 10px;
}

.hours-list div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--rice);
}

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

.contact {
  grid-template-columns: 0.75fr 1.25fr;
}

address {
  margin: 0 0 24px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

address strong {
  color: var(--red-dark);
}

iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px max(24px, calc((100vw - 1120px) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  text-decoration: none;
}

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

  .nav {
    display: none;
  }

  .header-call {
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88vh;
    padding-top: 118px;
  }

  .status-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .ticker,
  .intro,
  .feature-grid,
  .terrace,
  .hours,
  .contact {
    grid-template-columns: 1fr;
  }

  .ticker span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .section {
    padding: 68px 0;
  }

  .feature-copy,
  .terrace > div {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:first-child,
  .terrace img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3.65rem, 18vw, 5rem);
  }

  .brand small {
    display: none;
  }

  .header-call {
    max-width: 124px;
    text-align: center;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
