:root {
  --red: #e30613;
  --yellow: #ffd200;
  --gold: #e6bd59;
  --green: #123b25;
  --dark: #080808;
  --muted: #6b7280;
  --cream: #fff8e7;
  --white: #fff;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

main {
  overflow-x: clip;
}

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

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

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

.section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
}

.section-dark {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  background: #090909;
  color: white;
  position: relative;
  overflow: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #080808;
  display: grid;
  place-items: center;
  color: white;
  animation: loaderAutoHide 0.55s ease 2.2s forwards;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loader-logo {
  width: 230px;
  animation: spinLogo 2.2s ease-in-out infinite;
}

.loader-text {
  position: absolute;
  bottom: 120px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.loader-bar {
  position: absolute;
  bottom: 85px;
  width: 240px;
  height: 3px;
  background: #333;
  border-radius: 9px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--yellow);
  transform-origin: left;
  animation: loadBar 1.6s ease-in-out infinite;
}

@keyframes spinLogo {
  50% {
    transform: rotate(-4deg) scale(1.05);
  }
}

@keyframes loadBar {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes loaderAutoHide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}



.site-header {
  position: fixed;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1380px, calc(100% - 120px));
  height: 76px;
  padding: 0 24px 0 28px;
  display: flex;
  align-items: center;
  gap: 34px;
  z-index: 1000;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-header.scrolled {
  top: 12px;
  height: 66px;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.82), rgba(24, 8, 9, 0.78)) !important;
  backdrop-filter: blur(24px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
  border: 1px solid rgba(230, 189, 89, 0.24) !important;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.brand img {
  width: 170px;
}

.desktop-nav {
  display: flex;
  gap: clamp(22px, 3vw, 52px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.site-header.scrolled .desktop-nav a {
  color: rgba(255, 255, 255, 0.9);
}

.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: .3s;
}

.desktop-nav a:hover:after,
.desktop-nav a.active:after {
  width: 100%;
}

.header-cta {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(230, 189, 89, 0.42);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.site-header.scrolled .header-cta {
  background: linear-gradient(135deg, #f0ca68 0%, #d7a844 100%);
  color: #080808;
  border-color: rgba(255, 227, 144, 0.42);
}

.menu-toggle {
  display: none;
  background: #111;
  border: 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  background: #fff;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 28px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #090909;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 34px;
  font-weight: 900;
  transform: translateY(-100%);
  transition: .55s cubic-bezier(.7, 0, .2, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #080808;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  z-index: 1;
}

.hero-bg-fill {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0.32;
  filter: blur(12px) brightness(0.62) saturate(1.1);
  transform: scale(1.1);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1.0;
  pointer-events: none;
  z-index: 1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(1.08) contrast(1.03) saturate(1.08);
  animation: zoomBg 28s ease-in-out infinite alternate;
}

.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3, 3, 3, 0.9) 0%, rgba(5, 5, 5, 0.66) 30%, rgba(6, 6, 6, 0.18) 58%, rgba(6, 6, 6, 0.06) 100%),
              linear-gradient(to bottom, rgba(4, 4, 4, 0.18) 0%, rgba(5, 5, 5, 0.02) 50%, rgba(4, 4, 4, 0.5) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Floating animated vectors in Hero background */
.hero-vectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
  mix-blend-mode: screen;
}

.floating-vector {
  position: absolute;
  width: 64px;
  height: 64px;
  color: var(--gold);
  opacity: 0.16;
  filter: drop-shadow(0 0 18px rgba(230, 189, 89, 0.26));
  animation: floatAnim 16s ease-in-out infinite alternate, vectorPulse 5.5s ease-in-out infinite;
}

.floating-vector:nth-child(1) {
  left: 7%;
  top: 22%;
  animation-duration: 14s, 5.2s;
  animation-delay: 0s;
}

.floating-vector:nth-child(2) {
  right: 12%;
  top: 28%;
  color: var(--red);
  opacity: 0.14;
  animation-duration: 18s, 6s;
  animation-delay: -3s;
}

.floating-vector:nth-child(3) {
  left: 43%;
  top: 17%;
  color: white;
  opacity: 0.1;
  animation-duration: 16s, 5.8s;
  animation-delay: -6s;
}

.floating-vector:nth-child(4) {
  left: 16%;
  bottom: 30%;
  color: var(--red);
  opacity: 0.12;
  animation-duration: 22s, 6.4s;
  animation-delay: -2s;
}

.floating-vector:nth-child(5) {
  right: 28%;
  bottom: 26%;
  color: var(--gold);
  opacity: 0.14;
  animation-duration: 20s, 5.6s;
  animation-delay: -5s;
}

@keyframes floatAnim {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-20px) rotate(8deg) scale(1.06);
  }
  100% {
    transform: translateY(10px) rotate(-8deg) scale(0.95);
  }
}

@keyframes vectorPulse {
  0%, 100% {
    opacity: 0.08;
    stroke-width: 1.1;
  }
  50% {
    opacity: 0.2;
    stroke-width: 1.45;
  }
}

@keyframes zoomBg {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.03); }
}

.hero-container-mockup {
  position: relative;
  z-index: 10;
  width: min(1380px, calc(100% - 120px));
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 126px;
}

.hero-main-content {
  display: grid;
  grid-template-columns: minmax(700px, 0.92fr) minmax(420px, 1.08fr);
  gap: 30px;
  align-items: center;
  flex-grow: 1;
  padding-bottom: 0;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 790px;
  padding-top: 0;
}

.hero h1.hero-title-mockup {
  font-size: clamp(2.85rem, 3.55vw, 3.85rem) !important;
  font-weight: 900 !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  margin: 0 0 24px 0 !important;
  text-transform: uppercase !important;
  color: white !important;
  max-width: 100% !important;
  text-wrap: balance;
}

.hero-title-mockup .red-text {
  color: var(--red);
  text-shadow: 0 2px 10px rgba(227, 6, 19, 0.15);
}

.hero-title-mockup .gold-text {
  color: var(--gold);
}

.hero-title-mockup .white-text {
  color: white;
}

.hero-lead-mockup {
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.94);
  margin: 0 0 28px;
  max-width: 560px;
}

.btn-mockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #f0ca68 0%, #d7a844 100%);
  color: #111;
  padding: 19px 34px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1.5px solid rgba(255, 227, 144, 0.28);
  cursor: pointer;
}

.btn-mockup svg {
  transition: transform 0.35s ease;
}

.btn-mockup:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
  box-shadow: 0 18px 36px rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn-mockup:hover svg {
  transform: translateX(4px);
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 545px;
  margin-top: 36px;
  background: rgba(15, 15, 14, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.feature-card-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  min-width: 0;
}

.feature-icon-wrapper {
  color: var(--gold);
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-icon-wrapper svg {
  width: 38px;
  height: 38px;
}

.feature-card-mockup:hover .feature-icon-wrapper {
  background: transparent;
  color: white;
  transform: translateY(-2px) scale(1.05);
}

.feature-info {
  display: flex;
  flex-direction: column;
}

.feature-info strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  color: white;
  text-transform: uppercase;
  line-height: 1.18;
}

.feature-info span {
  font-size: 12px;
  font-weight: 900;
  color: white;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: uppercase;
}

.hero-bottom-bar {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1380px, calc(100vw - 120px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(190px, 240px);
  gap: 26px;
  align-items: center;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.94) 0%, rgba(28, 9, 10, 0.95) 46%, rgba(8, 8, 8, 0.94) 100%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1.5px solid rgba(230, 189, 89, 0.22);
  border-radius: 18px;
  padding: 20px 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  z-index: 20;
  overflow: hidden;
}

.hero-bottom-bar.reveal {
  opacity: 1;
  transform: translateX(-50%);
}

.bottom-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bottom-icon {
  flex: 0 0 auto;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bottom-text strong {
  font-size: 15px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.04em;
  line-height: 1.15;
  white-space: nowrap;
}

.bottom-text span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.25;
  white-space: nowrap;
}

.btn-bottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #f0ca68 0%, #d7a844 100%);
  color: #12231a;
  border: 1.5px solid rgba(255, 227, 144, 0.38);
  padding: 16px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.35s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-bottom:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.25);
  transform: translateY(-1px);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .65;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: var(--red);
  right: 8%;
  top: 20%;
  animation: floatA 14s ease-in-out infinite alternate;
}

