/* Sylvia Yume — temporary "Under Construction" landing page.
   Palette sampled to match the approved artwork (soft cream / blush / sage / warm brown). */
:root {
  --cream:   #F7EEE4;
  --cream-2: #FBF5EE;
  --blush:   #F3DEE2;
  --lav:     #ECE4F1;
  --rose:    #D98C97;
  --gold:    #C9A56A;
  --ink:     #6E5442;
  --ink-soft:#8A6E58;
  --card:        rgba(255, 255, 255, 0.72);
  --card-border: rgba(160, 120, 90, 0.22);
  --art-shadow: 0 22px 55px -24px rgba(120, 80, 70, 0.5);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vh, 26px);
  padding: clamp(16px, 3vh, 34px) clamp(14px, 3vw, 32px);
  /* Warm gradient so the space around the artwork blends in — never white/black gaps. */
  background:
    radial-gradient(125% 120% at 50% 32%,
      var(--cream-2) 0%, var(--cream) 46%, var(--blush) 82%, var(--lav) 100%);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Screen-reader-only heading (visual title is inside the approved artwork). */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.stage {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* The artwork: shown whole, aspect ratio preserved, never cropped or distorted. */
.stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(94vw, 1500px);
  max-height: 80dvh;
  border-radius: 12px;
  box-shadow: var(--art-shadow);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 14px);
  width: 100%;
  max-width: 760px;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: 0 6px 18px -12px rgba(120, 80, 70, 0.5);
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.social svg { width: 18px; height: 18px; flex: none; }
.social .label { white-space: nowrap; }
.social:hover, .social:focus-visible {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -14px rgba(120, 80, 70, 0.6);
}
.social:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

.footer {
  text-align: center;
  font-size: clamp(11px, 1.2vw, 13px);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.footer strong { color: var(--ink); font-weight: 700; }
.footer a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--card-border); }
.footer a:hover { border-bottom-color: var(--rose); }
.footer .dot { opacity: 0.5; margin: 0 0.55ch; }

/* Phones: let the wide artwork scale to the screen width (no heavy cropping), stack the rest. */
@media (max-width: 560px) {
  body { justify-content: flex-start; }
  .stage img { max-height: none; max-width: 96vw; }
}

@media (prefers-reduced-motion: reduce) {
  .social { transition: none; }
  .social:hover, .social:focus-visible { transform: none; }
}
