:root {
  color-scheme: dark;
  --bg: #080706;
  --surface: #151210;
  --surface-2: #211b16;
  --line: #3a3028;
  --text: #fff7ed;
  --muted: #b8aaa0;
  --orange: #ff7a18;
  --orange-2: #ffb15c;
  --green: #22c55e;
  --red: #ef4444;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 122, 24, 0.16), transparent 28rem),
    linear-gradient(180deg, #090706 0%, var(--bg) 38%, #050403 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(58, 48, 40, 0.8);
  background: rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  overflow: hidden;
  color: var(--orange);
  font-size: 25px;
  line-height: 1;
}

.brand-mark img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark img + span {
  display: none;
}

.site-nav {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.site-nav a {
  padding: 9px 8px;
  border-radius: 6px;
}

.site-nav a:hover {
  background: var(--surface-2);
  color: var(--text);
}

.hero-section {
  position: relative;
  display: grid;
  gap: 20px;
  min-height: 560px;
  padding: 42px 44px 30px;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.16), rgba(7, 6, 5, 0.7) 55%, rgba(7, 6, 5, 0.92)),
    linear-gradient(0deg, rgba(7, 6, 5, 0.98), rgba(7, 6, 5, 0.05) 44%, rgba(7, 6, 5, 0.28)),
    url("assets/obraise-hero-smoke.jpg");
  background-position: left center;
  background-size: cover;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 650px;
  padding-bottom: 4px;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 13vw, 92px);
  line-height: 0.96;
}

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

h2 {
  margin-bottom: 6px;
  font-size: clamp(28px, 7vw, 44px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 0;
  font-size: 18px;
}

p {
  color: var(--muted);
  line-height: 1.5;
}

.hero-copy p {
  max-width: 720px;
  margin-bottom: 0;
  color: #d8d0c8;
  font-size: clamp(16px, 2vw, 20px);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.primary-button,
.ghost-button {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  font-weight: 900;
}

.primary-button {
  background: var(--orange);
  color: #120904;
}

.ghost-button {
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
}

.primary-button.small,
.ghost-button.small {
  min-height: 38px;
}

.hero-delivery-logos {
  display: grid;
  grid-template-columns: repeat(4, 96px);
  gap: 22px;
  align-items: end;
  margin-top: 20px;
}

.hero-delivery-logos a {
  display: grid;
  width: 96px;
  min-height: 104px;
  place-items: center;
  border-radius: 4px;
  transition: transform 160ms ease, filter 160ms ease;
}

.hero-delivery-logos a:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.hero-delivery-logos img {
  width: 96px;
  height: 104px;
  object-fit: contain;
}

.hero-media {
  min-height: 260px;
  border: 1px solid rgba(255, 122, 24, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 6, 5, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  background: transparent;
}

.menu-board-section {
  width: min(980px, calc(100% - 24px));
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 122, 24, 0.36);
  border-radius: var(--radius);
  background: rgba(21, 18, 16, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.menu-board-section img {
  width: 100%;
  height: auto;
  background: #070605;
}

.quick-actions,
.delivery-section,
.content-section {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

.delivery-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 0 18px;
}

.delivery-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px 12px;
  align-items: center;
  min-height: 96px;
  padding: 12px;
  border: 1px solid rgba(255, 122, 24, 0.26);
  border-radius: var(--radius);
  background: rgba(21, 18, 16, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.delivery-card strong,
.delivery-card span:last-child {
  min-width: 0;
}

.delivery-card strong {
  align-self: end;
  color: var(--text);
  font-size: 17px;
}

.delivery-card span:last-child {
  align-self: start;
  color: var(--muted);
  font-size: 13px;
}

.delivery-icon {
  grid-row: span 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 122, 24, 0.12);
  color: var(--orange);
}

.delivery-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.glovo-card {
  border-color: rgba(255, 207, 38, 0.5);
  background: linear-gradient(135deg, rgba(255, 207, 38, 0.18), rgba(21, 18, 16, 0.94));
}

.glovo-logo {
  background: #ffcf26;
  color: #18210d;
  font-size: 13px;
  font-weight: 1000;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px 0 26px;
}

.quick-card,
.content-section,
.cart-panel,
.checkout-panel,
.contact-card,
.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 18, 16, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.quick-card {
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 12px;
}

.quick-card strong {
  color: var(--orange-2);
}

.quick-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.content-section {
  margin-bottom: 18px;
  padding: 16px;
}

.section-head,
.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-head p {
  margin-bottom: 0;
}

.category-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
  padding-bottom: 3px;
}

.category-tab {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0c0a09;
  color: var(--muted);
  padding: 0 13px;
  font-weight: 900;
}

.category-tab.active {
  border-color: var(--orange);
  background: rgba(255, 122, 24, 0.18);
  color: var(--text);
}

.menu-grid,
.order-layout,
.contact-layout {
  display: grid;
  gap: 12px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 122, 24, 0.2);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  padding: 12px;
  background: #0c0a09;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.product-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.product-title strong {
  font-size: 18px;
}

.money {
  color: var(--orange-2);
  font-weight: 900;
  white-space: nowrap;
}

.product-body p {
  min-height: 42px;
  margin-bottom: 0;
  font-size: 14px;
}

.cart-panel,
.checkout-panel {
  padding: 13px;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-row {
  display: grid;
  gap: 8px;
  padding: 11px;
  border-radius: var(--radius);
  background: #0c0a09;
}

.cart-row-head,
.qty-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.qty-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-2);
  color: var(--text);
  font-weight: 900;
}

.checkout-form {
  display: grid;
  gap: 13px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 7px;
}

.order-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.order-type-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c0a09;
  padding: 0 10px;
  text-transform: none;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c0a09;
  color: var(--text);
  padding: 11px;
  outline: none;
}

input {
  min-height: 44px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.16);
}

.message {
  min-height: 20px;
  margin: 0;
  color: var(--orange-2);
  font-weight: 900;
}

.contact-layout {
  align-items: stretch;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.contact-card span {
  color: var(--muted);
}

.map-frame {
  min-height: 260px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.floating-cart {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 25;
}

.floating-cart a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid rgba(255, 122, 24, 0.46);
  border-radius: 999px;
  background: var(--orange);
  color: #120904;
  padding: 0 14px;
  box-shadow: var(--shadow);
}

.floating-cart span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #120904;
  color: var(--text);
  font-weight: 900;
}

.empty-state {
  padding: 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  font-weight: 900;
}

@media (min-width: 760px) {
  .site-header {
    padding: 12px 24px;
  }

  .hero-section {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.82fr);
    width: min(1280px, calc(100% - 2px));
    margin: 0 auto;
    padding-top: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

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

  .content-section {
    padding: 20px;
  }

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

  .order-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  }
}

@media (max-width: 430px) {
  .hero-section {
    padding: 28px 14px 24px;
  }

  .site-nav {
    gap: 1px;
    font-size: 12px;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .delivery-section {
    grid-template-columns: 1fr;
  }

  .hero-delivery-logos {
    grid-template-columns: repeat(2, 92px);
    gap: 12px 16px;
  }

  .hero-delivery-logos a,
  .hero-delivery-logos img {
    width: 92px;
  }

  .section-head,
  .panel-head {
    align-items: stretch;
    flex-direction: column;
  }
}
