@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/barlow-condensed-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: dark;
  font-family: "Manrope", sans-serif;
  color: #f9f7f2;
  background: #151210;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  --accent: #f5a35c;
}

* { box-sizing: border-box; }
body { margin: 0; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 7px; }
::selection { color: #151210; background: var(--accent); }

.page {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.studio, .shade { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; }
.studio { object-fit: cover; object-position: center 53%; }
.shade {
  background: linear-gradient(180deg, rgba(12, 10, 9, .55) 0%, rgba(12, 10, 9, .3) 25%, rgba(12, 10, 9, .43) 56%, rgba(12, 10, 9, .83) 100%), linear-gradient(90deg, rgba(12, 10, 9, .28), rgba(12, 10, 9, .14) 50%, rgba(12, 10, 9, .3));
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 35px 56px;
}
.wordmark { display: inline-flex; align-items: center; gap: 11px; font-size: 18px; letter-spacing: .045em; font-weight: 600; }
.brand-icon { width: 26px; height: 28px; color: var(--accent); }
.brand-period { color: var(--accent); }
.status { display: flex; gap: 9px; align-items: center; font-size: 10px; letter-spacing: .17em; font-weight: 600; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgb(245 163 92 / 10%); }

.main { display: flex; flex: 1; align-items: center; justify-content: center; padding: 36px 28px 52px; }
.hero { width: 100%; text-align: center; animation: arrive .9s ease-out both; }
.eyebrow { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 0 23px; font-size: 11px; font-weight: 600; letter-spacing: .24em; color: #ffc797; }
.eyebrow span { width: 23px; height: 1px; background: currentColor; opacity: .6; }
h1 { margin: 0; font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif; font-weight: 800; font-size: clamp(70px, 8.2vw, 126px); letter-spacing: -.025em; line-height: .99; text-wrap: balance; text-shadow: 0 3px 30px rgb(0 0 0 / 15%); }
h1 span { color: var(--accent); }
.intro { margin: 28px 0 0; font-size: 18px; line-height: 1.6; color: #e6e0d8; }
.intro span { color: #fff; font-weight: 600; }
.description { margin: 8px 0 0; color: #c7beb4; font-size: 14px; line-height: 1.8; }
.follow-prompt { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 25px 0 14px; font-size: 14px; font-weight: 600; color: #fff; }
.follow-prompt span { font-size: 21px; }
.socials { display: flex; justify-content: center; align-items: stretch; gap: 16px; max-width: 480px; margin: 0 auto; }
.social { display: inline-flex; flex: 1; justify-content: center; align-items: center; gap: 13px; min-height: 70px; padding: 15px 22px; border: 1px solid transparent; border-radius: 8px; font-size: 16px; font-weight: 600; transition: box-shadow .2s, border-color .2s, transform .2s; }
.social svg { width: 26px; height: 26px; flex-shrink: 0; }
.social .arrow { width: 16px; height: 16px; margin-left: auto; }
.social-copy { display: flex; flex-direction: column; gap: 3px; text-align: left; }
.social-handle { font-size: 10px; font-weight: 400; letter-spacing: .02em; }
.social-instagram { color: #fff; background: linear-gradient(115deg, #8734b8, #bd286b 60%, #d74839); border-color: #ed8cae; box-shadow: 0 6px 28px rgb(193 53 132 / 25%); }
.social-tiktok { color: #fff; background: #111617; border-color: #67e8e1; box-shadow: 0 6px 28px rgb(37 244 238 / 15%); }
.social-tiktok > svg:first-child { color: #6cf5ed; filter: drop-shadow(2px 1px 0 #fe2c55); }
.social-tiktok .social-handle { color: #b5eee9; }
.social-instagram:hover { transform: translateY(-3px); border-color: #ffd5e4; box-shadow: 0 10px 32px rgb(193 53 132 / 40%); }
.social-tiktok:hover { transform: translateY(-3px); border-color: #b4fff9; box-shadow: 0 10px 32px rgb(37 244 238 / 28%); }

.footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 56px; padding: 23px 0 27px; border-top: 1px solid rgb(255 255 255 / 15%); font-size: 9px; letter-spacing: .14em; color: #b5aaa0; font-weight: 600; }
.footer-highlight { color: #e1d8ce; }
.footer-handle { font-size: 11px; letter-spacing: .04em; color: #d1c5b9; }

@keyframes arrive {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1600px) {
  .header { padding-inline: 72px; }
  .footer { margin-inline: 72px; }
}

@media (max-width: 700px) {
  .header { padding: 27px 24px; }
  .wordmark { gap: 8px; font-size: 15px; }
  .brand-icon { width: 23px; height: 25px; }
  .status { gap: 7px; font-size: 8px; letter-spacing: .12em; }
  .status-dot { width: 5px; height: 5px; }
  .main { padding: 72px 20px 84px; }
  h1 { font-size: clamp(53px, 11.3vw, 78px); line-height: 1.02; letter-spacing: -.015em; }
  .eyebrow { font-size: 9px; gap: 11px; margin-bottom: 22px; }
  .intro { margin-top: 26px; font-size: 15px; }
  .description { font-size: 12px; margin-top: 9px; }
  .follow-prompt { margin-top: 24px; font-size: 12px; }
  .follow-prompt span { font-size: 19px; }
  .socials { gap: 12px; }
  .social { min-width: 0; min-height: 66px; padding: 13px 14px; font-size: 14px; gap: 10px; }
  .social svg { width: 23px; height: 23px; }
  .social .arrow { width: 12px; height: 12px; }
  .social-handle { font-size: 9px; }
  .footer { margin: 0 24px; padding: 21px 0 24px; align-items: flex-end; }
  .footer > span:first-child { max-width: 230px; font-size: 8px; line-height: 1.8; letter-spacing: .11em; }
  .footer-highlight { display: block; }
  .footer-handle { font-size: 9px; padding-bottom: 3px; }
  .studio { object-position: 51% center; }
  .shade { background: linear-gradient(180deg, rgb(12 10 9 / 56%), rgb(12 10 9 / 45%) 28%, rgb(12 10 9 / 55%) 65%, rgb(12 10 9 / 87%)); }
}

@media (max-width: 360px) {
  .header { padding-inline: 18px; }
  .wordmark { font-size: 13px; }
  .status { font-size: 7px; }
  .main { padding-inline: 12px; }
  h1 { font-size: 48px; }
  .social { padding-inline: 10px; gap: 7px; }
  .socials { gap: 10px; }
  .social svg { width: 20px; height: 20px; }
  .footer { margin-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
