/* ============================================================
   Siren Glass — modeling agency
   Quiet luxury editorial style. Monochrome, hairlines, no
   gradients, no shadows, no rounded pill buttons.
   ============================================================ */

:root {
  --bg: #F7F5F2;
  --bg-card: #F1EEE9;
  --text: #181818;
  --text-secondary: #6E6E6E;
  --hairline: #D9D6D0;
  --placeholder: #E8E5DF;
  --placeholder-line: #B8B4AC;
  --accent: #B89B68;
  --whatsapp: #6FA98A;
  --telegram: #6E93C0;

  --container-max: 1600px;
  --side-pad: 6vw;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Archivo", Helvetica, Arial, sans-serif;

  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

/* ---------- type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.1; }
h3 { font-size: 1.75rem; line-height: 1.2; }

.eyebrow,
.nav-links a,
.label {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--text-secondary);
}

.small-print {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 40em;
}

/* ---------- hairline utilities ---------- */
.hr {
  border: none;
  border-top: 1px solid var(--hairline);
}

.border-top { border-top: 1px solid var(--hairline); }
.border-bottom { border-bottom: 1px solid var(--hairline); }

/* ---------- buttons / links ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--text);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  transition: border-color 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
}

.btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.text-link {
  position: relative;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  padding-bottom: 4px;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.4s var(--ease-editorial), color 0.35s var(--ease-soft);
}

.text-link:hover {
  color: var(--accent);
  background-size: 100% 1px;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.is-scrolled {
  background: var(--bg-card);
  border-bottom: 1px solid var(--hairline);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.wordmark-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
  background-image: linear-gradient(var(--text), var(--text));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.3s ease;
}

.nav-links a.is-active,
.nav-links a:hover {
  background-size: 100% 1px;
}

.nav-toggle {
  display: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--side-pad);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.mobile-nav.is-open {
  transform: translateY(0);
}

.mobile-nav .close-toggle {
  position: absolute;
  top: 32px;
  right: var(--side-pad);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
}

.mobile-nav ul li {
  border-top: 1px solid var(--hairline);
}

.mobile-nav ul li:last-child {
  border-bottom: 1px solid var(--hairline);
}

.mobile-nav ul a {
  display: block;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 1.75rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}

/* frame carries the real 100vh box (and the vertical centering) so the
   bleed photo's vh-based top/bottom always resolve against the actual
   viewport height, not against its own auto-sized content box; it also
   lines the photo up with the container's own edges instead of the raw
   viewport edge */
.hero-frame {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  column-gap: clamp(32px, 4vw, 64px);
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 88px var(--side-pad) 0;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.hero-text {
  max-width: 720px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--hairline);
  padding: 48px 48px 56px;
  container-type: inline-size;
}

.hero-inner {
  position: relative;
}

/* ---------- hero contact bar: WhatsApp / Telegram, mirrors the visual-caption box on the photo side ---------- */
.hero-contact-bar {
  display: flex;
  margin-bottom: 20px;
  border: 1px solid var(--hairline);
}

.hero-contact-cell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  transition: background-color 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
}

.hero-contact-cell + .hero-contact-cell {
  border-left: 1px solid var(--hairline);
}

.hero-contact-cell svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text);
  transition: transform 0.35s var(--ease-editorial), color 0.3s var(--ease-soft);
}

.hero-contact-cell:nth-child(1) { background: color-mix(in srgb, var(--whatsapp) 10%, var(--bg)); }
.hero-contact-cell:nth-child(2) { background: color-mix(in srgb, var(--telegram) 10%, var(--bg)); }

.hero-contact-cell:nth-child(1) svg { color: var(--whatsapp); }
.hero-contact-cell:nth-child(2) svg { color: var(--telegram); }

.hero-contact-cell:nth-child(1):hover { background: var(--whatsapp); color: var(--bg); }
.hero-contact-cell:nth-child(2):hover { background: var(--telegram); color: var(--bg); }

.hero-contact-cell:hover svg {
  color: var(--bg);
}

