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

:root {
  --sky: #8eb6ce;
  --sky-deep: #5d8aaa;
  --navy: #0c141c;
  --ink: #101820;
  --leather: #3a2418;
  --shiba: #d4893c;
  --gold: #e0a24a;
  --gold-deep: #c4842e;
  --paper: #f3eee6;
  --card: #fffaf3;
  --mute: #6b6258;
  --line: rgba(16, 24, 32, 0.12);
  --glass: rgba(255, 250, 243, 0.14);
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #d7e4ee;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 1rem 0 auto;
  z-index: 100;
  pointer-events: none;
}

.nav {
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1080px, 94vw);
  margin: 0 auto;
  padding: 0.45rem 0.55rem 0.45rem 0.75rem;
  background: rgba(12, 20, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(12, 20, 28, 0.28);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
}

.nav-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav-ticker {
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding-right: 0.35rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 250, 243, 0.86);
}

.nav-links a:hover { color: var(--gold); }

.nav-socials {
  display: flex;
  gap: 0.45rem;
  margin-left: 0.15rem;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
}

.nav-socials a:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.55rem 0.7rem;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff8f0;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: -2;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 20, 28, 0.18) 0%, rgba(12, 20, 28, 0.12) 38%, rgba(12, 20, 28, 0.88) 100%);
}

.hero-inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 8rem 0 2.2rem;
}

.hero-chip {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 248, 240, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(12, 20, 28, 0.55);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4.2rem, 13vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0.04em;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  letter-spacing: 0.28em;
  margin: 0.55rem 0 1rem;
  color: var(--gold);
  font-weight: 600;
}

.hero-sub span { color: #fff; }

.hero-bio {
  max-width: 38em;
  color: rgba(255, 248, 240, 0.82);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, 92vw);
  margin: 0 auto -3.2rem;
  position: relative;
  z-index: 2;
  gap: 0.8rem;
}

.hero-stats li {
  background: var(--card);
  color: var(--ink);
  border-radius: 1.25rem;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 18px 40px rgba(12, 20, 28, 0.22);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--leather);
}

.hero-stats span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover { background: #f0b45c; }

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.hero .btn-ghost {
  border-color: rgba(255, 248, 240, 0.55);
  color: #fff8f0;
}

.hero .btn-ghost:hover {
  background: #fff8f0;
  color: var(--ink);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-lg { padding: 1.05rem 1.65rem; }

button.btn { font: inherit; }

.section {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 5rem;
}

.appointment {
  padding-top: 7.2rem;
  background:
    radial-gradient(circle at 80% 0%, rgba(142, 182, 206, 0.35), transparent 32%),
    #e9eef2;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 36em;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.section-head h2,
.profile-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 0.55rem;
}

.section-head p,
.profile-copy p {
  color: var(--mute);
  font-size: 1.05rem;
}

.profile-copy p { margin-bottom: 0.9rem; }
.profile-copy strong { color: var(--ink); }
.profile-copy a {
  color: var(--gold-deep);
  font-weight: 600;
}

.desk {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.desk-copy,
.blotter {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(12, 20, 28, 0.08);
}

.desk-copy {
  padding: 1.6rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
}

.quote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.quote footer {
  margin-top: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.quote cite {
  font-style: normal;
  font-weight: 700;
}

.quote span {
  color: var(--mute);
  font-size: 0.85rem;
}

.quote-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.quote-meta li {
  background: #f6f1e8;
  border-radius: 0.9rem;
  padding: 0.7rem 0.75rem;
}

.quote-meta span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.desk-copy .btn { align-self: flex-start; }

.desk-embed { min-width: 0; }

.blotter {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    linear-gradient(180deg, #f7f1e6 0%, var(--card) 28%);
}

.blotter-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.85rem;
}

.blotter-bar a {
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 700;
}

.tweet-stage {
  flex: 1;
  display: flex;
  justify-content: center;
  background: #f7f9f9;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 720px;
}

.tweet-frame {
  display: block;
  width: 100%;
  max-width: 550px;
  height: 720px;
  border: 0;
  background: #f7f9f9;
}

.about {
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 137, 60, 0.16), transparent 28%),
    var(--paper);
}

.profile {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 3.5rem;
  align-items: center;
}

.profile-photo {
  position: relative;
  width: min(100%, 340px);
  margin: 0 auto;
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 26%;
  border-radius: 50%;
  border: 10px solid var(--card);
  box-shadow: 0 24px 50px rgba(12, 20, 28, 0.16);
}

.badge-corner {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 3px solid var(--gold);
  border-radius: 8px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  background: rgba(255, 250, 243, 0.94);
  transform: rotate(-12deg);
}

.chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.chips li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
}

.chips span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.2rem;
}

