:root {
  color-scheme: dark;
  font-family: 'Segoe UI', Inter, system-ui, sans-serif;
  background: #111110;
  color: #f3f0e9;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body { margin: 0; min-width: 320px; }

.site-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 45% 42% at 75% 54%, rgba(146, 90, 30, .23), transparent 80%),
    radial-gradient(ellipse 64% 52% at 23% 110%, rgba(81, 53, 26, .20), transparent 80%),
    #111110;
}

.site-shell::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .20;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.45' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
}

.masthead, .footer, .hero { width: min(1400px, calc(100% - 9vw)); margin-inline: auto; }

.masthead {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: clamp(30px, 4vw, 62px);
}

.brand {
  font: 800 .91rem/1 'Segoe UI', Inter, system-ui, sans-serif;
  letter-spacing: .17em;
  white-space: nowrap;
}

.brand-dot { color: #d9a86c; }

.brand-mark { display: flex; align-items: center; gap: 3px; height: 22px; }
.brand-mark i { display: block; width: 2px; border-radius: 2px; background: #c79255; }
.brand-mark i:nth-child(1), .brand-mark i:nth-child(5) { height: 7px; }
.brand-mark i:nth-child(2), .brand-mark i:nth-child(4) { height: 15px; }
.brand-mark i:nth-child(3) { height: 22px; }

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
  align-items: center;
  min-height: 590px;
}

.hero-copy { position: relative; z-index: 2; padding-bottom: 2vw; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #c99d69;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.eyebrow-rule { width: 29px; height: 1px; background: currentColor; }

h1 {
  margin: 29px 0 0;
  font: 700 clamp(3.3rem, 5.8vw, 6.1rem)/1.11 'Segoe UI', Inter, system-ui, sans-serif;
  letter-spacing: -.067em;
}

h1 em { color: #d3a367; font-style: normal; }

.subtitle {
  margin: 29px 0 0;
  color: #bdb6ac;
  font-size: clamp(1.1rem, 1.75vw, 1.38rem);
  line-height: 1.5;
}

.art-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 730px;
  aspect-ratio: 1;
  justify-self: center;
}

.art-stage::before {
  content: '';
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 123, 47, .21), transparent 70%);
  filter: blur(20px);
}

.halo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(210, 154, 92, .16);
  pointer-events: none;
}

.halo-outer { inset: 2%; }
.halo-inner { inset: 13%; border-color: rgba(210, 154, 92, .08); }

.panda {
  position: relative;
  z-index: 1;
  display: block;
  width: 106%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 36px 32px rgba(0,0,0,.39));
}

.footer {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: clamp(28px, 3.6vw, 48px);
  color: #81786d;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .19em;
}

.footer-line { width: 31px; height: 1px; background: #7e6448; }

@media (max-width: 760px) {
  .masthead, .footer, .hero { width: min(100% - 44px, 550px); }
  .masthead { padding-top: 28px; }
  .hero { display: flex; flex-direction: column; justify-content: center; align-items: stretch; min-height: 0; padding-top: 55px; }
  .hero-copy { padding: 0; }
  h1 { margin-top: 19px; font-size: clamp(3rem, 11vw, 4.7rem); }
  .subtitle { margin-top: 18px; }
  .art-stage { width: min(110%, 590px); max-width: none; margin: -8px auto -3px; }
  .footer { padding-bottom: 25px; }
}

@media (max-width: 430px) {
  .hero { padding-top: 50px; }
  .art-stage { width: 119%; margin-left: -9.5%; }
  .footer { font-size: .69rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .brand-mark i { animation: pulse 2.4s ease-in-out infinite; }
  .brand-mark i:nth-child(2), .brand-mark i:nth-child(4) { animation-delay: .15s; }
  .brand-mark i:nth-child(3) { animation-delay: .3s; }
  @keyframes pulse { 50% { opacity: .42; transform: scaleY(.62); } }
}
