:root {
  --ink: #071939;
  --navy: #061b43;
  --blue: #123b8b;
  --electric: #1f61ff;
  --sky: #9bdcff;
  --cream: #f5f1e8;
  --paper: #fbfaf6;
  --gold: #f4bd3c;
  --line: rgba(7, 25, 57, 0.15);
}

* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
a {
  text-underline-offset: 0.18em;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}

.site-header {
  height: 92px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(251, 250, 246, 0.95);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-right: auto;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand span {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
}
.brand b {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.brand small {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #62708c;
}
.site-header nav {
  display: flex;
  gap: 28px;
}
.site-header nav a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}
.site-header nav a::after {
  content: "";
  height: 2px;
  background: var(--electric);
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  transition: 0.2s;
}
.site-header nav a:hover::after {
  right: 0;
}
.site-header nav a[aria-current="page"]::after {
  right: 0;
}
.nav-cta {
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-menu {
  display: none;
  position: relative;
}
.mobile-menu summary {
  list-style: none;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.mobile-menu summary::-webkit-details-marker {
  display: none;
}
.mobile-menu div {
  position: absolute;
  top: 50px;
  right: 0;
  width: 220px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 20px 50px rgba(7, 25, 57, 0.18);
  display: grid;
  gap: 4px;
}
.mobile-menu a {
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 92px);
  position: relative;
  overflow: hidden;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(7, 25, 57, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 25, 57, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}
.hero-copy {
  padding: clamp(70px, 8vw, 130px) 40px 80px clamp(24px, 6vw, 95px);
  position: relative;
  z-index: 2;
}
.hero-kickers {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-kickers span {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-kickers i {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #50607f;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(66px, 7.3vw, 126px);
  line-height: 0.79;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  font-weight: 950;
}
.hero h1 em {
  color: var(--electric);
  font-style: normal;
}
.hero-copy > p {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  max-width: 610px;
  color: #344561;
  margin: 38px 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  color: white;
  background: var(--electric);
  box-shadow: 0 12px 30px rgba(31, 97, 255, 0.22);
}
.button.ghost {
  border: 1px solid var(--ink);
  background: transparent;
}
.button.full {
  width: 100%;
}
.hero-facts {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  max-width: 670px;
}
.hero-facts div {
  padding: 22px 12px 0 0;
  display: grid;
  gap: 4px;
}
.hero-facts small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #65738b;
}
.hero-facts strong {
  font-size: 28px;
  letter-spacing: -0.04em;
}
.hero-facts span {
  font-size: 12px;
  color: #65738b;
}

.hero-art {
  position: relative;
  min-height: 690px;
  background: var(--blue);
  overflow: hidden;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.19);
  top: 11%;
  left: 10%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.035),
    0 0 0 140px rgba(255, 255, 255, 0.025);
}
.hero-photo-placeholder {
  position: absolute;
  inset: 8% 8% 16%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #184bad, #0a245e 52%, #5c8eff);
  opacity: 0.36;
}
.hero-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sun-disc {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--gold);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  box-shadow: 0 35px 80px rgba(2, 16, 52, 0.3);
}
.ticket {
  position: absolute;
  width: min(78%, 470px);
  height: 250px;
  padding: 38px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}
.ticket-back {
  background: #0a1732;
  color: white;
  left: 11%;
  top: 31%;
  transform: rotate(-10deg);
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.ticket-back span {
  font-size: 80px;
  font-weight: 950;
  opacity: 0.2;
}
.ticket-back b {
  font-size: 42px;
  opacity: 0.2;
}
.ticket-front {
  background: white;
  left: 18%;
  top: 34%;
  transform: rotate(5deg);
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 22px;
}
.ticket-front::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  border-right: 2px dashed #c8cfdb;
}
.ticket-logo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #eef3ff;
  display: grid;
  place-items: center;
}
.ticket-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.ticket-front span {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ticket-front b {
  display: block;
  margin-top: 9px;
  font-size: 28px;
  line-height: 1;
}
.ticket-front i {
  grid-column: 1/-1;
  font-style: normal;
  font: 800 13px monospace;
  letter-spacing: 0.18em;
}
.hero-stamp {
  position: absolute;
  right: 10%;
  bottom: 12%;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  color: white;
  background: var(--electric);
  border: 8px solid var(--sky);
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 34px;
  font-weight: 950;
  line-height: 0.8;
  transform: rotate(9deg);
}
.hero-stamp span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.marquee {
  overflow: hidden;
  background: var(--gold);
  padding: 18px 0;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.15em;
}
.marquee div {
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee span {
  margin: 0 28px;
  color: var(--electric);
}
@keyframes marquee {
  to {
    transform: translateX(-25%);
  }
}

.section-pad {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric);
}
.eyebrow.light {
  color: var(--sky);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
}
.manifesto h2,
.section-heading h2,
.panel-intro h2,
.trust h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.lead {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
  margin: 0 0 48px;
}
.impact-list {
  border-top: 1px solid var(--line);
}
.impact-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.impact-list article > b {
  color: var(--electric);
  font: 800 12px monospace;
}
.impact-list h3 {
  margin: 0 0 8px;
  font-size: 21px;
}
.impact-list p {
  margin: 0;
  color: #5b6980;
  line-height: 1.6;
}

.home-photo-feature {
  margin: 0;
  height: clamp(430px, 58vw, 760px);
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.home-photo-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 15, 39, 0.84));
}
.home-photo-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-photo-feature figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 7vw, 110px);
  right: clamp(24px, 7vw, 110px);
  bottom: clamp(30px, 6vw, 75px);
  display: grid;
  gap: 10px;
  color: white;
}
.home-photo-feature figcaption span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
}
.home-photo-feature figcaption strong {
  max-width: 760px;
  font-size: clamp(32px, 5vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.prizes {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.prizes::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: #123b8b;
  filter: blur(80px);
  opacity: 0.45;
  right: -260px;
  top: -280px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: end;
  gap: 60px;
  margin-bottom: 64px;
  position: relative;
}
.section-heading > p {
  font-size: 18px;
  line-height: 1.65;
  color: #5e6c82;
  margin: 0;
}
.light-heading > p {
  color: #afbdd8;
}
.prize-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 12px;
  position: relative;
}
.prize-card {
  min-height: 290px;
  padding: 28px;
  border-radius: 10px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.prize-card > span {
  font: 800 13px monospace;
  opacity: 0.55;
}
.prize-card small {
  margin-top: auto;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.prize-card strong {
  font-size: clamp(31px, 3vw, 52px);
  letter-spacing: -0.05em;
  margin-top: 8px;
}
.prize-card.gold {
  background: var(--gold);
  min-height: 350px;
}
.prize-card.blue {
  background: #4f7ff2;
}
.prize-card.sky {
  background: var(--sky);
}
.prize-card.ice {
  background: #dce9f5;
}
.winkans-note {
  position: relative;
  max-width: 850px;
  margin: 32px 0 0;
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  color: #dce6f8;
  line-height: 1.65;
}

.steps {
  background: white;
}
.step-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.step-line article {
  min-height: 250px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--line);
}
.step-line article:not(:first-child) {
  padding-left: 28px;
}
.step-line span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--electric);
  color: white;
  font-weight: 900;
}
.step-line h3 {
  font-size: 28px;
  margin: 46px 0 10px;
}
.step-line p {
  color: #627088;
  line-height: 1.55;
  max-width: 220px;
}

