:root {
  --orange: #ff681d;
  --orange-dark: #db4b0a;
  --cream: #fff8ed;
  --paper: #fffdf9;
  --ink: #151410;
  --muted: #6d665d;
  --line: #e9ddce;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.6 "DM Sans", sans-serif; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; }

.site-header {
  height: 92px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.logo { width: 86px; height: 66px; object-fit: contain; }
.status { display: flex; align-items: center; gap: 10px; padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px #ff681d20; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 4vw;
  padding: 52px 5vw 74px;
  background: var(--cream);
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; max-width: 650px; }
.eyebrow { margin-bottom: 16px; color: var(--orange-dark); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
h1 { margin-bottom: 30px; font-size: clamp(58px, 6.4vw, 100px); line-height: .93; letter-spacing: -.065em; }
h1 em { color: var(--orange); font-style: normal; }
.intro { max-width: 565px; margin-bottom: 34px; color: #514b43; font-size: 19px; }
.explore { display: inline-flex; align-items: center; gap: 13px; color: var(--ink); font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--ink); padding-bottom: 7px; }
.explore span { color: var(--orange); font-size: 20px; }

.hero-art { min-height: 550px; position: relative; }
.orange-orbit { position: absolute; width: min(38vw, 520px); aspect-ratio: 1; right: 2%; top: 1%; border-radius: 50%; background: var(--orange); }
.hero-art figure { position: absolute; inset: 7% 0 8% 2%; margin: 0; overflow: hidden; border: 9px solid var(--cream); border-radius: 48% 48% 18px 18px; box-shadow: 0 28px 65px #732c0c31; }
.hero-art figure img { width: 100%; height: 100%; object-fit: cover; }
.fresh-stamp { position: absolute; right: -8px; bottom: 3%; width: 104px; height: 104px; display: grid; place-items: center; color: white; background: var(--ink); border-radius: 50%; text-align: center; font-weight: 800; line-height: 1.05; transform: rotate(8deg); }
.side-note { position: absolute; left: -5px; bottom: 0; margin: 0; font-size: 10px; line-height: 1.4; letter-spacing: .15em; font-weight: 800; writing-mode: vertical-rl; transform: rotate(180deg); }

.ticker { overflow: hidden; padding: 17px 0; color: white; background: var(--orange); font-size: 13px; font-weight: 800; letter-spacing: .17em; white-space: nowrap; text-align: center; }
.ticker b { margin: 0 20px; color: var(--ink); }

.coming { padding: 105px 5vw 120px; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; margin-bottom: 45px; }
.section-heading h2, .opening-note h2 { margin-bottom: 0; font-size: clamp(45px, 5vw, 72px); line-height: 1; letter-spacing: -.055em; }
.section-heading > p { margin: 0; max-width: 460px; color: var(--muted); font-size: 17px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards article { border-top: 1px solid var(--line); padding-top: 14px; }
.card-image { height: 330px; overflow: hidden; border-radius: 190px 190px 14px 14px; background: var(--cream); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cards article:hover .card-image img { transform: scale(1.025); }
.number { margin: 20px 0 6px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.cards h3 { margin-bottom: 7px; font-size: 24px; letter-spacing: -.025em; }
.cards article > p:last-child { max-width: 330px; color: var(--muted); }

.opening-note { padding: 110px 24px; color: white; background: var(--ink); text-align: center; }
.opening-note .eyebrow { color: #ff9d69; }
.opening-note > p:last-child { margin: 24px 0 0; color: #c8c4bd; font-size: 18px; }

footer { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 34px 5vw; background: #f3e9da; border-top: 1px solid var(--line); }
footer img { width: 70px; height: 58px; object-fit: contain; }
footer p { margin: 0; color: var(--muted); }
footer small { color: #82796f; }

@media (max-width: 860px) {
  .site-header { height: 74px; padding: 0 20px; }
  .logo { width: 66px; height: 52px; }
  .status { padding: 8px 11px; font-size: 10px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 18px; padding: 58px 22px 64px; }
  h1 { font-size: clamp(51px, 15vw, 72px); }
  .intro { font-size: 17px; }
  .hero-art { min-height: 390px; margin-top: 12px; }
  .orange-orbit { width: 350px; max-width: 92vw; }
  .hero-art figure { inset: 6% 0 9% 0; border-width: 6px; }
  .fresh-stamp { width: 78px; height: 78px; font-size: 11px; }
  .side-note { display: none; }
  .ticker { text-align: left; padding-left: 22px; }
  .coming { padding: 75px 22px 85px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .cards { grid-template-columns: 1fr; gap: 46px; }
  .card-image { height: 340px; }
  .opening-note { padding: 80px 22px; }
  footer { grid-template-columns: auto 1fr; padding: 34px 22px; }
  footer small { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid var(--line); }
}

@media (max-width: 430px) {
  .hero-art { min-height: 330px; }
  .card-image { height: 290px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card-image img { transition: none; }
}