.hero-contact-cell:hover svg {
  transform: scale(1.1);
}

.hero .eyebrow,
.hero h1,
.hero-scroll-cue,
.hero-contact-bar,
.hero-bleed {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s var(--ease-editorial), transform 0.9s var(--ease-editorial);
}

.hero.is-loaded .hero-contact-bar { opacity: 1; transform: none; transition-delay: 0s; }
.hero.is-loaded .eyebrow { opacity: 1; transform: none; transition-delay: 0.08s; }
.hero.is-loaded h1 { opacity: 1; transform: none; transition-delay: 0.18s; }
.hero.is-loaded .hero-scroll-cue { opacity: 1; transform: none; transition-delay: 0.34s; }
.hero.is-loaded .hero-bleed {
  opacity: 1;
  transform: none;
  transition-delay: 0.16s;
  transition-duration: 1.1s;
}

.hero .eyebrow {
  display: block;
  margin-bottom: 36px;
}

.hero h1 {
  font-size: clamp(3rem, min(6vw, 14cqw), 6.5rem);
  line-height: 1.02;
  margin-bottom: 0;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

/* ---------- hero follow-up: description + status, reinforces the contact bar above ---------- */
.hero-follow {
  padding: 56px 0;
}

.hero-follow-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-follow-grid .hero-status {
  margin-left: auto;
}

/* ---------- hero contact: WhatsApp / Telegram icon buttons ---------- */
.hero-contact {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.hero-contact a {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--hairline);
  transition: border-color 0.3s var(--ease-soft), background-color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

.hero-contact a svg {
  width: 24px;
  height: 24px;
  color: var(--text);
  transition: color 0.3s var(--ease-soft), transform 0.35s var(--ease-editorial);
}

.hero-contact a:nth-child(1) { background: color-mix(in srgb, var(--whatsapp) 10%, var(--bg)); }
.hero-contact a:nth-child(2) { background: color-mix(in srgb, var(--telegram) 10%, var(--bg)); }

.hero-contact a:nth-child(1) svg { color: var(--whatsapp); }
.hero-contact a:nth-child(2) svg { color: var(--telegram); }

.hero-contact a:hover {
  transform: translateY(-3px);
}

.hero-contact a:nth-child(1):hover { background: var(--whatsapp); border-color: var(--whatsapp); }
.hero-contact a:nth-child(2):hover { background: var(--telegram); border-color: var(--telegram); }

.hero-contact a:hover svg {
  color: var(--bg);
  transform: scale(1.1);
}

.hero-contact a:active {
  transform: translateY(-1px);
}

/* ---------- floating contact: same buttons, pinned site-wide regardless of scroll ---------- */
.floating-contact {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 200;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease-editorial), transform 0.6s var(--ease-editorial);
}

.floating-contact.is-visible {
  opacity: 1;
  transform: none;
}

.floating-contact a {
  width: 50px;
  height: 50px;
  background: var(--bg);
}

.floating-contact a svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 620px) {
  .floating-contact {
    right: 16px;
    bottom: 16px;
    gap: 8px;
  }

  .floating-contact a {
    width: 46px;
    height: 46px;
  }

  .floating-contact a svg {
    width: 19px;
    height: 19px;
  }
}

/* ---------- hero status: quiet "we respond fast" signal, ties to the contact buttons ---------- */
.hero-status {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 26ch;
}

.hero-status-dot {
  position: relative;
  top: 6px;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
}

.hero-status-dot::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: status-pulse 2.6s var(--ease-soft) infinite;
}

.hero-status-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: var(--text-secondary);
}

.hero-status-text strong {
  font-weight: 500;
  color: var(--text);
}