.orb-b {
  width: 260px;
  height: 260px;
  background: var(--yellow);
  right: 28%;
  bottom: 12%;
  animation: floatB 18s ease-in-out infinite alternate;
}

@keyframes floatA {
  0% { margin-top: 0px; margin-left: 0px; }
  50% { margin-top: 25px; margin-left: -20px; }
  100% { margin-top: -15px; margin-left: 30px; }
}

@keyframes floatB {
  0% { margin-top: 0px; margin-left: 0px; }
  50% { margin-top: -30px; margin-left: 25px; }
  100% { margin-top: 15px; margin-left: -15px; }
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  z-index: 2;
}

.eyebrow {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow:before {
  content: "";
  width: 44px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.8vw, 6.2rem);
  line-height: 1.15;
  letter-spacing: -.04em;
  margin: 22px 0;
  font-weight: 900;
  max-width: 960px;
}

.hero-lead {
  max-width: 680px;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.65;
  color: #e9e9e9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 17px 24px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn.primary {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 8px 20px rgba(255, 210, 0, 0.2);
}

.btn.primary:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.25), 0 0 25px rgba(255, 210, 0, 0.45);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn.small {
  padding: 13px 18px;
  background: #111;
  color: #fff;
}

.hero-card {
  position: absolute;
  right: 8%;
  bottom: 14%;
  z-index: 2;
  width: 280px;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 24px 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 
              inset 0 1px 0 rgba(255, 255, 255, 0.15),
              0 0 40px rgba(227, 6, 19, 0.1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 
              inset 0 1px 0 rgba(255, 255, 255, 0.25),
              0 0 50px rgba(255, 210, 0, 0.15);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card-header .badge-icon {
  color: var(--yellow);
  filter: drop-shadow(0 0 8px rgba(255, 210, 0, 0.6));
  animation: badgePulse 2s ease-in-out infinite alternate;
}

@keyframes badgePulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(255, 210, 0, 0.4)); }
  100% { transform: scale(1.08); filter: drop-shadow(0 0 12px rgba(255, 210, 0, 0.8)); }
}

.hero-card span {
  color: var(--white);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--white) 30%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-card strong {
  display: block;
  margin-top: 10px;
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* Highlight Text */
.highlight .char {
  background: linear-gradient(135deg, var(--yellow) 0%, #ff8a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 210, 0, 0.2);
}

/* Hero Glow Spotlight */
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.12) 0%, rgba(227, 6, 19, 0.04) 50%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.hero:hover .hero-glow {
  opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mouse-icon {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.mouse-icon .wheel {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--yellow);
  border-radius: 99px;
  animation: scrollWheel 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}

.scroll-text {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 0; }
  15% { opacity: 1; }
  50% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.ticker {
  position: relative;
  height: 96px;
  background: linear-gradient(135deg, #b8000b 0%, #e30613 44%, #8d0008 100%);
  overflow: hidden;
  max-width: 100vw;
  contain: paint;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 18px 38px rgba(255, 255, 255, 0.1), inset 0 -28px 46px rgba(0, 0, 0, 0.28);
}

.ticker:before,
.ticker:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.ticker:before {
  left: 0;
  background: linear-gradient(to right, #8d0008, rgba(141, 0, 8, 0));
}

.ticker:after {
  right: 0;
  background: linear-gradient(to left, #8d0008, rgba(141, 0, 8, 0));
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  display: inline-block;
  padding-right: 48px;
}

.ticker-track span:nth-child(2) {
  color: rgba(255, 255, 255, 0.82);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.numbers {
  background: var(--cream);
  padding: 70px 0;
  min-height: auto;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.number-card {
  background: white;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.number-card strong {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: var(--red);
}

.number-card span {
  font-weight: 800;
  color: #333;
}

.section-head {
  margin-bottom: 55px;
}

.section-head h2,
.split-subtitle {
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1.15;
  letter-spacing: -.04em;
  margin: 16px 0 0;
  max-width: 950px;
  font-weight: 900;
}

.section-head.light h2 {
  color: white;
}

.history-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.history-left {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.history-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.history-image-container {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.history-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.history-image-container:hover img {
  transform: scale(1.03);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
  padding: 30px 20px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.timeline {
  display: grid;
  gap: 18px;
}

.time-item {
  border-left: 5px solid var(--yellow);
  background: #111;
  color: white;
  border-radius: 0 24px 24px 0;
  padding: 26px;
}

.time-item span {
  font-size: 38px;
  color: var(--yellow);
  font-weight: 900;
}

.time-item p {
  margin: .4rem 0 0;
  color: #ddd;
}

.company-history {
  min-height: 100vh;
  padding: 112px 0 36px;
  background: #050505;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.company-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.48) 68%, rgba(0, 0, 0, 0.72) 100%),
              url("../assets/bg-history-premium.png") center/cover no-repeat;
  filter: saturate(1.08);
  pointer-events: none;
}

.company-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 52% 50%, rgba(230, 189, 89, 0.14), transparent 18%),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.42));
}

.company-layout {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 120px));
  height: calc(100vh - 148px);
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 20px 48px;
  align-items: stretch;
}

.company-copy {
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.company-eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-eyebrow:before {
  content: "";
  width: 44px;
  height: 2px;
  background: currentColor;
}

.company-title {
  margin: 0 0 22px;
  max-width: 670px;
  font-size: clamp(2.65rem, 4.1vw, 4.65rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.company-title span {
  color: var(--gold);
}

.company-text {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.45;
}

.company-text p {
  margin: 0 0 14px;
}

.company-text strong {
  color: var(--gold);
}

.company-photo {
  position: relative;
  margin: auto 0 0;
  height: clamp(150px, 21vh, 220px);
  max-width: 640px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(230, 189, 89, 0.34);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35), 0 0 36px rgba(230, 189, 89, 0.12);
}

.company-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 32px);
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.82);
  border: 1px solid rgba(230, 189, 89, 0.32);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.company-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: center;
  padding-left: 48px;
  min-height: 0;
}

.company-timeline-line {
  position: absolute;
  left: 17px;
  top: 54px;
  bottom: 54px;
  width: 2px;
  background: rgba(230, 189, 89, 0.18);
}

.company-timeline-line span {
  display: block;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--red));
  box-shadow: 0 0 24px rgba(230, 189, 89, 0.65);
}

.company-time-card {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 116px;
  padding: 18px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(230, 189, 89, 0.34);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.company-time-card:before {
  content: "";
  position: absolute;
  left: -39px;
  top: 50%;
  width: 28px;
  height: 2px;
  background: rgba(230, 189, 89, 0.64);
}

.company-time-card:after {
  content: "";
  position: absolute;
  left: -48px;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #050505;
  border: 3px solid var(--gold);
  box-shadow: 0 0 16px rgba(230, 189, 89, 0.6);
}

.company-time-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #080808;
  background: linear-gradient(135deg, #ffd86b, #c99125);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.company-time-icon svg {
  width: 48px;
  height: 48px;
}

.company-time-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.company-time-card p {
  margin: 8px 0 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.32;
}

.company-stats {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-radius: 20px;
  border: 1px solid rgba(230, 189, 89, 0.4);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 0 32px rgba(230, 189, 89, 0.08);
  overflow: hidden;
}

.company-stats div {
  min-height: 94px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.company-stats div:first-child {
  border-left: 0;
}

.company-stat-icon {
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(230, 189, 89, 0.7);
  box-shadow: inset 0 0 18px rgba(230, 189, 89, 0.1);
}

.company-stat-icon svg {
  width: 30px;
  height: 30px;
}

.company-stats span {
  color: var(--gold);
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  font-weight: 900;
  text-transform: uppercase;
}

.company-stats small {
  color: white;
  font-size: 0.92rem;
}

.departments {
  min-height: 100vh;
  padding: 94px 0 28px;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.departments-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.66) 42%, rgba(0, 0, 0, 0.92) 100%),
              url("../bgkuri.jpg") center/cover no-repeat;
  filter: saturate(1.1) brightness(0.75);
  pointer-events: none;
}

.departments-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 28%, rgba(230, 189, 89, 0.18), transparent 22%),
              linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 52%, rgba(0, 0, 0, 0.36));
}

