@font-face {
  font-family: system-ui;
  src: local("Arial");
}

:root {
  --wine: #a6192e;
  --wine-dark: #791120;
  --ink: #231f20;
  --muted: #6b6465;
  --cream: #f5f1f1;
  --paper: #ffffff;
  --line: #ded7d8;
  --gold: #d8ad65;
  --max: 1200px;
  color: var(--ink);
  background: #080506;
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  background: #080506;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--wine);
}
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  border-bottom: 0;
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; width: 250px; }
.brand img { width: 100%; height: auto; filter: brightness(0) invert(1); }
.header-actions { display: flex; align-items: center; gap: 28px; }
.text-link { color: #fff; text-decoration: none; font-size: .94rem; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 650;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg, .apk-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 42px; padding: 9px 16px; font-size: .9rem; }
.button-outline { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.button-outline:hover { background: rgba(255,255,255,.16); border-color: #fff; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #160d0e;
  color: #fff;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,10,11,.96) 0%, rgba(25,12,14,.86) 34%, rgba(64,11,20,.27) 65%, rgba(20,9,10,.16) 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--wine), transparent); }
.hero-content { position: relative; z-index: 1; padding-top: 110px; }
.hero-content > * { max-width: 670px; }

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 2px; background: var(--wine); }
.eyebrow.dark { color: var(--wine); }
.eyebrow.light { color: rgba(255,255,255,.74); }
.eyebrow.light span { background: var(--gold); }

h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(3.3rem, 7vw, 6.7rem); line-height: .94; letter-spacing: -.055em; font-weight: 750; }
.hero-copy { margin: 30px 0 0; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.45vw, 1.15rem); }
.hero-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.button-primary { background: var(--wine); color: #fff; box-shadow: 0 18px 40px rgba(166,25,46,.28); }
.button-primary:hover { background: #bd1d35; }
.button-glass { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.09); color: #fff; backdrop-filter: blur(10px); }
.button-glass:hover { background: rgba(255,255,255,.16); }
.access-note { margin: 20px 0 0; color: rgba(255,255,255,.5); font-size: .82rem; }

.directions { padding: 104px 0 112px; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 60px; align-items: end; margin-bottom: 46px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -4px; }
.section-heading h2 { margin: 0; font-size: clamp(2.25rem, 4vw, 4.2rem); line-height: 1; letter-spacing: -.045em; }
.section-heading > p:last-child { margin: 0; color: var(--muted); max-width: 530px; }

.direction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.direction-card {
  min-height: 330px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 60px rgba(35,31,32,.05);
}
.direction-card.featured { color: #fff; background: linear-gradient(150deg, #b01b32, #76101f); border-color: transparent; }
.card-number { font-size: .82rem; font-weight: 750; color: var(--wine); letter-spacing: .14em; }
.featured .card-number { color: rgba(255,255,255,.66); }
.direction-card h3 { margin: 0 0 12px; font-size: 1.55rem; line-height: 1.15; }
.direction-card p { margin: 0; color: var(--muted); }
.featured p { color: rgba(255,255,255,.76); }
.card-line { position: absolute; width: 90px; height: 90px; right: -28px; top: -28px; border: 1px solid rgba(166,25,46,.2); border-radius: 50%; }
.featured .card-line { border-color: rgba(255,255,255,.24); }

.order-panel { padding: 0 0 80px; }
.order-panel-inner {
  min-height: 350px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  padding: 54px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(115deg, #21191a 0%, #32171c 58%, #8f1629 140%);
  box-shadow: 0 30px 80px rgba(35,31,32,.16);
}
.order-mark { width: 150px; height: 150px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--gold); font-family: Georgia, serif; font-size: 2.8rem; }
.order-copy h2 { margin: 0; max-width: 660px; font-size: clamp(2rem, 3.6vw, 3.8rem); line-height: 1.04; letter-spacing: -.045em; }
.order-copy > p:last-child { max-width: 650px; margin: 20px 0 0; color: rgba(255,255,255,.66); }
.order-buttons { display: flex; flex-direction: column; align-items: stretch; gap: 17px; min-width: 220px; }
.button-light { color: var(--wine); background: #fff; }
.apk-link { display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,.78); font-size: .9rem; text-underline-offset: 4px; }

footer { padding: 32px 0 40px; background: #080506; border-top: 0; }
.footer-inner { display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 34px; }
.footer-inner img { width: 220px; height: auto; filter: brightness(0) invert(1); }
.footer-inner p { margin: 0; color: var(--muted); font-size: .9rem; }
.footer-inner .copyright { justify-self: end; color: rgba(255,255,255,.62); white-space: nowrap; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (min-width: 1600px) and (min-aspect-ratio: 2 / 1) {
  .hero { background: #080506; }

  .hero-image {
    inset-inline: 50%;
    width: auto;
    min-width: 0;
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: translateX(-50%);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8,5,6,.78) 0%, rgba(8,5,6,.3) 16%, rgba(8,5,6,0) 34%),
      linear-gradient(90deg, #080506 0%, rgba(8,5,6,.88) 12%, rgba(8,5,6,0) 27%, rgba(8,5,6,0) 73%, rgba(8,5,6,.88) 88%, #080506 100%),
      linear-gradient(90deg, rgba(17,10,11,.92) 0%, rgba(25,12,14,.72) 34%, rgba(64,11,20,.18) 65%, rgba(20,9,10,.08) 100%);
  }
}

@media (max-width: 920px) {
  .direction-grid { grid-template-columns: 1fr 1fr; }
  .direction-card:last-child { grid-column: 1 / -1; min-height: 260px; }
  .order-panel-inner { grid-template-columns: 100px 1fr; padding: 40px; }
  .order-mark { width: 100px; height: 100px; font-size: 2rem; }
  .order-buttons { grid-column: 2; flex-direction: row; align-items: center; }
  .footer-inner { grid-template-columns: 180px 1fr; }
  .copyright { grid-column: 2; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 76px; }
  .brand { width: 180px; }
  .text-link { display: none; }
  .button-small { min-height: 40px; padding: 8px 12px; }
  .button-small svg { display: none; }
  .hero { min-height: 700px; align-items: end; }
  .hero-image { object-position: 66% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(18,10,11,.42) 0%, rgba(18,10,11,.72) 38%, rgba(18,10,11,.97) 76%); }
  .hero-content { padding: 120px 0 56px; }
  h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .hero-copy { margin-top: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .directions { padding: 72px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 32px; }
  .section-heading .eyebrow { grid-column: auto; }
  .direction-grid { grid-template-columns: 1fr; }
  .direction-card, .direction-card:last-child { grid-column: auto; min-height: 245px; padding: 24px; }
  .order-panel { padding-bottom: 56px; }
  .order-panel-inner { grid-template-columns: 1fr; gap: 26px; padding: 30px 24px; }
  .order-mark { width: 78px; height: 78px; font-size: 1.6rem; }
  .order-buttons { grid-column: auto; flex-direction: column; align-items: stretch; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  .button { transition: none; }
}