@keyframes status-pulse {
  0% { transform: scale(0.6); opacity: 0.55; }
  80% { opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-scroll-cue {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-scroll-cue .line {
  width: 48px;
  height: 1px;
  background: var(--hairline);
}

/* ---------- hero bleed: dominant editorial portrait, aligned to the container edge ---------- */
.hero-bleed {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  min-width: 0;
}

/* ---------- caption box: index / name / role, cycles with the photo ---------- */
.hero-visual-caption {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding: 18px 24px;
  border: 1px solid var(--hairline);
  transition: opacity 0.45s var(--ease-soft);
  opacity: 1;
}

.hero-switcher-index {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
}

.hero-switcher-name {
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.2;
}

.hero-switcher-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  text-align: right;
}

/* ---------- mosaic wrap: hosts the photo box; must be flex so hero-visual-photo's
   flex:1 actually resolves to a definite height instead of the image's intrinsic aspect ---------- */
.hero-mosaic {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

/* ---------- photo box ---------- */
.hero-visual-photo {
  flex: 1;
  min-height: 0;
  display: flex;
  border: 1px solid var(--hairline);
  padding: 14px;
  overflow: hidden;
}

.hero-bleed-photo {
  flex: 1;
  min-width: 0;
  display: block;
  will-change: transform;
  transition: opacity 0.45s var(--ease-soft);
  opacity: 1;
}

.hero-bleed-photo .photo {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.hero-bleed.is-fading .hero-bleed-photo,
.hero-bleed.is-fading .hero-visual-caption {
  opacity: 0;
}

@media (max-width: 1280px) {
  .hero-bleed {
    max-width: none;
    height: 460px;
    margin-top: 48px;
  }

  .hero-bleed-photo {
    transform: none !important;
  }

  .hero {
    overflow: visible;
  }

  .hero-frame {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero-text {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .hero-text {
    padding: 32px 24px 40px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero-contact-cell {
    padding: 20px 12px;
    gap: 8px;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 380px) {
  .hero-contact-cell {
    padding: 16px 8px;
    gap: 6px;
    font-size: 0.625rem;
    letter-spacing: 0.06em;
  }
}

/* ============================================================
   PHOTOGRAPHY
   ============================================================ */
.photo {
  position: relative;
  overflow: hidden;
  background: var(--placeholder);
  aspect-ratio: 3 / 4;
}

.photo.wide {
  aspect-ratio: 16 / 9;
}

.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%) sepia(6%) contrast(1.04);
  transition: transform 0.9s var(--ease-editorial), filter 0.5s var(--ease-soft);
}

a:hover > .photo img {
  filter: grayscale(35%) sepia(6%) contrast(1.04);
}

.model-card:hover .photo img {
  transform: scale(1.035);
}

.photo .photo-index {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.photo-tone-a { background: #E8E5DF; }
.photo-tone-b { background: #E2DFD8; }
.photo-tone-c { background: #EDEAE4; }
.photo-tone-d { background: #E4E1DA; }

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-editorial), transform 0.9s var(--ease-editorial);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   FEATURED STRIP (home)
   ============================================================ */
.section {
  padding: 120px 0;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.model-card {
  display: block;
}

.model-card .photo {
  margin-bottom: 16px;
}

.model-card h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.model-card .role {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ============================================================
   ABOUT TEASER (home)
   ============================================================ */
.about-teaser {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.about-teaser .lede {
  margin-bottom: 32px;
}

/* ============================================================
   ROSTER GRID (models page)
   ============================================================ */
.roster-header {
  padding-top: 168px;
  padding-bottom: 56px;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  padding-bottom: 120px;
}

.filter-row {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.filter-row button {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.filter-row button:hover,
.filter-row button.is-active {
  color: var(--text);
  border-color: var(--text);
}

/* ============================================================
   MODEL DETAIL
   ============================================================ */
.model-detail {
  padding-top: 88px;
}

.model-detail-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 0 80px;
  padding: 64px 0 140px;
}

.model-detail-photo,
.model-detail-info {
  min-width: 0;
}

.model-detail-photo .photo {
  aspect-ratio: 3 / 4;
}

.model-detail-photo .photo.hero img {
  filter: grayscale(35%) sepia(6%) contrast(1.04);
}

.filmstrip {
  display: flex;
  gap: 1px;
  margin-top: 1px;
  background: var(--hairline);
}

.filmstrip-frame {
  flex: 1;
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--placeholder);
  border: none;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.4s var(--ease-soft);
}

.filmstrip-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%) sepia(6%) contrast(1.04);
}

.filmstrip-frame:hover {
  opacity: 0.8;
}

.filmstrip-frame.is-active {
  opacity: 1;
}

.filmstrip-frame .frame-index {
  position: absolute;
  left: 8px;
  bottom: 8px;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.model-detail-info {
  padding-top: 24px;
}

.model-detail-info h1 {
  margin-bottom: 8px;
}

.model-detail-info .role {
  margin-bottom: 48px;
  display: block;
}

.stat-list {
  border-top: 1px solid var(--hairline);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}

.stat-row .label {
  color: var(--text-secondary);
}

.stat-row .value {
  font-size: 0.875rem;
}

.model-detail-bio {
  margin-top: 48px;
  max-width: 42em;
}

.model-detail-contact {
  margin-top: 40px;
}

.back-link {
  display: inline-block;
  margin: 48px 0 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-header {
  padding-top: 168px;
  padding-bottom: 80px;
}

.page-header .eyebrow,
.page-header h1 {
  max-width: 720px;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 6fr 5fr;
  gap: 0 40px;
  padding-bottom: 80px;
}

.about-body .label {
  padding-top: 4px;
}

.about-body .copy {
  max-width: 38em;
}

.about-body .copy p + p {
  margin-top: 24px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 80px 0;
}

.values-grid .value-item {
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.values-grid .value-item h3 {
  margin-bottom: 16px;
}

.timeline-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  padding-top: 168px;
  padding-bottom: 140px;
  align-items: start;
}

.contact-grid > div {
  border: 1px solid var(--hairline);
  padding: 48px;
}

.contact-block + .contact-block {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
}

.contact-block a {
  font-family: var(--serif);
  font-size: 1.375rem;
  display: inline-block;
  margin-top: 8px;
}

.field {
  position: relative;
  margin-bottom: 40px;
}

.field label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.field input,
.field textarea {
  width: 100%;
  border-bottom: 1px solid var(--hairline);
  padding: 8px 0 12px;
  font-size: 1rem;
  transition: border-color 0.25s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea {
  resize: none;
  min-height: 96px;
}

/* ---------- success modal: shown after the booking form is submitted ---------- */
.success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 12px));
  margin: 0;
  width: calc(100% - 48px);
  max-width: 440px;
  border: 1px solid var(--hairline);
  background: var(--bg);
  padding: 48px;
  opacity: 0;
  transition: opacity 0.3s var(--ease-editorial), transform 0.3s var(--ease-editorial);
}

.success-modal.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.success-modal::backdrop {
  background: rgba(24, 18, 12, 0.4);
  opacity: 0;
  transition: opacity 0.3s var(--ease-editorial);
}

.success-modal.is-visible::backdrop {
  opacity: 1;
}

.success-modal h3 {
  font-size: 2rem;
  margin: 20px 0 16px;
}

.success-modal .lede {
  font-size: 1rem;
  margin-bottom: 32px;
}

.success-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.success-modal-close:hover {
  color: var(--text);
}

.success-modal-close:focus-visible,
.success-modal-ok:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 620px) {
  .success-modal {
    padding: 36px 28px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.footer-grid .wordmark {
  display: block;
  margin-bottom: 16px;
}

.footer-col .label {
  display: block;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.footer-col ul a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser { grid-template-columns: 1fr; gap: 40px; }
  .hero-follow-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-follow-grid .hero-status { margin-left: 0; }
  .model-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .filmstrip { overflow-x: auto; scroll-snap-type: x mandatory; }
  .filmstrip-frame { flex: none; width: 88px; scroll-snap-align: start; }
  .about-body { grid-template-columns: 1fr; }
  .about-body .label { padding-top: 0; margin-bottom: 12px; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  :root { --side-pad: 6.5vw; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .featured-grid { grid-template-columns: 1fr; }
  .roster-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
