:root {
  --navy: #071936;
  --blue: #123963;
  --cream: #fff6df;
  --paper: #fffaf0;
  --gold: #d99d39;
  --toast: #b76d28;
  --ink: #151923;
  --red: #a3322a;
  --line: rgba(7, 25, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 157, 57, 0.22), transparent 28rem),
    linear-gradient(135deg, var(--paper), #f6ead0);
  font-family: Avenir Next, Avenir, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 25, 54, 0.94);
  color: white;
  backdrop-filter: blur(14px);
}

.brand,
nav,
.actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: white;
}

nav {
  gap: clamp(14px, 3vw, 30px);
  font-weight: 900;
  font-size: 0.95rem;
}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 6vw, 78px) clamp(36px, 6vw, 84px);
}

.hero-copy {
  max-width: 740px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 {
  max-width: 9ch;
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 11vw, 10rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.25rem;
}

.hero-copy p:not(.kicker),
.events > p,
.order p {
  color: rgba(21, 25, 35, 0.76);
  font-size: 1.05rem;
  line-height: 1.62;
}

.hero-copy p:not(.kicker) {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.actions {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 1000;
}

.button.primary {
  background: var(--gold);
  color: #231603;
  box-shadow: 0 14px 26px rgba(123, 74, 10, 0.2);
}

.button.secondary {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.42);
}

.logo-stage {
  justify-self: center;
  width: min(440px, 100%);
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 28px 70px rgba(7, 25, 54, 0.2);
  transform: rotate(1.5deg);
}

.logo-stage img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  color: var(--cream);
}

.ticker span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 1000;
  text-align: center;
}

.ticker span:last-child {
  border-right: 0;
}

.events,
.order {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 78px);
}

.events {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: center;
  background: #eadfc8;
}

.events > p {
  margin: 0;
  padding: 28px;
  border-left: 8px solid var(--gold);
  background: rgba(255, 255, 255, 0.56);
}

.order {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  background: var(--red);
  color: white;
}

.order img {
  width: 124px;
  height: 124px;
  object-fit: cover;
  border: 5px solid white;
  border-radius: 50%;
  background: white;
}

.order h2,
.order .kicker {
  color: white;
}

.order p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 6vw, 78px);
  background: var(--navy);
  color: white;
}

@media (max-width: 900px) {
  .hero,
  .events,
  .order {
    grid-template-columns: 1fr;
  }

  .logo-stage {
    justify-self: start;
    width: min(360px, 100%);
  }

  .ticker {
    grid-template-columns: repeat(2, 1fr);
  }

  .order .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
  }

  .brand span {
    max-width: 104px;
    line-height: 1.05;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  nav {
    gap: 12px;
    font-size: 0.85rem;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 5.4rem);
  }

  .ticker {
    grid-template-columns: 1fr;
  }

  .ticker span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .button {
    width: 100%;
  }

  footer {
    display: block;
  }

  footer span {
    display: block;
    margin-top: 8px;
  }
}
