/* Casa Dorada — coming-soon · Desert Poster art direction */

:root {
  --sand:        #f3deb0;
  --sand-2:      #e6c789;
  --cream:       #fff5dc;
  --sunset:      #ff5a1f;
  --sunset-deep: #d8350f;
  --pink:        #ff5e8a;
  --purple:      #3a1a4a;
  --cactus:      #5a7a3a;
  --cactus-deep: #3a5a22;
  --yellow:      #ffd23f;
  --mustard:     #d99428;
  --ink:         #1a0e08;
  --ink-2:       #3a261a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--sand);
  color: var(--ink);
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--yellow);
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}
.ticker-track {
  display: flex;
  gap: 32px;
  padding: 10px 0;
  animation: tick 32s linear infinite;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}
.ticker-track span::after {
  content: "※";
  color: var(--sunset);
  margin-left: 32px;
}
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Stage ---------- */
.stage {
  position: relative;
  min-height: calc(100vh - 40px);
  min-height: calc(100dvh - 40px);
  padding: 24px clamp(20px, 5vw, 56px) 110px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 14%,
      rgba(255, 210, 63, 0.34),
      transparent 60%),
    var(--sand);
  overflow: hidden;
  isolation: isolate;
}

/* Sun */
.sun {
  position: absolute;
  width: clamp(260px, 38vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    var(--cream) 0%,
    var(--yellow) 38%,
    #ffb52a 68%,
    transparent 78%);
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  filter: saturate(1.1);
  pointer-events: none;
}
.rays {
  position: absolute;
  width: clamp(380px, 50vw, 620px);
  aspect-ratio: 1;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

/* Cacti */
.saguaro {
  position: absolute;
  width: clamp(80px, 14vw, 180px);
  aspect-ratio: 100 / 200;
  bottom: 70px;
  z-index: 1;
  pointer-events: none;
}
.saguaro.left  { left: clamp(8px, 3vw, 32px); }
.saguaro.right { right: clamp(8px, 3vw, 32px); }

/* Dune horizon at the bottom */
.dunes {
  position: absolute;
  left: 0; right: 0;
  bottom: 38px;
  width: 100%;
  height: 120px;
  z-index: 1;
  pointer-events: none;
}

/* ---------- Top header ---------- */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(32px, 6vh, 64px);
  position: relative;
  z-index: 3;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--pink);
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.logo .name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.logo .sub {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-2);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--sunset);
  padding: 9px 16px 9px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sunset);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.55);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 90, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: clamp(28px, 6vw, 56px);
}

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}

.display {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(76px, 14vw, 200px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.display .line { display: block; }
.display .y {
  color: var(--yellow);
  -webkit-text-stroke: 4px var(--ink);
  text-stroke: 4px var(--ink);
  text-shadow:
    5px 5px 0 var(--ink);
}
.display .c {
  color: var(--cream);
  -webkit-text-stroke: 4px var(--ink);
  text-stroke: 4px var(--ink);
  text-shadow:
    5px 5px 0 var(--sunset);
}

.hand {
  font-family: 'Caveat Brush', cursive;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--ink);
  transform: rotate(-2deg);
  display: inline-block;
  margin: 14px 0 28px;
  line-height: 1;
}
.hand em {
  color: var(--sunset);
  font-style: normal;
}

.menu-row {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 14px);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.pill {
  display: inline-flex;
  align-items: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 3px solid var(--ink);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.pill.yellow { background: var(--yellow); }
.pill.pink   { background: var(--pink);   color: var(--cream); }
.pill.cactus { background: var(--cactus); color: var(--cream); }
.dot-sep {
  color: var(--sunset);
  font-size: 18px;
  font-weight: 800;
}

.lede {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 480px;
  margin: 0 auto 22px;
  text-wrap: pretty;
}

.note {
  font-family: 'Archivo', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.foot {
  position: absolute;
  left: clamp(20px, 5vw, 56px);
  right: clamp(20px, 5vw, 56px);
  bottom: 12px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  text-shadow: 1px 1px 0 var(--ink);
}
.foot .contact {
  color: var(--cream);
  text-shadow: 1px 1px 0 var(--ink);
  transition: color 160ms ease;
}
.foot .contact:hover { color: var(--yellow); }

/* ---------- Mobile ---------- */
@media (max-width: 720px) {
  .stage { padding: 20px 20px 120px; min-height: calc(100vh - 38px); min-height: calc(100dvh - 38px); }
  .top { margin-bottom: 24px; }
  .logo .name { font-size: 16px; }
  .logo .sub { font-size: 9.5px; letter-spacing: 0.2em; }
  .hero { padding-top: 18px; }
  .eyebrow { font-size: 11px; letter-spacing: 0.18em; margin-bottom: 12px; }
  .display { font-size: clamp(56px, 17vw, 96px); }
  .display .y, .display .c { -webkit-text-stroke-width: 3px; text-stroke-width: 3px; text-shadow: 3px 3px 0 var(--ink); }
  .display .c { text-shadow: 3px 3px 0 var(--sunset); }
  .hand { font-size: 30px; margin: 10px 0 22px; }
  .pill { font-size: 13px; padding: 9px 14px; box-shadow: 2px 2px 0 var(--ink); border-width: 2px; }
  .lede { font-size: 14.5px; }
  .note { font-size: 11.5px; letter-spacing: 0.12em; }
  .saguaro { display: none; }
  .dunes { height: 90px; bottom: 36px; }
  .foot { flex-direction: column; gap: 6px; text-align: center; bottom: 10px; }
}

@media (max-width: 380px) {
  .badge { padding: 7px 12px; font-size: 10px; letter-spacing: 0.14em; }
  .logo-mark { width: 38px; height: 38px; }
}
