:root {
  --ink: #141313;
  --paper: #fff7e8;
  --cream: #f3e7cd;
  --orange: #ff5b1a;
  --red: #e72129;
  --yellow: #ffd23c;
  --green: #187b4d;
  --blue: #155e75;
  --muted: #746b5e;
  --line: rgba(20, 19, 19, 0.13);
  --shadow: 0 24px 70px rgba(20, 19, 19, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 91, 26, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #fffaf0 0%, #f8edda 52%, #101010 52%, #101010 100%);
  background-size: 64px 64px, auto;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header.scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 10px 35px rgba(20, 19, 19, 0.1);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 900;
  line-height: 0.85;
}

.brand-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.brand-mark strong,
.brand-mark small {
  display: block;
  font-size: 22px;
}

.brand-mark small {
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  padding: 11px 13px;
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 91, 26, 0.14);
}

.nav-cta {
  background: var(--orange);
  color: white;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.86) 0%, rgba(10, 10, 10, 0.5) 48%, rgba(10, 10, 10, 0.16) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.7), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 190px;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1,
h2 {
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-weight: 900;
}

h1 {
  max-width: 900px;
  font-size: clamp(64px, 12vw, 162px);
  text-transform: uppercase;
}

h2 {
  max-width: 920px;
  font-size: clamp(38px, 6vw, 82px);
}

h3 {
  font-size: 24px;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.35;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 16px 32px rgba(255, 91, 26, 0.26);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  display: grid;
  width: min(1120px, calc(100% - 36px));
  grid-template-columns: repeat(4, 1fr);
  transform: translateX(-50%);
  background: rgba(255, 247, 232, 0.94);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-strip div {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip strong {
  display: block;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.hero-strip span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: 82px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 920px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.image-panel,
.cart-proof,
.category-board,
.table-wrap,
.inquiry-form,
.contact-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 16px 50px rgba(20, 19, 19, 0.08);
}

.image-panel {
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

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

.info-card {
  min-height: 160px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fffaf0;
}

.info-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 900;
}

.info-card span {
  color: var(--muted);
  line-height: 1.45;
}

.models-section {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 38px;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  color: white;
  background: #101010;
}

.models-section .section-heading {
  margin-bottom: 18px;
}

.models-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.6vw, 48px);
}

.model-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.model-tabs {
  display: grid;
  gap: 8px;
  align-content: start;
}

.model-tab {
  width: 100%;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-align: left;
  cursor: pointer;
}

.model-tab strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.model-tab span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.model-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 24px 54px rgba(255, 91, 26, 0.24);
}

.model-tab.active span {
  color: rgba(255, 255, 255, 0.86);
}

.model-view {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: 16px;
  min-height: 500px;
}

.scene,
.model-meta {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 210, 60, 0.15), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.scene {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
  overflow: hidden;
  perspective: 900px;
}

.scene::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 18px;
  bottom: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  filter: blur(14px);
}

.model-object {
  position: relative;
  width: min(78%, 390px);
  height: 256px;
  transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(-18deg);
  transition: width 220ms ease, height 220ms ease;
}

.model-object.spin {
  animation: spinModel 950ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes spinModel {
  from {
    transform: rotateX(8deg) rotateY(-18deg);
  }
  to {
    transform: rotateX(8deg) rotateY(342deg);
  }
}

.model-object span {
  position: absolute;
  display: block;
}

.canopy {
  left: 4%;
  top: 18%;
  width: 86%;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff7b23, var(--red));
  box-shadow: inset 0 -7px 0 rgba(0, 0, 0, 0.13);
}

.body {
  left: 12%;
  top: 45%;
  width: 70%;
  height: 96px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, var(--orange), var(--red)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
  box-shadow: 16px 16px 0 rgba(255, 210, 60, 0.9);
}

.counter {
  left: 9%;
  top: 39%;
  width: 78%;
  height: 18px;
  border-radius: 6px;
  background: #f8f2e8;
}

.wheel {
  bottom: 31px;
  width: 54px;
  height: 54px;
  border: 10px solid #030303;
  border-radius: 50%;
  background: #303030;
}

.wheel.left {
  left: 22%;
}

.wheel.right {
  right: 18%;
}

.sign {
  left: 31%;
  top: 51%;
  width: 30%;
  height: 32px;
  border-radius: 5px;
  background: #101010;
}

.model-object.truck .body {
  width: 76%;
  height: 118px;
}

