:root {
  --bg: #070707;
  --surface: rgba(18,18,20,.78);
  --border: rgba(255,255,255,.11);
  --text: #fff;
  --muted: #b7b7bd;
  --red: #ef233c;
  --shell: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

::selection {
  background: var(--red);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(239,35,60,.75);
  outline-offset: 4px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ff4c60;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -.045em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: .96;
}

h1 span {
  display: block;
  color: #f34858;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to bottom, rgba(5,5,5,.94), rgba(5,5,5,.72));
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.02rem;
  font-weight: 600;
  white-space: nowrap;
}

.brand strong {
  font-weight: 800;
}

.brand-dot {
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239,35,60,.13);
}

.brand-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #fff;
  opacity: .78;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #c9c9ce;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.nav a.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 24px rgba(239,35,60,.3);
}

.header-cta {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
}

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  cursor: pointer;
  list-style: none;
  font-size: .82rem;
  font-weight: 800;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.hamburger {
  width: 20px;
  display: grid;
  gap: 4px;
}

.hamburger span {
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: .2s ease;
}

.mobile-menu[open] .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(320px, calc(100vw - 30px));
  padding: 12px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background: rgba(10,10,11,.98);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}

.mobile-menu-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 15px;
  color: #c9c9ce;
  font-size: .9rem;
  font-weight: 750;
}

.mobile-menu-panel a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.mobile-menu-panel a.active {
  color: #fff;
  background: var(--red);
}

.mobile-phone {
  margin-top: 6px;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: .92rem;
  font-weight: 800;
  transition: .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--red);
  box-shadow: 0 16px 38px rgba(239,35,60,.28);
}

.button.secondary {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
}

.button.light {
  background: #fff;
  color: #111;
}

.button.outline {
  border-color: rgba(255,255,255,.38);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.7) 55%, rgba(0,0,0,.28)),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=2200&q=85")
    center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  bottom: -220px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(239,35,60,.26);
  filter: blur(100px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, #070707, transparent 30%);
}

.hero-content {
  padding-block: 130px 150px;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 34px;
  color: #d0d0d3;
  font-size: 1.1rem;
}

