:root {
  color-scheme: dark;
  --ink: #f4efe6;
  --muted: #c9bfae;
  --dim: #8f8678;
  --panel: #151515;
  --panel-2: #20211d;
  --line: rgba(244, 239, 230, 0.16);
  --amber: #f2a93b;
  --amber-dark: #9d5f18;
  --teal: #4da7a1;
  --red: #c8563b;
  --black: #090909;
  --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:
    linear-gradient(180deg, rgba(9, 9, 9, 0.4), #090909 760px),
    radial-gradient(circle at 80% 10%, rgba(77, 167, 161, 0.16), transparent 34rem),
    #090909;
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 3vw, 3rem);
  background: rgba(9, 9, 9, 0.68);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--amber), var(--red));
  color: #160d05;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  font-weight: 950;
  transform: rotate(-3deg);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.76rem;
}

nav {
  display: flex;
  gap: clamp(0.6rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.9rem;
}

nav a {
  padding: 0.45rem 0;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  color: var(--ink);
  border-color: var(--amber);
}

.hero {
  position: relative;
  min-height: clamp(650px, 92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.86) 0%, rgba(9, 9, 9, 0.5) 34%, rgba(9, 9, 9, 0.08) 74%),
    linear-gradient(0deg, #090909 0%, rgba(9, 9, 9, 0.1) 32%, rgba(9, 9, 9, 0.04) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 6.5rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(4.1rem, 12vw, 8.7rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.hero-copy {
  width: min(610px, 100%);
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button,
button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.button.primary,
button {
  background: var(--amber);
  color: #160d05;
  box-shadow: 0 12px 34px rgba(242, 169, 59, 0.25);
}

.button.secondary {
  background: rgba(244, 239, 230, 0.1);
  border-color: var(--line);
  color: var(--ink);
}

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

.ticker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: #10100f;
}

.ticker span {
  min-height: 4.1rem;
  display: grid;
  place-items: center;
  padding: 0.7rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-weight: 750;
  text-align: center;
}

.ticker span:first-child {
  border-left: 0;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.intro > p,
.dispatch-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.35rem;
}

.section-heading h2 {
  width: min(830px, 100%);
}

.step-grid,
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-card,
.menu-grid article {
  min-height: 13rem;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card p,
.menu-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.card-number {
  display: inline-block;
  margin-bottom: 2.4rem;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
}

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

.menu-grid article {
  min-height: 15.5rem;
  border-top: 3px solid var(--amber-dark);
}

.dispatch {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.65fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.crew-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.crew-list span {
  padding: 0.65rem 0.85rem;
  background: rgba(77, 167, 161, 0.12);
  border: 1px solid rgba(77, 167, 161, 0.35);
  border-radius: 6px;
  color: var(--ink);
}

.order-panel {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.8rem 0.9rem;
  background: #0e0e0d;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

input:focus {
  outline: 2px solid rgba(242, 169, 59, 0.5);
  outline-offset: 2px;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

footer {
  padding: 2rem 1rem 2.4rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
  text-align: center;
}

footer p {
  margin: 0 auto;
  width: min(760px, 100%);
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .brand strong,
  .brand small {
    white-space: normal;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 9, 9, 0.88), rgba(9, 9, 9, 0.35)),
      linear-gradient(0deg, #090909 0%, rgba(9, 9, 9, 0.15) 45%, rgba(9, 9, 9, 0.08));
  }

  .hero-content {
    padding-bottom: 4.4rem;
  }

  h1 {
    font-size: clamp(3.55rem, 19vw, 5.3rem);
  }

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

  .ticker span {
    min-height: 3rem;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .ticker span:first-child {
    border-top: 0;
  }

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

  .section-heading {
    display: block;
  }

  .step-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .menu-grid article {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 1.4rem;
  }
}

@media (min-width: 861px) and (max-width: 1080px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