.dept-head {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 120px));
  margin-bottom: 16px;
  text-align: center;
}

.dept-eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.dept-eyebrow:before,
.dept-eyebrow:after {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

.dept-title {
  width: min(1180px, 100%);
  margin: 0 auto;
  color: white;
  font-size: clamp(2.55rem, 4vw, 4.15rem);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: 0;
}

.dept-title span {
  color: var(--gold);
}

.dept-lead {
  max-width: 580px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.45;
}

.dept-grid {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 120px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dept-card {
  position: relative;
  min-height: clamp(155px, 20vh, 190px);
  border-radius: 18px;
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  contain: paint;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(230, 189, 89, 0.42);
  transform-style: preserve-3d;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.dept-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--dept-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) brightness(0.8);
  transform: scale(1.03);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.dept-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.28) 36%, rgba(0, 0, 0, 0.94) 100%),
              radial-gradient(circle at 18% 30%, rgba(230, 189, 89, 0.18), transparent 22%);
}

.dept-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 189, 89, 0.8);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42), 0 0 28px rgba(230, 189, 89, 0.12);
}

.dept-card:hover:before {
  transform: scale(1.08);
  filter: saturate(1.2) brightness(0.92);
}

.dept-num {
  position: absolute;
  z-index: 2;
  left: 20px;
  top: 18px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--yellow);
  border: 2px solid rgba(255, 210, 0, 0.9);
  background: rgba(0, 0, 0, 0.48);
  font-size: 13px;
  font-weight: 900;
}

.dept-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--gold);
  border: 1.5px solid rgba(230, 189, 89, 0.72);
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dept-icon svg {
  width: 28px;
  height: 28px;
}

.dept-card h3 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.55rem, 1.9vw, 2.15rem);
  margin: 0 0 6px;
  line-height: 1;
  color: white;
  font-weight: 900;
}

.dept-card p {
  position: relative;
  z-index: 2;
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.86rem, 0.92vw, 1rem);
  line-height: 1.28;
}

.dept-card i {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  color: var(--gold);
  font-style: normal;
  font-size: 30px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.dept-card:hover i {
  transform: translateX(6px);
}

.offer-slider {
  width: 100%;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px max(20px, calc((100vw - 1180px) / 2)) 34px;
  scroll-snap-type: x mandatory;
}

.offer-slider::-webkit-scrollbar {
  height: 8px;
}

.offer-slider::-webkit-scrollbar-thumb {
  background: #111;
  border-radius: 10px;
}

.offer {
  min-width: min(760px, 82vw);
  height: 315px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .16);
  scroll-snap-align: center;
}

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

.delivery {
  background: radial-gradient(circle at 72% 50%, rgba(255, 210, 0, .25), transparent 28%), #0a0a0a;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.delivery-copy p:not(.eyebrow) {
  font-size: 20px;
  line-height: 1.7;
  color: #ddd;
}

.delivery-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.delivery-features span {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  background: rgba(255, 255, 255, .06);
}