.model-object.truck .sign {
  left: 57%;
  top: 41%;
  width: 18%;
  height: 52px;
  background: #e9f7f0;
}

.model-object.shop,
.model-object.kiosk,
.model-object.lounge {
  height: 292px;
}

.model-object.shop .canopy,
.model-object.kiosk .canopy,
.model-object.lounge .canopy {
  left: 8%;
  top: 10%;
  width: 76%;
}

.model-object.shop .body,
.model-object.kiosk .body,
.model-object.lounge .body {
  top: 26%;
  height: 158px;
  box-shadow: 18px 18px 0 rgba(24, 123, 77, 0.72);
}

.model-object.kiosk .body {
  width: 52%;
  left: 24%;
}

.model-object.lounge .body {
  width: 88%;
  left: 3%;
  height: 184px;
  box-shadow: 18px 18px 0 rgba(21, 94, 117, 0.75);
}

.model-object.shop .wheel,
.model-object.kiosk .wheel,
.model-object.lounge .wheel {
  display: none;
}

.model-object.shop .sign,
.model-object.kiosk .sign,
.model-object.lounge .sign {
  top: 39%;
  left: 26%;
  width: 36%;
  background: #101010;
}

.model-meta {
  padding: clamp(22px, 3vw, 30px);
}

.model-meta h3 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
}

.model-meta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.45;
}

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

.spec-grid div {
  min-height: 72px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.spec-grid dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 5px 0 0;
  font-size: 17px;
  font-weight: 900;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.feature-list span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 210, 60, 0.14);
  color: #ffdd67;
  font-size: 12px;
  font-weight: 800;
}

.cart-proof {
  margin-top: 18px;
  overflow: hidden;
  background: #f9ecd3;
}

.cart-proof img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
}

.menu-list,
.category-board {
  padding: 24px;
}

.menu-list {
  border-radius: var(--radius);
  color: white;
  background: #101010;
}

.menu-list h3,
.category-board h3 {
  margin-bottom: 22px;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.menu-item span:last-child {
  color: var(--yellow);
  white-space: nowrap;
}

.category-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.category-pill {
  padding: 14px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  font-weight: 900;
}

.category-board img {
  width: 100%;
  border-radius: var(--radius);
}

.investment-section {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  background: #fffaf0;
}

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

.metric-card {
  min-height: 160px;
  padding: 22px;
  border-radius: var(--radius);
  background: #101010;
  color: white;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--yellow);
  font-size: 32px;
  line-height: 1;
}

.metric-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

caption {
  padding: 20px;
  text-align: left;
  font-size: 24px;
  font-weight: 900;
}

th,
td {
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

th {
  background: #101010;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
}

tbody tr:nth-child(even) {
  background: rgba(255, 210, 60, 0.13);
}

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

.support-card {
  min-height: 138px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
}

.support-card strong {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
}

.support-card span {
  color: var(--muted);
  line-height: 1.45;
}

.gallery-section {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  color: white;
  background: #101010;
}

.gallery-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

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

.slide-card {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  cursor: pointer;
  color: white;
  text-align: left;
}

.slide-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.slide-card span {
  display: block;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 22px;
  align-items: start;
}

.contact-copy {
  padding: clamp(24px, 4vw, 42px);
  position: sticky;
  top: 92px;
}

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

.contact-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-lines a,
.contact-lines span {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  font: inherit;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: white;
  background: #101010;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.5;
}

.slide-modal {
  width: min(1120px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.slide-modal::backdrop {
  background: rgba(0, 0, 0, 0.76);
}

.slide-modal img {
  width: 100%;
  border-radius: var(--radius);
}

.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: #101010;
  color: white;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 74px 16px auto;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    border-radius: var(--radius);
  }

  .section-heading,
  .story-grid,
  .model-shell,
  .model-view,
  .menu-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .model-tabs {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .investment-cards,
  .support-grid,
  .slide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy {
    position: static;
  }
}

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

  .brand-mark strong,
  .brand-mark small {
    font-size: 18px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 120px 0 270px;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .hero-strip div {
    padding: 16px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 64px 0;
  }

  .story-cards,
  .menu-items,
  .category-items,
  .investment-cards,
  .support-grid,
  .slide-grid,
  .inquiry-form,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .scene {
    min-height: 380px;
  }

  .model-object {
    width: 86%;
    height: 235px;
  }

  .menu-list,
  .category-board {
    padding: 18px;
  }

  footer {
    display: grid;
  }
}
