@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/outfit-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/outfit-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/outfit-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-latin-500-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-latin-600-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
}

:root {
  --background: #0b090c;
  --foreground: #f6eef2;
  --card: #141116;
  --secondary: #1b171c;
  --muted: #b7a4ae;
  --subtle: #8a7380;
  --accent: #ff4d8d;
  --accent-fg: #1a0810;
  --border: #2c242a;
  --font-sans: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --quick: 150ms;
  --fast: 250ms;
  --slow: 400ms;

  /* Image boxes are viewport-capped so photos never dictate page height */
  --cta-h: min(38dvh, 20.5rem);
  --avatar: 5.5rem;
  --name: 1.85rem;
  --page: 26.5rem;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background: var(--background);
  color: var(--foreground);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  min-height: 100dvh;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  font-family: inherit;
}

button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
  vertical-align: middle;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
  margin: 0;
}

.page {
  position: relative;
  overflow-x: clip;
  min-height: 100vh;
  min-height: 100dvh;
}

.atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  opacity: 0.4;
}

.atmosphere-scrim {
  position: absolute;
  inset: 0;
  background: color-mix(in oklab, var(--background) 74%, transparent);
}

.atmosphere-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 36% at 50% -6%,
    color-mix(in oklab, var(--accent) 18%, transparent),
    transparent 62%
  );
}

.main {
  position: relative;
  width: min(100%, var(--page));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: max(1.15rem, env(safe-area-inset-top, 0px));
  padding-left: max(1.15rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.15rem, env(safe-area-inset-right, 0px));
  padding-bottom: calc(6.25rem + env(safe-area-inset-bottom, 0px));
}

.profile {
  display: contents;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar-ring {
  border-radius: 9999px;
  background: color-mix(in oklab, var(--accent) 40%, transparent);
  padding: 3px;
}

.avatar-gap {
  border-radius: 9999px;
  background: var(--background);
  padding: 2px;
}

.avatar-ring img {
  display: block;
  width: var(--avatar);
  height: var(--avatar);
  border-radius: 9999px;
  object-fit: cover;
  object-position: center 18%;
  outline: 1px solid color-mix(in oklab, var(--foreground) 10%, transparent);
  outline-offset: -1px;
}

.name {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-size: var(--name);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.handle {
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
}

.hook {
  margin-top: 0.35rem;
  max-width: 20rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--muted);
}

.cta {
  position: relative;
  margin-top: 1.05rem;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  text-align: left;
  outline: none;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--accent) 35%, transparent);
  transition: transform var(--quick) ease-out;
}

.cta:active {
  transform: scale(0.98);
}

.cta:focus-visible {
  box-shadow: 0 0 0 2px var(--accent);
}

.cta-media {
  display: block;
  width: 100%;
  height: var(--cta-h);
  overflow: hidden;
  background: var(--card);
}

.cta-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}

.cta-scrim {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--background) 0%,
    color-mix(in oklab, var(--background) 55%, transparent) 42%,
    transparent 68%
  );
}

.cta-chip {
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--background) 78%, transparent);
  padding: 0.2rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cta-copy {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  padding: 0.85rem 0.95rem 0.95rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
}

.cta-hint {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.cta-pill {
  margin-top: 0.7rem;
  display: inline-flex;
  height: 2.75rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 0.8125rem;
  font-weight: 600;
}

.social {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.social a {
  display: inline-flex;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 9999px;
  background: var(--card);
  color: var(--foreground);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  box-shadow: 0 0 0 1px var(--border);
  transition: transform var(--quick) ease-out, background-color var(--quick) ease-out;
}

.social a:active {
  transform: scale(0.98);
}

.social svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.teasers {
  margin-top: 1.35rem;
}

.teasers-head {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.teasers-head h2 {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
}

.teasers-head p {
  font-size: 0.75rem;
  color: var(--subtle);
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.teaser {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  text-align: left;
  outline: none;
  box-shadow: 0 0 0 1px var(--border);
  transition: transform var(--quick) ease-out;
  padding: 0;
}

.teaser:active {
  transform: scale(0.98);
}

.teaser:focus-visible {
  box-shadow: 0 0 0 2px var(--accent);
}

.teaser-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--card);
}

.teaser-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.teaser-scrim {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in oklab, var(--background) 82%, transparent), transparent 55%);
}

.teaser-meta {
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6875rem;
  font-weight: 500;
}

.site-footer {
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--subtle);
}

.sticky-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding-top: 0.4rem;
  padding-left: max(0.9rem, env(safe-area-inset-left, 0px));
  padding-right: max(0.9rem, env(safe-area-inset-right, 0px));
  padding-bottom: max(0.7rem, calc(env(safe-area-inset-bottom, 0px) + 0.45rem));
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease);
}

.sticky-wrap.is-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.sticky-btn {
  display: flex;
  height: 2.75rem;
  width: 100%;
  max-width: 26.5rem;
  align-items: center;
  gap: 0.65rem;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--accent-fg);
  padding: 0 0.9rem 0 0.4rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 10px 30px color-mix(in oklab, var(--accent) 28%, transparent);
  transition: transform var(--quick) ease-out;
}

.sticky-btn:active {
  transform: scale(0.98);
}

.sticky-btn img {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 9999px;
  object-fit: cover;
}

.sticky-btn span {
  flex: 1;
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.gate.is-on {
  display: block;
}

.gate-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in oklab, var(--background) 80%, transparent);
}