.lottery-panel {
  background: var(--electric);
  color: white;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
  align-items: center;
}
.panel-intro > p {
  color: #d6e2ff;
  font-size: 18px;
  line-height: 1.65;
  max-width: 520px;
}
.panel-intro ul {
  list-style: none;
  padding: 0;
  margin: 42px 0 0;
  display: grid;
  gap: 15px;
}
.panel-intro li::before {
  content: "✓";
  margin-right: 12px;
  color: var(--gold);
  font-weight: 900;
}
.order-card {
  background: white;
  color: var(--ink);
  border-radius: 14px;
  padding: clamp(25px, 4vw, 52px);
  box-shadow: 0 35px 90px rgba(2, 19, 64, 0.25);
  min-height: 620px;
}
.order-progress {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}
.order-progress span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7ebf2;
  font-size: 12px;
  font-weight: 900;
}
.order-progress span.active {
  background: var(--electric);
  color: white;
}
.order-progress i {
  height: 2px;
  flex: 1;
  background: #e7ebf2;
}
.order-step > small {
  color: #78859a;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
}
.order-step h3 {
  font-size: 38px;
  margin: 10px 0 30px;
  letter-spacing: -0.04em;
}
.order-step label,
.contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.order-step input,
.order-step select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dce1ea;
  border-radius: 5px;
  background: #f8f9fb;
  padding: 15px 16px;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}