.ticket {
  display: grid;
  grid-template-columns: 180px 1fr;
  background: var(--card);
  border: 1px dashed var(--gold);
  border-radius: 1.4rem;
  overflow: hidden;
  position: relative;
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: #d7e4ee;
  border-radius: 50%;
  left: 169px;
}

.ticket::before { top: -11px; }
.ticket::after { bottom: -11px; }

.ticket-stub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.4rem 1.1rem;
  background: var(--leather);
  color: #fff8f2;
  text-align: center;
}

.ticket-stub p {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.ticket-stub strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
}

.ticket-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
}

.ca-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  width: 100%;
}

.ca-address {
  flex: 1;
  font-size: clamp(0.82rem, 1.8vw, 1.05rem);
  word-break: break-all;
  color: var(--ink);
}

.ticket .btn-ghost {
  color: var(--ink);
  border-color: var(--line);
}

.ticket .btn-ghost:hover,
.ticket .btn.copied {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.copy-toast {
  min-height: 1.4rem;
  margin-top: 0.8rem;
  color: var(--gold-deep);
  opacity: 0;
  transition: opacity 0.25s;
}

.copy-toast.show { opacity: 1; }

.stamps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.stamps article {
  text-align: center;
  padding: 1.4rem 0.8rem;
}

.stamp-value {
  width: 118px;
  height: 118px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border: 3px solid var(--leather);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--leather);
  transform: rotate(-8deg);
}

.stamps article:nth-child(2) .stamp-value { transform: rotate(6deg); }
.stamps article:nth-child(3) .stamp-value { transform: rotate(-4deg); }
.stamps article:nth-child(4) .stamp-value { transform: rotate(9deg); }

.stamps h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.stamps p { color: var(--mute); font-size: 0.92rem; }

.buy {
  background: var(--navy);
  color: #f6eee2;
}

.buy .kicker { color: var(--gold); }
.buy h2 { color: #fff8f0; }
.buy .section-head { margin-bottom: 2.2rem; }
.buy a { color: var(--gold); }

.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(224, 162, 74, 0.35);
  margin: 0 0 2.2rem 0.7rem;
}

.timeline li {
  position: relative;
  padding: 0 0 1.8rem 1.6rem;
}

.timeline li:last-child { padding-bottom: 0; }

.timeline span {
  position: absolute;
  left: -0.7rem;
  top: 0.15rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--gold);
  color: transparent;
  font-size: 0;
}

.timeline h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.timeline p {
  color: rgba(246, 238, 226, 0.72);
  font-size: 0.98rem;
}

.buy-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.buy .btn-ghost {
  border-color: rgba(246, 238, 226, 0.4);
  color: #f6eee2;
}

.buy .btn-ghost:hover {
  background: #f6eee2;
  color: var(--navy);
}

.footer {
  padding: 2.4rem 0;
  background: #080c10;
  color: #f6eee2;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 2rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.footer-inner strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.3rem;
}

.footer-inner span,
.footer-disclaimer {
  color: rgba(246, 238, 226, 0.62);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  max-width: 46em;
}

@media (max-width: 980px) {
  .desk,
  .profile,
  .ticket,
  .stamps,
  .hero-stats,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats { margin-bottom: -2.2rem; }
  .hero-inner { padding-top: 7rem; }
  .chips { grid-template-columns: 1fr; }
  .ticket::before,
  .ticket::after { display: none; }
  .footer-links { justify-content: flex-start; }
  .tweet-stage,
  .tweet-frame { min-height: 620px; height: 620px; }
}

@media (max-width: 720px) {
  .nav {
    border-radius: 1.4rem;
    padding-right: 0.35rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 0.8rem;
    background: rgba(12, 20, 28, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem;
    box-shadow: 0 16px 40px rgba(12, 20, 28, 0.28);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 1.2rem;
  }

  .nav-socials {
    margin: 0;
    padding: 0.5rem 1.2rem 0.2rem;
    border: 0;
  }

  .nav-toggle { display: flex; }
  .nav-name { display: none; }
  .section { padding: 4.4rem 0 3.6rem; }
  .appointment { padding-top: 5.6rem; }
  .hero h1 { letter-spacing: 0.02em; }
}
