:root {
  --black: #080809;
  --charcoal: #111114;
  --panel: #18181d;
  --panel-2: #222228;
  --line: #33333b;
  --line-soft: rgba(255,255,255,.1);
  --text: #fffaf1;
  --muted: #c9c0b2;
  --muted-2: #958b7e;
  --gold: #f4b942;
  --gold-2: #ffe08a;
  --red: #e42d34;
  --red-2: #ff5a61;
  --green: #58c98b;
  --cream: #fff3db;
  --shadow: 0 22px 70px rgba(0,0,0,.34);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(228,45,52,.16), transparent 34%),
    linear-gradient(245deg, rgba(244,185,66,.13), transparent 40%),
    #080809;
}

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

img {
  max-width: 100%;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8,8,9,.86);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  object-fit: cover;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255,255,255,.08);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  font-size: 1.2rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--gold);
  color: #171002;
  font-weight: 900;
  cursor: pointer;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
}

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

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 46px;
  align-items: center;
  padding: 48px 0 58px;
  border-bottom: 1px solid var(--line-soft);
}

.hero.compact {
  min-height: auto;
  padding: 56px 0 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--red);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 6.45rem);
  line-height: .92;
  letter-spacing: 0;
}

.headline-sm {
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
}

.lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.tagline {
  color: var(--text);
  font-size: clamp(1.34rem, 2.5vw, 2.55rem);
  line-height: 1.04;
  font-weight: 900;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-media {
  position: relative;
}

.logo-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #050506;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.logo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

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

.photo-card {
  min-height: 220px;
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111114;
  box-shadow: 0 16px 46px rgba(0,0,0,.22);
}

.photo-card.tall {
  grid-row: span 2;
  min-height: 454px;
}

.photo-card.wide {
  grid-column: span 2;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.82));
  color: white;
  font-weight: 900;
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.image-band .photo-card {
  min-height: 310px;
}

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

.video-card {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111114;
  box-shadow: 0 16px 46px rgba(0,0,0,.24);
}

.video-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.video-card .video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 56px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.86));
}

.video-card strong,
.video-card span {
  display: block;
}

.video-card strong {
  color: white;
  font-size: 1.12rem;
}

.video-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
}

.phone {
  width: min(100%, 430px);
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: #0d0d10;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-top {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line-soft);
}

.phone-top span {
  width: 92px;
  height: 6px;
  border-radius: 999px;
  background: #3b3b42;
}

.feed-video {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.82)),
    linear-gradient(145deg, #371215 0%, #19191d 48%, #3a2b12 100%);
}

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

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--red);
}

.feed-header strong,
.feed-copy strong {
  display: block;
}

.feed-header span,
.feed-copy span,
.mini-row span {
  color: var(--muted);
  font-size: .88rem;
}

.play {
  align-self: center;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  background: rgba(228,45,52,.72);
}

.feed-bottom {
  display: grid;
  gap: 16px;
}

.feed-actions {
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size: .82rem;
  font-weight: 800;
}

section {
  padding: 58px 0;
  border-bottom: 1px solid var(--line-soft);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1;
}

.section-head p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.plan,
.panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
}

.card,
.panel {
  padding: 22px;
}

.card h3,
.panel h3,
.plan h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.card p,
.panel p,
.plan p {
  color: var(--muted);
}

.icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: rgba(244,185,66,.14);
  color: var(--gold);
  font-weight: 900;
}

.feature-list,
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  color: #e9e0d4;
  border-top: 1px solid rgba(255,255,255,.075);
}

.feature-list li::before,
.check-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: .55em;
  border-radius: 50%;
  background: var(--gold);
}

.plan {
  min-height: 420px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.plan.featured {
  border-color: rgba(244,185,66,.7);
  background: rgba(244,185,66,.105);
}

.plan-badge {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(228,45,52,.18);
  color: #ffd7d9;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}

.price strong {
  color: white;
  font-size: 2.2rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

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

.metric {
  min-height: 108px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}

.metric strong {
  display: block;
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .9rem;
}

.showcase {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.screen {
  min-height: 430px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #101013;
}

.searchbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  color: var(--muted);
}

.map {
  position: relative;
  min-height: 260px;
  margin-top: 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 31px, rgba(255,255,255,.05) 32px),
    linear-gradient(0deg, transparent 31px, rgba(255,255,255,.05) 32px),
    #17171b;
  background-size: 64px 64px;
}

.pin {
  position: absolute;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--red);
  color: white;
  font-size: .72rem;
  font-weight: 900;
}

.pin span {
  transform: rotate(45deg);
}

.pin.one { left: 24%; top: 32%; }
.pin.two { left: 62%; top: 44%; background: var(--gold); color: #1a1202; }
.pin.three { left: 42%; top: 66%; }

.row-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.restaurant-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}

.thumb {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red), var(--gold));
}

.restaurant-row strong,
.restaurant-row span {
  display: block;
}

.restaurant-row span {
  color: var(--muted);
  font-size: .88rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.table th,
.table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
}

.table th {
  color: var(--gold);
  background: rgba(255,255,255,.055);
  font-size: .82rem;
  text-transform: uppercase;
}

.table td:last-child {
  color: white;
  font-weight: 900;
  text-align: right;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 750;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0d10;
  color: var(--text);
  font: inherit;
}

.form textarea {
  min-height: 126px;
  resize: vertical;
}

.hidden {
  display: none;
}

.footer {
  padding: 38px 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-weight: 750;
}

.notice {
  padding: 14px 16px;
  border: 1px solid rgba(244,185,66,.35);
  border-radius: var(--radius);
  background: rgba(244,185,66,.1);
  color: var(--cream);
}

@media (max-width: 980px) {
  .hero,
  .showcase {
    grid-template-columns: 1fr;
  }

  .phone {
    margin: 0 auto;
  }

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

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

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

  .photo-card.tall {
    grid-row: span 1;
    min-height: 260px;
  }

  .photo-card.wide {
    grid-column: span 1;
  }

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

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 75px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: #111114;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 44px;
  }

  h1,
  .headline-sm {
    font-size: 3.1rem;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .photo-grid,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .image-band .photo-card,
  .video-card {
    min-height: 235px;
  }

  .feed-video {
    min-height: 520px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .table th,
  .table td {
    padding: 12px 10px;
  }
}