.order-step input:focus,
.order-step select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(31, 97, 255, 0.11);
}
.order-step .check {
  grid-template-columns: 19px 1fr;
  align-items: start;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}
.order-step .check input {
  width: 18px;
  height: 18px;
  margin: 0;
}
.order-step .check a,
.privacy-note a,
.trust-card a {
  color: var(--electric);
  text-decoration: underline;
}
.field-help {
  display: block;
  margin: -10px 0 20px;
  color: #67758a;
}
.privacy-note {
  color: #67758a;
  font-size: 13px;
  line-height: 1.55;
}
.form-error {
  min-height: 1.4em;
  color: #a32222;
  font-size: 13px;
  font-weight: 700;
}
.order-total,
.order-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}
.order-total strong {
  font-size: 30px;
}
.text-button {
  display: block;
  border: 0;
  background: none;
  margin: 18px auto 0;
  color: #66758c;
  text-decoration: underline;
}
.order-final {
  text-align: center;
  padding-top: 35px;
}
.success-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f8ef;
  color: #1b9f57;
  font-size: 34px;
  margin: 0 auto 25px;
}
.order-final p {
  color: #637087;
  line-height: 1.6;
  margin-bottom: 28px;
}
.checkout-facts {
  display: grid;
  gap: 8px;
  margin: 0 0 25px;
  text-align: left;
  color: #536178;
  font-size: 13px;
}
.checkout-facts span::before {
  content: "✓";
  margin-right: 9px;
  color: #1b9f57;
  font-weight: 900;
}

.trust {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr;
  gap: 50px;
  align-items: center;
  background: var(--cream);
}
.trust-card {
  display: grid;
  grid-template-columns: 105px 1fr;
  border: 1px solid var(--line);
  background: white;
  padding: 30px;
  border-radius: 10px;
  gap: 24px;
  align-items: center;
}
.trust-card > span {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 950;
}
.trust-card small,
.trust-details small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #7b8799;
  margin-bottom: 5px;
}
.trust-card strong {
  font-size: 34px;
}
.trust-card p {
  color: #69768b;
  line-height: 1.5;
  font-size: 13px;
}
.trust-details {
  display: grid;
  gap: 22px;
}
.trust-details p {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.page-hero {
  min-height: 510px;
  background: var(--navy);
  color: white;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 105px 0 75px;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  max-width: 1050px;
  margin: 0 0 30px;
}
.page-hero p {
  max-width: 700px;
  color: #becae0;
  font-size: 19px;
  line-height: 1.65;
}
.page-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.page-orbit-one {
  width: 600px;
  height: 600px;
  right: -160px;
  top: -220px;
}
.page-orbit-two {
  width: 370px;
  height: 370px;
  right: -40px;
  top: -90px;
}
.page-content {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 130px;
}
.content-section {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 35px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}
.section-number {
  color: var(--electric);
  font: 900 13px monospace;
  padding-top: 7px;
}
.content-section h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin: 0 0 22px;
  letter-spacing: -0.04em;
}
.content-section p,
.content-section li {
  color: #56657d;
  font-size: 17px;
  line-height: 1.75;
}
.content-section ul {
  padding-left: 20px;
}
.content-image-placeholder {
  height: 420px;
  margin: 55px 0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #dbe5f4, #b8cff2 55%, #f4bd3c);
  position: relative;
}
.content-image-placeholder::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  pointer-events: none;
}
.content-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-photo {
  margin: 55px 0;
}
.content-photo img,
.photo-duo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.content-photo img {
  height: 480px;
}
.content-photo figcaption,
.photo-duo figcaption {
  margin-top: 12px;
  color: #68758a;
  font-size: 13px;
  line-height: 1.5;
}
.photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 55px 0;
}
.photo-duo figure {
  margin: 0;
}
.photo-duo img {
  height: 360px;
}
.content-callout {
  margin: 40px 0;
  padding: 28px;
  border-radius: 10px;
  background: #eef4ff;
  border-left: 5px solid var(--electric);
}
.content-callout h2,
.content-callout h3 {
  margin-top: 0;
}
.content-callout p:last-child {
  margin-bottom: 0;
}
.meta-line {
  color: #6b788c;
  font-size: 13px;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.legal-links a {
  padding: 11px 14px;
  border: 1px solid #cfd8e7;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
}
.fact-ribbon {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--electric);
  color: white;
  border-radius: 12px;
  overflow: hidden;
}
.fact-ribbon div {
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 8px;
}
.fact-ribbon small {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
  opacity: 0.7;
}
.fact-ribbon strong {
  font-size: 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}