.status-pill {
  width: max-content;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(239,35,60,.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.story-section,
.values-section,
.loyalty-details,
.why-section {
  padding-block: 110px;
}

.story-section,
.loyalty-details {
  background: #070707;
}

.values-section,
.why-section {
  background:
    radial-gradient(circle at top left, rgba(239,35,60,.08), transparent 30%),
    #0c0c0e;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(320px,.75fr) minmax(0,1.25fr);
  gap: 72px;
  align-items: center;
}

.portrait-card {
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at top,
      rgba(239,35,60,.08),
      transparent 45%
    ),
    linear-gradient(
      145deg,
      rgba(255,255,255,.05),
      rgba(255,255,255,.015)
    );
  text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  overflow: hidden;
}

.portrait-image {
  width: min(100%, 320px);
  aspect-ratio: 1;
  margin: 20px auto 32px;
  border: 0px solid rgba(239,35,60,.22);
  border-radius: 50%;
  background:
    url("../images/ethan.jpg")
    center 30% / cover
    no-repeat;
  box-shadow:
    0 0 0 8px rgba(239,35,60,.08),
    0 30px 70px rgba(0,0,0,.45);
  transition: transform .35s ease;
}

.portrait-card:hover .portrait-image {
  transform: translateY(-4px) scale(1.02);
}

.portrait-caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.portrait-caption span {
  color: #999;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.portrait-caption strong {
  color: #fff;
  font-size: clamp(1.25rem, 5vw, 1.6rem);
}

.signature {
    width: 250px;
    margin: 10px auto 16px;
    opacity: .9;
    filter: brightness(0) invert(1);
}

.story-copy > p {
  font-size: 1.02rem;
}

.signature-block {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.signature-line {
  width: 56px;
  height: 2px;
  background: var(--red);
}

.signature-block strong,
.signature-block span {
  display: block;
}

.signature-block span {
  color: #8d8d93;
  font-size: .82rem;
}

.section-intro {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
}

.section-intro h2 {
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 18px;
}

.values-grid article {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  transition: .25s ease;
}

.values-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(239,35,60,.3);
}

.values-grid article > span {
  margin-bottom: auto;
  color: #ff4c60;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.values-grid p {
  margin-bottom: 0;
  font-size: .88rem;
}

.loyalty-section {
  padding-block: 105px;
  background: linear-gradient(135deg, #a70f1c, var(--red));
}

.loyalty-card {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: center;
}

.loyalty-copy p {
  color: rgba(255,255,255,.84);
}

.loyalty-copy .eyebrow {
  color: rgba(255,255,255,.72);
}

.loyalty-visual {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(17,17,19,.96), rgba(5,5,6,.9));
  box-shadow: 0 35px 90px rgba(74,0,8,.38);
  transform: rotate(1.5deg);
}

.loyalty-top {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.loyalty-top span {
  color: #a8a8ae;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.loyalty-top strong {
  font-size: 1.25rem;
}

.stamp-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.stamp {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border: 2px dashed rgba(255,255,255,.16);
  border-radius: 50%;
  text-align: center;
}

.stamp span {
  font-size: 2rem;
  font-weight: 800;
}

.stamp small {
  color: #9b9ba1;
  font-size: .68rem;
  font-weight: 700;
}

.stamp.completed {
  border-style: solid;
  border-color: var(--red);
  background: rgba(239,35,60,.14);
}

.stamp.reward {
  border-style: solid;
  border-color: #fff;
  background: #fff;
  color: #111;
}

.stamp.reward small {
  color: #555;
}

.loyalty-visual > p {
  margin: 28px 0 0;
  color: #8e8e94;
  font-size: .76rem;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.steps-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}

.step-number {
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(239,35,60,.28);
}

.loyalty-note {
  margin-top: 24px;
  padding: 26px 28px;
  border: 1px solid rgba(239,35,60,.25);
  border-radius: 24px;
  background: rgba(239,35,60,.07);
}

.loyalty-note strong {
  display: block;
  margin-bottom: 8px;
}

.loyalty-note p {
  margin-bottom: 0;
  font-size: .9rem;
}

.why-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list article {
  padding: 25px 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
}

.why-list span {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 800;
}

.why-list p {
  margin-bottom: 0;
  font-size: .88rem;
}

.booking-cta {
  padding-block: 90px;
  background: linear-gradient(135deg, #a90e1b, var(--red));
}

.booking-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.booking-cta .eyebrow,
.booking-cta p {
  color: rgba(255,255,255,.82);
}

.cta-actions {
  min-width: max-content;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding-top: 80px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050505;
}

.footer-grid {
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 60px;
}

.footer-brand p {
  max-width: 430px;
  margin-top: 22px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 7px;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: #9d9da3;
  font-size: .87rem;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #77777d;
  font-size: .78rem;
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .values-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 900px) {
  .story-grid,
  .section-intro,
  .loyalty-card,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .portrait-card {
    max-width: 620px;
  }

  .loyalty-visual {
    transform: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .booking-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .shell {
    width: min(var(--shell), calc(100% - 30px));
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-block: 100px 115px;
  }

  .story-section,
  .values-section,
  .loyalty-section,
  .loyalty-details,
  .why-section {
    padding-block: 78px;
  }

  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stamp-row {
    gap: 8px;
  }

  .stamp span {
    font-size: 1.45rem;
  }

  .stamp small {
    font-size: .58rem;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .menu-label {
    display: none;
  }

  .mobile-menu summary {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .booking-cta,
  .site-footer {
    display: none !important;
  }

  body,
  .story-section,
  .values-section,
  .loyalty-section,
  .loyalty-details,
  .why-section {
    background: #fff !important;
    color: #000;
  }

  h1,
  h2,
  h3,
  p,
  .eyebrow,
  .loyalty-copy p {
    color: #000 !important;
  }

  .portrait-card,
  .values-grid article,
  .loyalty-visual,
  .steps-grid article,
  .loyalty-note,
  .why-list article {
    break-inside: avoid;
    border: 1px solid #bbb;
    background: #fff !important;
    box-shadow: none;
  }
}

@media (max-width: 500px) {
  .portrait-card {
    padding: 22px 18px 30px;
    border-radius: 24px;
  }

  .portrait-image {
    width: min(100%, 260px);
    margin-top: 12px;
    margin-bottom: 26px;
    border-width: 0px;
    box-shadow:
      0 0 0 6px rgba(239,35,60,.08),
      0 24px 55px rgba(0,0,0,.4);
  }
}