.phone-mockup {
  height: 620px;
  border-radius: 48px;
  background: #171717;
  border: 12px solid #252525;
  padding: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.phone-screen {
  height: 100%;
  border-radius: 34px;
  background: linear-gradient(160deg, var(--yellow), #fff 42%, #ffe);
  color: #111;
  padding: 40px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.phone-screen img {
  width: 230px;
  margin-bottom: 40px;
}

.phone-screen h3 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.phone-screen p {
  font-weight: 700;
  line-height: 1.5;
}

.phone-screen button {
  margin-top: 20px;
  border: 0;
  background: #111;
  color: white;
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 900;
}

.stores {
  background: var(--cream);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.store-card {
  background: white;
  border-radius: 32px;
  padding: 38px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .08);
}

.store-card h3 {
  font-size: 42px;
  margin: 0 0 14px;
  color: var(--red);
  line-height: 1.2;
}

.store-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.contact {
  background: linear-gradient(135deg, #111, #330000);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-grid p:not(.eyebrow) {
  font-size: 20px;
  color: #ddd;
  line-height: 1.7;
}

.contact-form {
  background: white;
  color: #111;
  border-radius: 34px;
  padding: 30px;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 17px;
  font: inherit;
}

.success {
  display: none;
  color: #118038;
  font-weight: 800;
}

.contact-form.sent .success {
  display: block;
}

.footer {
  background: #050505;
  color: white;
  padding: 45px 0;
}

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

.footer a {
  display: block;
  margin: 6px 0;
  color: #ddd;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
}

.split-title .char,
.split-subtitle .char {
  display: inline-block;
}

@media(max-width: 920px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .brand img {
    width: 145px;
  }
  .hero {
    padding-top: 120px;
  }
  .hero-card {
    display: none;
  }
  .ticker {
    height: 74px;
  }
  .ticker-track {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }
  .numbers-grid,
  .dept-grid,
  .history-layout,
  .delivery-grid,
  .stores-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section,
  .section-dark {
    padding: 80px 0;
    min-height: auto;
    display: block;
  }
  .company-history {
    padding: 96px 0 56px;
    min-height: auto;
  }
  .company-layout {
    width: calc(100% - 28px);
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 34px;
  }
  .company-title {
    font-size: clamp(2.45rem, 10vw, 3.8rem);
  }
  .company-photo {
    height: 220px;
    max-width: none;
  }
  .company-timeline {
    padding-left: 34px;
  }
  .company-time-card {
    grid-template-columns: 68px 1fr;
    min-height: auto;
    padding: 16px;
    gap: 16px;
  }
  .company-time-icon {
    width: 68px;
    height: 68px;
    border-radius: 14px;
  }
  .company-time-icon svg {
    width: 38px;
    height: 38px;
  }
  .company-time-card:before {
    left: -26px;
    width: 18px;
  }
  .company-time-card:after {
    left: -35px;
  }
  .company-timeline-line {
    left: 7px;
  }
  .company-stats {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .company-stats div {
    min-height: 78px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .company-stats div:first-child {
    border-top: 0;
  }
  .phone-mockup {
    height: 500px;
    max-width: 360px;
    margin: auto;
  }
  .number-card strong {
    font-size: 42px;
  }

  .site-header {
    height: 66px;
    top: 12px;
    width: min(1180px, calc(100% - 28px));
  }
  .hero-content {
    margin-left: 20px;
  }
  .offer {
    height: 240px;
  }
  
  /* Mockup Hero Mobile overrides */
  .hero {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
  .hero-container-mockup {
    padding-top: 100px;
    padding-bottom: 0;
    height: auto;
    min-height: 100vh;
    justify-content: flex-start;
    gap: 30px;
  }
  .hero-main-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 20px;
  }
  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 8px;
    max-width: 100%;
  }
  .hero-bottom-bar {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
  }
  .hero-bottom-bar.reveal {
    transform: none;
  }
  .btn-bottom {
    justify-content: center;
    width: 100%;
  }
  .hero-bg-image {
    background-size: auto 100%;
    background-position: 56% center;
    opacity: 0.56;
  }
}

@media(max-height: 800px) and (min-width: 921px) {
  .premium-title {
    font-size: clamp(2.65rem, 3.85vw, 4rem);
  }

  .premium-lead {
    margin-top: 18px;
    font-size: 1.08rem;
  }

  .delivery,
  .stores,
  .contact {
    padding-top: 92px;
    padding-bottom: 24px;
  }

  .delivery-premium {
    min-height: calc(100vh - 116px);
    grid-template-columns: 0.9fr 0.74fr 0.42fr;
    gap: 18px 26px;
  }

  .delivery .delivery-features {
    margin: 24px 0;
    gap: 10px;
  }

  .delivery .delivery-features span {
    padding: 11px;
    font-size: 0.86rem;
  }

  .premium-cta {
    min-height: 54px;
    font-size: 16px;
  }

  .delivery-phone-frame {
    width: 270px;
    min-width: 270px;
    height: 500px;
    border-radius: 34px;
  }

  .delivery-app-header {
    height: 98px;
    padding: 18px;
  }

  .delivery-app-header img {
    width: 140px;
  }

  .delivery-products div {
    min-height: 145px;
    padding: 8px;
  }

  .delivery-products img {
    height: 54px;
  }

  .delivery-club {
    padding: 24px 22px;
  }

  .delivery-club h3 {
    margin: 16px 0 10px;
    font-size: 1.55rem;
  }

  .delivery-bottom div {
    padding: 16px 20px;
  }

  .stores-head {
    margin-bottom: 22px;
    gap: 40px;
  }

  .stores .store-card {
    min-height: 285px;
  }

  .store-card img {
    min-height: 285px;
  }

  .store-card-body {
    padding: 24px;
  }

  .store-card-body h3 {
    font-size: 2rem;
  }

  .premium-route {
    padding: 13px 16px;
    min-width: 130px;
  }

  .stores-seal {
    margin-top: 18px;
    padding: 15px 24px;
    font-size: 1.05rem;
  }

  .contact-premium {
    gap: 48px;
  }

  .contact-list {
    margin-top: 30px;
    gap: 16px;
  }

  .contact-list div {
    min-height: 46px;
    padding-left: 62px;
  }

  .contact-list div:before {
    width: 46px;
    height: 46px;
  }

  .contact-list span {
    font-size: 1.02rem;
  }

  .contact-commit {
    margin-top: 24px;
    padding: 18px 22px;
  }

  .contact-form {
    padding: 30px;
    gap: 11px;
  }

  .contact-form-head {
    margin-bottom: 18px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px;
  }

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

@media(max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }
  .hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
  }
  .hero h1.hero-title-mockup {
    font-size: clamp(2.25rem, 10vw, 3rem) !important;
    line-height: 1.02 !important;
  }
  .section-head h2,
  .split-subtitle {
    font-size: 2.5rem;
  }
  .offer {
    height: 190px;
  }
  .store-card,
  .contact-form {
    padding: 24px;
  }
  .ticker-track {
    font-size: clamp(2rem, 12vw, 3rem);
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  
  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Height-based media query to scale down elements on short desktop viewports (e.g. laptop screens) */
@media(max-height: 800px) and (min-width: 921px) {
  .hero-container-mockup {
    padding-top: 118px;
    padding-bottom: 105px;
  }
  .hero-main-content {
    gap: 20px;
    padding-bottom: 0;
    align-items: center;
  }
  .hero h1.hero-title-mockup {
    font-size: clamp(2.7rem, 3.35vw, 3.45rem) !important;
    margin: 0 0 18px 0 !important;
  }
  .hero-lead-mockup {
    font-size: clamp(1.05rem, 1.35vw, 1.28rem);
    margin-bottom: 20px;
  }
  .btn-mockup {
    padding: 15px 28px;
    font-size: 13px;
  }
  .hero-features-grid {
    margin-top: 28px;
    padding: 18px 18px;
  }
  .feature-card-mockup {
    gap: 10px;
  }
  .feature-icon-wrapper {
    width: 34px;
    height: 34px;
  }
  .feature-icon-wrapper svg {
    width: 32px;
    height: 32px;
  }
  .feature-info strong {
    font-size: 10px;
  }
  .feature-info span {
    font-size: 10px;
  }
  .hero-bottom-bar {
    bottom: 24px;
    padding: 15px 28px;
    gap: 18px;
    border-radius: 16px;
  }
  .bottom-icon svg {
    width: 24px;
    height: 24px;
  }
  .bottom-text strong {
    font-size: 12px;
  }
  .bottom-text span {
    font-size: 12px;
  }
  .btn-bottom {
    padding: 13px 18px;
    font-size: 12px;
    border-radius: 8px;
  }
  .company-history {
    padding-top: 94px;
    padding-bottom: 28px;
  }
  .company-layout {
    height: calc(100vh - 122px);
    min-height: 560px;
    gap: 14px 38px;
  }
  .company-eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .company-title {
    margin-bottom: 14px;
    font-size: clamp(2.35rem, 3.55vw, 3.65rem);
  }
  .company-text {
    font-size: 0.92rem;
    line-height: 1.36;
  }
  .company-text p {
    margin-bottom: 10px;
  }
  .company-photo {
    height: 148px;
  }
  .company-timeline {
    gap: 10px;
  }
  .company-time-card {
    min-height: 94px;
    grid-template-columns: 70px 1fr;
    padding: 13px 18px;
    gap: 18px;
  }
  .company-time-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
  }
  .company-time-icon svg {
    width: 40px;
    height: 40px;
  }
  .company-time-card strong {
    font-size: clamp(1.9rem, 2.65vw, 2.55rem);
  }
  .company-time-card p {
    margin-top: 5px;
    font-size: 0.98rem;
  }
  .company-stats div {
    min-height: 76px;
    padding: 14px 20px;
  }
  .company-stats span {
    font-size: clamp(1.12rem, 1.4vw, 1.45rem);
  }
}

/* Premium final sections */
.premium-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.premium-eyebrow:before {
  content: "";
  width: 46px;
  height: 2px;
  background: currentColor;
}

.premium-title {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 4.8vw, 5.3rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.premium-title span {
  color: var(--gold);
}

.premium-lead {
  margin: 28px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  line-height: 1.45;
}

.premium-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffd86b, #e3a925);
  color: #070707;
  font-size: 18px;
  font-weight: 900;
  border: 1px solid rgba(255, 230, 150, 0.44);
  box-shadow: 0 16px 44px rgba(230, 169, 37, 0.24);
}

.premium-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(230, 189, 89, 0.62);
  background: rgba(230, 189, 89, 0.08);
  font-size: 26px;
  font-weight: 900;
}

/* Company compact horizontal timeline */
.company-history {
  padding: 100px 0 28px;
}

.company-layout {
  width: min(1380px, calc(100% - 120px));
  height: calc(100vh - 128px);
  min-height: 600px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 18px 40px;
}

.company-copy {
  grid-column: 1;
  grid-row: 1;
}

.company-title {
  max-width: 620px;
  font-size: clamp(2.25rem, 3.45vw, 3.75rem);
  line-height: 1.02;
  margin-bottom: 16px;
}

.company-text {
  max-width: 650px;
  font-size: clamp(0.9rem, 0.96vw, 1.02rem);
  line-height: 1.38;
}

.company-text p {
  margin-bottom: 10px;
}

.company-photo {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  width: min(100%, 470px);
  height: min(42vh, 315px);
  margin: 0;
}

.company-timeline {
  grid-column: 1 / 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 26px 0 0;
}

.company-timeline-line {
  left: 8%;
  right: 8%;
  top: 0;
  bottom: auto;
  width: auto;
  height: 2px;
}

.company-timeline-line span {
  width: 0;
  height: 100%;
}

.company-time-card {
  min-height: 118px;
  grid-template-columns: 56px 1fr;
  padding: 15px;
  gap: 14px;
  border-radius: 16px;
}

.company-time-card:before {
  left: 50%;
  top: -26px;
  width: 2px;
  height: 18px;
}

.company-time-card:after {
  left: calc(50% - 7px);
  top: -35px;
  width: 14px;
  height: 14px;
  border-width: 2px;
}

.company-time-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.company-time-icon svg {
  width: 32px;
  height: 32px;
}

.company-time-card strong {
  font-size: clamp(1.75rem, 2vw, 2.25rem);
}

.company-time-card p {
  font-size: 0.9rem;
  line-height: 1.25;
}

.company-stats {
  grid-column: 1 / 3;
  grid-row: 3;
  border-width: 1px;
}

.company-stats div {
  min-height: 72px;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  padding: 12px 20px;
  border-left-color: rgba(230, 189, 89, 0.18);
}

.company-stat-icon {
  width: 44px;
  height: 44px;
  border-width: 1px;
}

.company-stat-icon svg {
  width: 24px;
  height: 24px;
}

.company-stats span {
  font-size: clamp(1rem, 1.35vw, 1.35rem);
}

.company-stats small {
  font-size: 0.82rem;
}

/* Delivery premium */
.delivery {
  min-height: 100vh;
  padding: 100px 0 34px;
  background: #050505;
}

.delivery-bg,
.stores-bg,
.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.delivery-bg {
  background: radial-gradient(circle at 58% 52%, rgba(230, 189, 89, 0.12), transparent 24%),
              linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.9)),
              url("../assets/bg-delivery-premium.png") center/cover no-repeat;
}

.stores-bg {
  background: radial-gradient(circle at 52% 52%, rgba(230, 189, 89, 0.12), transparent 24%),
              linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)),
              url("../assets/bg-stores-premium.png") center/cover no-repeat;
}

