:root {
  --ink: #171412;
  --paper: #faf8f2;
  --soft: #efede6;
  --night: #11100f;
  --night-2: #1f1b18;
  --muted: #706960;
  --amber: #d99a35;
  --coral: #e65f42;
  --teal: #1f8f7a;
  --white: #ffffff;
  --line: rgba(23, 20, 18, 0.14);
  --shadow: 0 22px 80px rgba(15, 13, 12, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(250, 248, 242, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 35px rgba(17, 16, 15, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-mark {
  width: 28px;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.74;
}

.brand-mark::after {
  inset: 11px;
  border-width: 3px;
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  font-size: 14px;
  font-weight: 680;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: min(790px, 86vh);
  display: grid;
  align-items: center;
  padding: 118px clamp(18px, 4vw, 52px) 104px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 16, 15, 0.88) 0%, rgba(17, 16, 15, 0.58) 45%, rgba(17, 16, 15, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 16, 15, 0.62) 0%, rgba(17, 16, 15, 0) 34%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.bar-section .eyebrow {
  color: #ffb45b;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

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

h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(64px, 12vw, 156px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lead {
  margin: 28px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.32;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.15;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  background: var(--amber);
  color: #1b1208;
}

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

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

.hero-facts {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 4vw, 52px);
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  width: min(560px, calc(100% - 36px));
  margin: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-facts div {
  padding: 16px;
  background: rgba(17, 16, 15, 0.55);
}

.hero-facts dt {
  margin: 0;
  font-size: 22px;
  font-weight: 850;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.section {
  position: relative;
  padding: clamp(70px, 9vw, 126px) 0;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

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

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: #3f3831;
  font-size: clamp(17px, 1.6vw, 21px);
}

.intro-copy p,
.bar-copy p,
.contact-panel p,
.details-grid p,
.show-card p {
  margin: 0;
}

.screen-section {
  background: var(--night);
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 830px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

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

.show-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #201d1a;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.show-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.show-card-content,
.text-card-inner {
  padding: clamp(20px, 2.6vw, 30px);
}

.show-card h3,
.details-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.08;
}

.show-card p {
  color: rgba(255, 255, 255, 0.72);
}

.text-card {
  display: grid;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(230, 95, 66, 0.36), transparent 46%),
    linear-gradient(160deg, rgba(31, 143, 122, 0.3), transparent 58%),
    #201d1a;
}

.text-card-inner {
  display: grid;
  align-content: end;
  min-height: 100%;
}

.card-number {
  display: block;
  margin-bottom: 110px;
  color: var(--amber);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 850;
  line-height: 0.9;
}

.bar-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  min-height: 720px;
  padding: 0;
  background: var(--night-2);
  color: var(--white);
}

.bar-media {
  min-height: 520px;
}

.bar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bar-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 94px);
}

.bar-copy h2 {
  max-width: 620px;
}

.bar-copy p {
  margin-top: 24px;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.menu-list {
  display: grid;
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.menu-list li {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-list span {
  color: var(--amber);
  font-weight: 800;
}

.menu-list strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.details-section {
  background: var(--soft);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.details-grid > div {
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
}

.details-grid h3 {
  color: var(--ink);
}

.details-grid p {
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(31, 143, 122, 0.12), transparent 42%),
    var(--paper);
}

.contact-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel p {
  color: #3f3831;
  font-size: 18px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 52px);
  background: var(--night);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 820;
}

@media (max-width: 940px) {
  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    background: rgba(250, 248, 242, 0.98);
    color: var(--ink);
    box-shadow: 0 18px 60px rgba(17, 16, 15, 0.2);
  }

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

  .site-nav a {
    padding: 13px 10px;
  }

  .hero {
    min-height: 720px;
    padding-bottom: 180px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 16, 15, 0.9), rgba(17, 16, 15, 0.3)),
      linear-gradient(0deg, rgba(17, 16, 15, 0.8), rgba(17, 16, 15, 0.02) 54%);
  }

  .hero-facts {
    left: 18px;
    right: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
  }

  .intro-grid,
  .contact-grid,
  .bar-section {
    grid-template-columns: 1fr;
  }

  .show-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .text-card-inner {
    min-height: 360px;
  }

  .card-number {
    margin-bottom: 86px;
  }

  .bar-section {
    min-height: unset;
  }

  .bar-media {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero {
    min-height: 740px;
    padding: 104px 18px 258px;
  }

  .hero-lead {
    max-width: 22rem;
  }

  h1 {
    font-size: clamp(56px, 16vw, 64px);
  }

  h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button-ghost {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    bottom: 18px;
  }

  .hero-facts div {
    padding: 12px 14px;
  }

  .hero-facts dt {
    font-size: 20px;
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  .menu-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .bar-media {
    min-height: 330px;
  }

  .bar-copy {
    padding: 42px 18px;
  }
}