.contact-details h2,
.contact-form h2 {
  font-size: 42px;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}
.contact-details > p {
  color: #66748a;
}
.contact-details dl {
  margin-top: 45px;
}
.contact-details dl div {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) 1.2fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-details dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #748096;
  overflow-wrap: anywhere;
}
.contact-details dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
}
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(25px, 5vw, 55px);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.site-footer {
  background: #04132f;
  color: white;
  padding: 65px clamp(24px, 6vw, 90px) 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;

}
.footer-brand div {
  display: grid;
  gap: 5px;
}
.footer-brand span {
  color: #91a1bd;
  font-size: 12px;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 25px;
  font-size: 12px;
  font-weight: 700;
}
.footer-legal {
  display: grid;
  gap: 12px;
  color: #aebbd0;
  font-size: 12px;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 24px;
  color: #74839d;
  font-size: 11px;
}

@media (max-width: 1000px) {
  .site-header nav {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 580px;
  }
  .manifesto-grid,
  .lottery-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .prize-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step-line {
    grid-template-columns: 1fr 1fr;
  }
  .trust {
    grid-template-columns: 1fr 1fr;
  }
  .trust > div:first-child {
    grid-column: 1/-1;
  }
}

@media (max-width: 650px) {
  .site-header {
    height: 76px;
    padding: 0 18px;
  }
  .brand span {
    display: none;
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
  .nav-cta {
    padding: 12px 17px;
  }
  .mobile-menu summary {
    padding: 11px 12px;
  }
  .hero-copy {
    padding: 65px 20px 50px;
  }
  .hero h1 {
    font-size: clamp(56px, 17vw, 82px);
  }
  .hero-kickers {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-facts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-facts div {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
  }
  .hero-art {
    min-height: 440px;
  }
  .ticket {
    height: 190px;
    padding: 24px;
  }
  .ticket-front {
    grid-template-columns: 55px 1fr;
    gap: 14px;
  }
  .ticket-logo {
    width: 54px;
    height: 54px;
  }
  .ticket-logo img {
    width: 42px;
    height: 42px;
  }
  .ticket-front b {
    font-size: 20px;
  }
  .sun-disc {
    width: 250px;
    height: 250px;
  }
  .hero-stamp {
    width: 90px;
    height: 90px;
  }
  .section-pad {
    padding: 78px 20px;
  }
  .prize-grid,
  .step-line,
  .trust,
  .fact-ribbon,
  .field-row {
    grid-template-columns: 1fr;
  }
  .prize-card,
  .prize-card.gold {
    min-height: 220px;
  }
  .step-line article,
  .step-line article:not(:first-child) {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .order-card {
    min-height: 570px;
  }
  .content-section {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .page-content {
    width: min(100% - 36px, 1120px);
    padding: 50px 0 90px;
  }
  .page-hero-inner {
    width: calc(100% - 36px);
    padding: 80px 0 55px;
  }
  .content-image-placeholder {
    height: 270px;
  }
  .content-photo img {
    height: 280px;
  }
  .photo-duo {
    grid-template-columns: 1fr;
  }
  .photo-duo img {
    height: 280px;
  }
  .contact-details dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