.contact-bg {
  background: radial-gradient(circle at 58% 48%, rgba(230, 189, 89, 0.12), transparent 24%),
              linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.9)),
              url("../assets/bg-contact-premium.png") center/cover no-repeat;
}

.delivery-premium {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 120px));
  min-height: calc(100vh - 134px);
  display: grid;
  grid-template-columns: 0.95fr 0.9fr 0.48fr;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 26px 34px;
  align-items: center;
}

.delivery-copy {
  max-width: 640px;
}

.delivery .delivery-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 34px;
}

.delivery .delivery-features span {
  border-radius: 12px;
  border: 1px solid rgba(230, 189, 89, 0.22);
  background: rgba(255, 255, 255, 0.045);
  color: white;
  font-size: 0.95rem;
  padding: 14px;
}

.delivery-phone {
  justify-self: center;
  perspective: 1200px;
}

.delivery-phone-frame {
  width: min(330px, 22vw);
  min-width: 285px;
  height: 620px;
  padding: 16px;
  border-radius: 42px;
  background: #111;
  border: 8px solid #242424;
  transform: rotate(-4deg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 42px rgba(230, 189, 89, 0.16);
}

.delivery-phone-top {
  height: 28px;
  color: #111;
  background: white;
  border-radius: 24px 24px 0 0;
  padding: 8px 22px 0;
  font-weight: 900;
}

.delivery-app {
  height: calc(100% - 28px);
  background: #f7f7f7;
  color: #111;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}

.delivery-app-header {
  height: 120px;
  padding: 24px;
  background: var(--red);
  color: white;
}

.delivery-app-header img {
  width: 170px;
}

.delivery-app-header span {
  display: block;
  margin-top: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-app-search {
  margin: 16px 22px;
  height: 42px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.delivery-app-tabs {
  display: flex;
  gap: 8px;
  padding: 0 18px 14px;
}

.delivery-app-tabs span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #eee;
  font-size: 12px;
  font-weight: 800;
}

.delivery-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 0 16px;
}

.delivery-products div {
  background: white;
  border-radius: 12px;
  padding: 10px;
  min-height: 190px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.delivery-products img {
  width: 100%;
  height: 74px;
  object-fit: contain;
}

.delivery-products strong,
.delivery-products small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
}

.delivery-club {
  align-self: center;
  padding: 34px 30px;
  border-radius: 22px;
  border: 1px solid rgba(230, 189, 89, 0.48);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
}

.delivery-club h3 {
  margin: 24px 0 14px;
  color: white;
  font-size: 2rem;
  line-height: 1.08;
}

.delivery-club h3 span {
  color: var(--gold);
}

.delivery-club p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.delivery-club a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 900;
}

.delivery-bottom {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 20px;
  border: 1px solid rgba(230, 189, 89, 0.26);
  background: rgba(8, 8, 8, 0.74);
  overflow: hidden;
}

.delivery-bottom div {
  padding: 22px 28px;
  border-left: 1px solid rgba(230, 189, 89, 0.16);
}

.delivery-bottom div:first-child {
  border-left: 0;
}

.delivery-bottom strong,
.delivery-bottom small {
  display: block;
  color: white;
}

.delivery-bottom small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
}

/* Stores premium */
.stores {
  min-height: 100vh;
  padding: 100px 0 36px;
  background: #050505;
  color: white;
  position: relative;
  overflow: hidden;
}

.stores-premium {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 120px));
}

.stores-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

.stores-note {
  margin: 0;
  padding-top: 24px;
  border-top: 2px solid var(--gold);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.45;
}

.stores-note strong {
  color: var(--gold);
}

.stores .stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.stores .store-card {
  position: relative;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(230, 189, 89, 0.48);
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.store-card img {
  width: 100%;
  height: 360px;
  min-height: 0;
  object-fit: cover;
  filter: brightness(0.86) saturate(1.05);
}

.store-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.08));
}

