:root {
  --red: #991b22;
  --red-dark: #3d0710;
  --orange: #f68924;
  --blush: #fcf4f5;
  --cream: #fff8ee;
  --cream-soft: rgba(255, 248, 238, 0.78);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--blush);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--red-dark);
  background: var(--blush);
  font-family:
    "Titillium Web", Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
}

.landing {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--blush);
}

.landing::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--blush);
  content: "";
}

.landing::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 42%, rgba(246, 137, 36, 0.11), transparent 48%),
    linear-gradient(180deg, rgba(252, 244, 245, 0), rgba(153, 27, 34, 0.08));
  content: "";
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 106px;
  padding: 18px clamp(18px, 4vw, 48px) 16px;
  background: rgba(153, 27, 34, 0.92);
  box-shadow: 0 14px 40px rgba(29, 2, 8, 0.2);
}

.header-stack {
  display: flex;
  width: min(100%, 1320px);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  width: clamp(112px, 13vw, 176px);
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.desktop-actions {
  display: none;
  align-items: center;
  gap: clamp(8px, 1.8vw, 18px);
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
}

.icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.mobile-menu {
  position: absolute;
  top: 50%;
  left: min(340px, calc(100vw - 48px));
  display: block;
  transform: translateY(-50%);
}

.mobile-menu summary {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--orange);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary svg,
.mobile-drawer svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu summary svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.4;
}

.mobile-drawer {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 5;
  width: 230px;
  border: 1px solid rgba(153, 27, 34, 0.16);
  border-radius: 8px;
  padding: 8px;
  background: var(--blush);
  box-shadow: 0 22px 50px rgba(61, 7, 16, 0.18);
}

.mobile-drawer a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  padding: 12px 10px;
  color: var(--red);
  font-size: 0.96rem;
  font-weight: 400;
}

.mobile-drawer a + a {
  border-top: 1px solid rgba(153, 27, 34, 0.1);
}

.mobile-drawer svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--orange);
  stroke-width: 2.1;
}

.hero {
  display: grid;
  min-height: calc(100svh - 106px);
  place-items: center;
  padding: clamp(48px, 8vw, 96px) 20px clamp(70px, 10vw, 112px);
  text-align: center;
}

.hero-content {
  width: min(760px, 100%);
  margin: 0 auto;
}

.kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: clamp(0.74rem, 1.5vw, 0.95rem);
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--red);
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

.mark-line {
  display: block;
  width: 42px;
  height: 3px;
  margin: 24px auto 18px;
  border-radius: 999px;
  background: var(--orange);
}

.intro {
  width: min(470px, 100%);
  margin: 0 auto;
  color: rgba(61, 7, 16, 0.78);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.55;
  font-weight: 400;
}

@media (min-width: 900px) and (orientation: landscape) {
  .desktop-actions {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .landing {
    width: 100%;
  }

  .topbar {
    min-height: 86px;
    padding: 15px 14px 12px;
  }

  .header-stack {
    width: min(100%, 362px);
    gap: 16px;
  }

  .brand-mark {
    width: 118px;
  }

  .icon-button {
    width: 26px;
    height: 28px;
  }

  .icon-button svg {
    width: 19px;
    height: 19px;
    stroke-width: 2.4;
  }

  .hero {
    min-height: calc(100svh - 86px);
    padding: 52px 18px 76px;
  }

  .hero-content {
    width: min(306px, 100%);
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.62rem);
  }

  .intro {
    width: min(294px, 100%);
    font-size: 0.96rem;
  }
}