.gate-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(22rem, calc(100% - 2rem));
  max-height: min(88dvh, 32rem);
  overflow: auto;
  transform: translate(-50%, -50%);
  border-radius: var(--radius-2xl);
  background: var(--card);
  padding: 1.25rem;
  box-shadow: 0 0 0 1px var(--border);
}

.gate-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: var(--accent);
}

.gate-title {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
}

.gate-body {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
}

.gate-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.btn {
  display: inline-flex;
  height: 2.75rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform var(--quick) ease-out, background-color var(--quick) ease-out;
}

.btn:active {
  transform: scale(0.98);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-fg);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.reveal {
  animation: reveal-up var(--slow) var(--ease) both;
}
.reveal-d1 {
  animation-delay: 60ms;
}
.reveal-d2 {
  animation-delay: 110ms;
}
.reveal-d3 {
  animation-delay: 160ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Short phones (SE, small Android) — keep hero on one screen */
@media (max-height: 740px) {
  :root {
    --cta-h: min(34dvh, 18rem);
    --avatar: 4.75rem;
    --name: 1.7rem;
  }
  .cta-hint {
    display: none;
  }
}

@media (max-height: 620px) {
  :root {
    --cta-h: min(30dvh, 14.5rem);
    --avatar: 4.25rem;
    --name: 1.55rem;
  }
  .hook {
    display: none;
  }
  .cta-chip {
    display: none;
  }
}

/* Wider phones / small tablets, still one column */
@media (min-width: 430px) {
  :root {
    --cta-h: min(40dvh, 22rem);
    --avatar: 6rem;
    --name: 2rem;
  }
}

@media (min-width: 640px) and (min-height: 740px) {
  :root {
    --page: 28rem;
    --cta-h: min(42dvh, 24rem);
    --avatar: 6.5rem;
    --name: 2.15rem;
  }
  .cta-title {
    font-size: 1.5rem;
  }
}

/* Desktop / Windows: two columns, images still capped */
@media (min-width: 900px) and (min-height: 560px) {
  :root {
    --page: 64rem;
    --cta-h: min(46dvh, 26rem);
    --avatar: 6.25rem;
    --name: 2.35rem;
  }

  .main {
    display: grid;
    grid-template-columns: minmax(20rem, 24.5rem) minmax(22rem, 1fr);
    grid-template-areas:
      "profile teasers"
      "footer footer";
    column-gap: 2.5rem;
    align-items: start;
    padding-top: max(2.5rem, env(safe-area-inset-top, 0px));
    padding-bottom: 3rem;
  }

  .profile {
    display: flex;
    flex-direction: column;
    grid-area: profile;
  }
  .teasers {
    grid-area: teasers;
    margin-top: 0;
  }
  .site-footer {
    grid-area: footer;
    text-align: left;
  }
  .cta {
    margin-top: 1.15rem;
  }

  .sticky-wrap {
    display: none;
  }

  .grid {
    gap: 0.65rem;
  }

  .teaser-media {
    aspect-ratio: 4 / 5;
  }
}

@media (min-width: 900px) and (max-height: 800px) {
  :root {
    --cta-h: min(40dvh, 22rem);
  }
}

@media (min-width: 1100px) and (min-height: 801px) {
  :root {
    --page: 70rem;
    --cta-h: min(56dvh, 30rem);
  }
  .main {
    column-gap: 3.25rem;
    padding-top: 3.25rem;
  }
}

/* Landscape phones: split, don't stack a tall photo */
@media (orientation: landscape) and (max-height: 500px) {
  :root {
    --page: 56rem;
    --cta-h: min(58dvh, 13.5rem);
    --avatar: 3.6rem;
    --name: 1.45rem;
  }

  .main {
    display: grid;
    grid-template-columns: minmax(16rem, 22rem) minmax(16rem, 1fr);
    grid-template-areas:
      "profile teasers"
      "footer footer";
    column-gap: 1.15rem;
    padding-top: 0.6rem;
    padding-bottom: 1rem;
    align-items: start;
  }

  .profile {
    display: flex;
    flex-direction: column;
    grid-area: profile;
  }
  .header {
    flex-direction: row;
    text-align: left;
    gap: 0.75rem;
    justify-content: flex-start;
  }
  .header .hook {
    display: none;
  }
  .cta {
    margin-top: 0.55rem;
  }
  .social {
    margin-top: 0.55rem;
  }
  .teasers {
    grid-area: teasers;
    margin-top: 0;
  }
  .site-footer {
    grid-area: footer;
    margin-top: 0.6rem;
    text-align: left;
  }
  .cta-hint,
  .cta-chip {
    display: none;
  }
  .cta-copy {
    padding: 0.55rem 0.7rem 0.65rem;
  }
  .cta-title {
    font-size: 1.15rem;
  }
  .cta-pill {
    height: 2.35rem;
    margin-top: 0.45rem;
  }
  .sticky-wrap {
    display: none;
  }
  .teaser-media {
    aspect-ratio: 1 / 1;
  }
}

@media (hover: hover) and (pointer: fine) {
  .cta-media img,
  .teaser-media img {
    transition: transform var(--slow) ease-out;
  }
  .cta:hover .cta-media img,
  .teaser:hover .teaser-media img {
    transform: scale(1.04);
  }
  .social a:hover {
    background: var(--secondary);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-d1,
  .reveal-d2,
  .reveal-d3 {
    animation: none;
  }
  * {
    transition: none !important;
  }
}