.store-card-body h3 {
  grid-column: 1 / 3;
  margin: 0;
  color: var(--gold);
  font-size: 2.6rem;
  line-height: 1;
}

.store-card-body p {
  margin: 0;
  color: white;
  line-height: 1.45;
}

.premium-route {
  grid-row: 2 / 4;
  grid-column: 2;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 150px;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd86b, #e3a925);
  color: #080808;
  font-weight: 900;
}

.stores-seal {
  width: min(880px, 100%);
  margin: 24px auto 0;
  padding: 20px 30px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
}

.stores-seal strong {
  color: var(--gold);
}

/* Contact premium */
.contact {
  min-height: 100vh;
  padding: 110px 0 56px;
  background: #060606;
  position: relative;
  overflow: hidden;
}

.contact-premium {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 120px));
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 72px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 46px;
}

.contact-list div {
  padding-left: 76px;
  min-height: 54px;
  position: relative;
}

.contact-list div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(230, 189, 89, 0.58);
  background: rgba(230, 189, 89, 0.08);
}

.contact-list strong {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list span {
  display: block;
  margin-top: 5px;
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-commit {
  margin-top: 36px;
  padding: 22px 26px;
  border-radius: 16px;
  border: 1px solid rgba(230, 189, 89, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.contact-commit strong,
.contact-commit span {
  display: block;
}

.contact-commit strong {
  color: white;
  font-size: 1.1rem;
}

.contact-commit span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  padding: 42px;
  border-radius: 22px;
  border: 1px solid rgba(230, 189, 89, 0.34);
  background: linear-gradient(135deg, rgba(230, 189, 89, 0.12), rgba(255, 255, 255, 0.035));
  color: white;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
}

.contact-form-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-form-head h3,
.contact-form-head p {
  margin: 0;
}

.contact-form-head h3 {
  color: var(--gold);
  font-size: 1.35rem;
}

.contact-form-head p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-form input,
.contact-form textarea {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(230, 189, 89, 0.22);
  color: white;
  border-radius: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.contact-form .premium-cta {
  width: 100%;
  border: 0;
  margin-top: 8px;
}

/* Footer premium */
.footer {
  background: linear-gradient(135deg, #050505, #170506);
  color: white;
  padding: 46px 0 0;
  border-top: 1px solid rgba(230, 189, 89, 0.22);
}

.footer-premium {
  width: min(1380px, calc(100% - 120px));
  display: grid;
  grid-template-columns: 1fr auto 260px;
  gap: 50px;
  align-items: start;
}

.footer-premium img {
  width: 210px;
}

.footer-premium p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-premium nav {
  columns: 2;
  column-gap: 42px;
}

.footer-premium a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer-contact strong,
.footer-contact span {
  display: block;
}

.footer-contact strong {
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 34px;
  padding: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media(max-width: 920px) {
  .company-layout,
  .delivery-premium,
  .stores-premium,
  .contact-premium,
  .footer-premium {
    width: calc(100% - 28px);
  }

  .company-layout,
  .delivery-premium,
  .stores-head,
  .stores .stores-grid,
  .contact-premium,
  .footer-premium {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .company-photo,
  .company-copy,
  .company-timeline,
  .company-stats {
    grid-column: auto;
    grid-row: auto;
  }

  .company-timeline {
    grid-template-columns: 1fr;
    padding-left: 34px;
    padding-top: 0;
  }

  .company-timeline-line {
    left: 7px;
    right: auto;
    top: 30px;
    bottom: 30px;
    width: 2px;
    height: auto;
  }

  .company-timeline-line span {
    width: 100%;
    height: 100%;
  }

  .delivery-premium {
    grid-template-rows: auto;
  }

  .delivery-phone-frame {
    width: min(330px, 88vw);
  }

  .delivery-club,
  .delivery-bottom {
    grid-column: auto;
  }

  .delivery .delivery-features,
  .delivery-bottom,
  .company-stats {
    grid-template-columns: 1fr;
  }

  .premium-title {
    font-size: clamp(2.45rem, 10vw, 3.65rem);
  }
}

@media(max-height: 800px) and (min-width: 921px) {
  .premium-title {
    font-size: clamp(2.55rem, 3.65vw, 3.85rem);
  }
  .premium-lead {
    margin-top: 16px;
    font-size: 1.04rem;
  }
  .delivery,
  .stores,
  .contact {
    padding-top: 90px;
    padding-bottom: 22px;
  }
  .delivery-premium {
    min-height: calc(100vh - 112px);
    grid-template-columns: 0.9fr 0.72fr 0.4fr;
    gap: 14px 24px;
  }
  .delivery .delivery-features {
    margin: 20px 0;
    gap: 10px;
  }
  .delivery .delivery-features span {
    padding: 10px;
    font-size: 0.84rem;
  }
  .premium-cta {
    min-height: 52px;
    font-size: 15px;
  }
  .delivery-phone-frame {
    width: 258px;
    min-width: 258px;
    height: 470px;
    border-radius: 32px;
  }
  .delivery-app-header {
    height: 88px;
    padding: 16px;
  }
  .delivery-app-header img {
    width: 132px;
  }
  .delivery-products div {
    min-height: 128px;
    padding: 7px;
  }
  .delivery-products img {
    height: 46px;
  }
  .delivery-club {
    padding: 22px 20px;
  }
  .delivery-club h3 {
    margin: 14px 0 8px;
    font-size: 1.45rem;
  }
  .delivery-bottom div {
    padding: 14px 18px;
  }
  .stores-head {
    margin-bottom: 20px;
    gap: 36px;
  }
  .stores .store-card {
    min-height: 270px;
  }
  .store-card img {
    height: 270px;
  }
  .store-card-body {
    padding: 22px;
  }
  .store-card-body h3 {
    font-size: 1.95rem;
  }
  .premium-route {
    min-width: 126px;
    padding: 12px 15px;
  }
  .stores-seal {
    margin-top: 16px;
    padding: 14px 22px;
    font-size: 1rem;
  }
  .contact-premium {
    gap: 42px;
  }
  .contact-list {
    margin-top: 26px;
    gap: 14px;
  }
  .contact-list div {
    min-height: 44px;
    padding-left: 58px;
  }
  .contact-list div:before {
    width: 44px;
    height: 44px;
  }
  .contact-list span {
    font-size: 1rem;
  }
  .contact-commit {
    margin-top: 20px;
    padding: 16px 20px;
  }
  .contact-form {
    padding: 28px;
    gap: 10px;
  }
  .contact-form-head {
    margin-bottom: 16px;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 13px;
  }
  .contact-form textarea {
    max-height: 122px;
  }
}

/* Final refinements: compact history timeline and real delivery phone artwork */
.company-history {
  padding: 108px 0 20px;
  scroll-margin-top: 0;
}

.company-layout {
  height: calc(100vh - 108px);
  min-height: 0;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.7fr);
  grid-template-rows: auto 82px 52px;
  gap: 22px 36px;
  align-items: start;
  align-content: start;
}

.company-copy {
  padding-bottom: 16px;
}

.company-title {
  max-width: 600px;
  font-size: clamp(2.05rem, 3.05vw, 3.2rem);
  line-height: 0.98;
  margin-bottom: 12px;
}

.company-text {
  max-width: 650px;
  font-size: clamp(0.84rem, 0.86vw, 0.94rem);
  line-height: 1.25;
}

.company-text p {
  margin-bottom: 8px;
}

.company-photo {
  align-self: start;
  width: min(100%, 450px);
  height: min(36vh, 285px);
  margin-top: 18px;
  margin-bottom: 14px;
}

.company-timeline {
  align-self: end;
  gap: 10px;
  padding: 14px 0 0;
  margin-top: 0;
}

.company-timeline-line {
  top: 4px;
  height: 1px;
  opacity: 0.72;
}

.company-time-card {
  min-height: 76px;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border-color: rgba(230, 189, 89, 0.26);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.company-time-card:before {
  top: -15px;
  width: 1px;
  height: 10px;
  opacity: 0.72;
}

.company-time-card:after {
  top: -22px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-width: 1px;
}

.company-time-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.company-time-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.company-time-card strong {
  font-size: clamp(1.25rem, 1.55vw, 1.7rem);
  line-height: 1;
}

.company-time-card p {
  margin-top: 4px;
  font-size: 0.75rem;
  line-height: 1.18;
}

.company-stats {
  min-height: 58px;
  border-color: rgba(230, 189, 89, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.company-stats div {
  min-height: 58px;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  padding: 8px 16px;
}

.company-stat-icon {
  width: 34px;
  height: 34px;
}

.company-stat-icon svg {
  width: 19px;
  height: 19px;
}

.company-stats span {
  font-size: clamp(0.9rem, 1.05vw, 1.12rem);
}

.company-stats small {
  font-size: 0.72rem;
}

.delivery-phone {
  display: grid;
  place-items: center;
  min-height: 0;
}

.delivery-phone > img {
  width: min(450px, 31vw);
  max-height: min(76vh, 650px);
  object-fit: contain;
  filter: drop-shadow(0 36px 64px rgba(0, 0, 0, 0.56)) drop-shadow(0 0 34px rgba(230, 189, 89, 0.15));
}

.contact-list div:before {
  display: none;
}

.contact-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(230, 189, 89, 0.68);
  background: radial-gradient(circle at 32% 24%, rgba(230, 189, 89, 0.22), rgba(230, 189, 89, 0.07));
  color: var(--gold);
  box-shadow: 0 0 28px rgba(230, 189, 89, 0.12);
}

.contact-icon svg {
  width: 25px;
  height: 25px;
}

@media(max-height: 800px) and (min-width: 921px) {
  .company-layout {
    grid-template-rows: auto 76px 50px;
    gap: 18px 34px;
  }
  .company-title {
    font-size: clamp(1.9rem, 2.8vw, 2.95rem);
  }
  .company-text {
    font-size: clamp(0.8rem, 0.82vw, 0.9rem);
    line-height: 1.22;
  }
  .company-photo {
    height: min(34vh, 260px);
  }
  .company-time-card {
    min-height: 70px;
    padding: 9px 11px;
  }
  .company-time-icon {
    width: 34px;
    height: 34px;
  }
  .company-time-icon svg {
    width: 20px;
    height: 20px;
  }
  .company-time-card strong {
    font-size: clamp(1.15rem, 1.45vw, 1.5rem);
  }
  .company-time-card p {
    font-size: 0.7rem;
  }
  .company-stats,
  .company-stats div {
    min-height: 52px;
  }
  .delivery-phone > img {
    width: min(360px, 26vw);
    max-height: 620px;
  }
}

@media(max-height: 800px) and (min-width: 921px) {
  .delivery {
    padding: 88px 0 20px;
  }
  .delivery-premium {
    min-height: calc(100vh - 108px);
    grid-template-rows: minmax(0, 1fr) 54px;
    gap: 10px 24px;
  }
  .delivery-phone > img {
    width: min(360px, 26vw);
    max-height: 560px;
  }
  .delivery-bottom div {
    padding: 10px 18px;
  }
}

@media(max-width: 920px) {
  .company-layout {
    height: auto;
    grid-template-rows: auto;
    gap: 22px;
  }
  .company-photo {
    height: 240px;
    margin-top: 0;
  }
  .company-timeline {
    padding-left: 30px;
  }
  .delivery-phone > img {
    width: min(360px, 92vw);
    max-height: none;
  }
  .contact-icon {
    width: 46px;
    height: 46px;
  }
  .contact-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* Mobile-only layout stabilization. Desktop rules above remain unchanged. */
@media(max-width: 920px) {
  body {
    background: #050505;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 28px);
    height: 66px;
    padding: 0 16px;
    border-radius: 999px;
  }

  .brand img {
    width: 142px;
  }

  .mobile-menu {
    top: 88px;
    left: 14px;
    right: 14px;
    border-radius: 18px;
    background: rgba(8, 8, 8, 0.94);
    border: 1px solid rgba(230, 189, 89, 0.26);
  }

  .section,
  .section-dark,
  .hero,
  .company-history,
  .delivery,
  .stores,
  .contact {
    min-height: auto;
    height: auto;
    display: block;
    overflow: hidden;
  }

  .hero {
    padding: 0;
  }

  .hero-bg-fill {
    transform: none;
    inset: 0;
  }

  .hero-bg-image {
    opacity: 0.58;
    background-size: auto 100%;
    background-position: 64% center;
  }

  .hero-vectors,
  .hero-glow {
    display: none;
  }

  .hero-container-mockup {
    width: calc(100% - 28px);
    min-height: auto;
    height: auto;
    padding: 132px 0 28px;
    gap: 22px;
  }

  .hero-main-content {
    display: block;
    padding: 0;
  }

  .hero-left-col {
    width: 100%;
    max-width: none;
  }

  .hero h1.hero-title-mockup,
  .hero-title-mockup {
    font-size: clamp(2.35rem, 13.5vw, 3.4rem) !important;
    line-height: 0.96 !important;
    max-width: 100%;
  }

  .hero-lead-mockup {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.42;
  }

  .btn-mockup.primary-mockup,
  .premium-cta {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    padding: 14px 18px;
    white-space: normal;
    text-align: center;
  }

  .hero-bottom-bar {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    margin-top: 24px;
    border-radius: 18px;
  }

  .bottom-item {
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
    padding: 4px 0;
  }

  .btn-bottom {
    min-height: 50px;
    padding: 12px;
  }

  .ticker {
    height: 58px;
  }

  .ticker-track {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .company-history,
  .delivery,
  .stores,
  .contact {
    padding: 96px 0 42px;
  }

  .company-layout,
  .delivery-premium,
  .stores-premium,
  .contact-premium,
  .footer-premium {
    width: calc(100% - 28px);
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 24px;
    height: auto;
    min-height: 0;
    align-content: start;
    align-items: stretch;
  }

  .company-copy,
  .company-photo,
  .company-timeline,
  .company-stats,
  .delivery-copy,
  .delivery-phone,
  .delivery-club,
  .delivery-bottom,
  .stores-head,
  .stores .stores-grid,
  .contact-info,
  .contact-form {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .company-copy {
    padding-bottom: 0;
    order: 1;
  }

  .company-photo {
    order: 2;
    height: 220px;
    margin: 0;
    justify-self: stretch;
  }

  .company-title,
  .premium-title {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.5vw, 3.05rem);
    line-height: 1;
    letter-spacing: 0;
  }

  .company-text,
  .premium-lead {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .company-text p {
    margin-bottom: 14px;
  }

  .company-timeline {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 0 0 24px;
    margin-top: 6px;
  }

  .company-timeline-line {
    left: 6px;
    right: auto;
    top: 12px;
    bottom: 12px;
    width: 1px;
    height: auto;
  }

  .company-timeline-line span {
    width: 100%;
    height: 100%;
  }

  .company-time-card {
    width: 100%;
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
    border-radius: 14px;
  }

  .company-time-card:before {
    left: -18px;
    top: 50%;
    width: 12px;
    height: 1px;
  }

  .company-time-card:after {
    left: -24px;
    top: calc(50% - 5px);
    width: 10px;
    height: 10px;
  }

  .company-time-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .company-time-icon svg {
    width: 23px;
    height: 23px;
  }

  .company-time-card strong {
    font-size: 1.45rem;
  }

  .company-time-card p {
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .company-stats {
    order: 4;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 18px;
  }

  .company-stats div {
    width: 100%;
    min-height: 58px;
    border-left: 0;
    border-top: 1px solid rgba(230, 189, 89, 0.16);
    padding: 10px 14px;
  }

  .company-stats div:first-child {
    border-top: 0;
  }

  .delivery-premium {
    gap: 22px;
  }

  .delivery .delivery-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 22px 0;
  }

  .delivery .delivery-features span {
    padding: 12px;
    min-height: 48px;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 0.86rem;
  }

  .delivery-phone {
    order: 2;
    min-height: 0;
  }

  .delivery-phone > img {
    width: min(285px, 78vw);
    max-height: 520px;
    margin: 0 auto;
  }

  .delivery-club {
    order: 3;
    padding: 24px;
    border-radius: 18px;
  }

  .delivery-bottom {
    order: 4;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .delivery-bottom div {
    padding: 14px 18px;
    border-left: 0;
    border-top: 1px solid rgba(230, 189, 89, 0.16);
  }

  .delivery-bottom div:first-child {
    border-top: 0;
  }

  .stores-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 0;
  }

  .stores-note {
    padding: 18px 0 0;
    border-top: 1px solid rgba(230, 189, 89, 0.36);
    font-size: 1rem;
  }

  .stores .stores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stores .store-card {
    min-height: auto;
    display: grid;
    overflow: hidden;
  }

  .store-card img {
    height: 230px;
    min-height: 0;
  }

  .store-card-body {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.96));
  }

  .store-card-body h3 {
    grid-column: auto;
    font-size: 2.05rem;
  }

  .store-card-body p {
    padding-left: 0;
    font-size: 0.98rem;
  }

  .store-card-body p:before {
    display: none;
  }

  .premium-route {
    width: 100%;
    min-width: 0;
    justify-content: center;
    margin-top: 4px;
  }

  .stores .store-card .store-card-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .stores .store-card .store-card-body h3,
  .stores .store-card .store-card-body p,
  .stores .store-card .premium-route {
    width: 100%;
    grid-column: auto;
  }

  .stores .store-card .premium-route {
    align-self: stretch;
  }

  .stores-seal {
    margin-top: 0;
    padding: 16px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .contact-premium {
    gap: 24px;
  }

  .contact-info {
    width: 100%;
  }

  .contact-list {
    margin-top: 26px;
    gap: 16px;
  }

  .contact-list div {
    width: 100%;
    min-height: 50px;
    padding-left: 58px;
  }

  .contact-list strong,
  .contact-list span {
    width: auto;
    max-width: 100%;
  }

  .contact-list span {
    overflow-wrap: anywhere;
    font-size: 1rem;
    line-height: 1.28;
  }

  .contact-commit {
    margin-top: 24px;
    padding: 18px;
  }

  .contact-form {
    padding: 22px;
    border-radius: 18px;
  }

  .contact-form-head {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .contact-form-head .premium-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }

  .footer {
    padding-top: 34px;
  }

  .footer-premium {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .footer-premium nav {
    columns: 1;
  }

  .footer {
    padding: 28px 0;
  }

  .footer-premium {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .footer-premium > div:first-child {
    display: flex;
    justify-content: center;
  }

  .footer-premium > div:first-child p,
  .footer-premium nav,
  .footer-contact,
  .footer-bottom {
    display: none;
  }

  .footer-premium img {
    width: 190px;
    margin: 0 auto;
  }
}

@media(max-width: 420px) {
  .hero h1.hero-title-mockup,
  .hero-title-mockup,
  .company-title,
  .premium-title {
    font-size: clamp(2.05rem, 10vw, 2.7rem) !important;
  }

  .company-history,
  .delivery,
  .stores,
  .contact {
    padding-top: 92px;
  }

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

  .company-photo figcaption {
    max-width: calc(100% - 44px);
    padding: 8px 10px;
    font-size: 0.64rem;
    line-height: 1.1;
    white-space: normal;
  }

  .company-photo figcaption svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
  }
}

@media(max-width: 920px) {
  .hero-bg-fill,
  .hero-bg-image {
    background-position: left center !important;
  }
}

/* Automatic delivery offers */
.delivery-offers {
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(227, 6, 19, 0.22), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(230, 189, 89, 0.16), transparent 28%),
    linear-gradient(135deg, #040404 0%, #0c0505 42%, #090909 100%);
}

.delivery-offers-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.94)),
    url("../assets/bg-delivery-premium.png") center/cover no-repeat;
  opacity: 0.3;
  filter: saturate(0.9);
  transform: scale(1.04);
}

.delivery-offers:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 22%, transparent 74%, rgba(0, 0, 0, 0.9)),
    repeating-linear-gradient(90deg, rgba(230, 189, 89, 0.08) 0 1px, transparent 1px 110px);
  pointer-events: none;
}

.delivery-offers-shell {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.delivery-offers-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.delivery-offers-head .premium-eyebrow {
  justify-content: center;
}

.delivery-offers-head .premium-title {
  max-width: 760px;
  margin-inline: auto;
}

.delivery-offers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  min-height: 360px;
}

.delivery-offer-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(230, 189, 89, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.delivery-offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 210, 0, 0.64);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48), 0 0 24px rgba(230, 189, 89, 0.18);
}

.delivery-offer-image {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96), rgba(245, 238, 220, 0.9) 62%, rgba(230, 189, 89, 0.35));
}

.delivery-offer-image img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.delivery-offer-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.delivery-offer-body h3 {
  min-height: 48px;
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.delivery-offer-price {
  margin-top: auto;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.delivery-offer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd96a, #e6ad2f);
  color: #090909;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(230, 189, 89, 0.18);
}

.delivery-offers-actions {
  display: flex;
  justify-content: center;
}

.delivery-offers-loading,
.delivery-offers-fallback {
  grid-column: 1 / -1;
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 34px;
  border: 1px solid rgba(230, 189, 89, 0.28);
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.78);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.delivery-offers-fallback {
  gap: 18px;
}

.delivery-offers-fallback p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.5;
}

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

@media(max-width: 920px) {
  .delivery-offers {
    min-height: auto;
    padding: 96px 0 68px;
  }

  .delivery-offers-shell {
    gap: 24px;
  }

  .delivery-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: 0;
  }

  .delivery-offer-image {
    min-height: 170px;
    padding: 16px;
  }

  .delivery-offer-image img {
    height: 150px;
  }
}

@media(max-width: 560px) {
  .delivery-offers {
    padding: 86px 0 54px;
  }

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

  .delivery-offers-head {
    text-align: left;
  }

  .delivery-offers-head .premium-eyebrow {
    justify-content: flex-start;
  }

  .delivery-offer-card {
    border-radius: 18px;
  }

  .delivery-offer-body h3 {
    min-height: auto;
  }

  .delivery-offers-actions .premium-cta {
    width: 100%;
  }
}
