/* ============================================================
   Savrli Studios. Cream with cinematic moments.
   Same Apple-restraint design system as the umbrella.
   Single typeface: General Sans. Serif only for the wordmark.
   ============================================================ */

:root {
  --bg: #FAFAF7;
  --bg-warm: #F5F1EA;
  --ink: #1D1D1F;
  --ink-soft: #6E6E73;
  --ink-faint: #A1A1A6;
  --rule: rgba(0, 0, 0, 0.08);
  --rule-strong: rgba(0, 0, 0, 0.14);
  --accent: #D87B2A;
  --accent-deep: #B5621C;
  --accent-soft: rgba(216, 123, 42, 0.12);

  --dark-bg: #0D0C0B;
  --dark-surface: #161513;
  --dark-ink: #F5F0E8;
  --dark-ink-soft: #B9B3A8;
  --dark-rule: rgba(255, 255, 255, 0.10);

  --font-display: 'General Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;

  --max: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-pad-y: clamp(80px, 12vw, 140px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}
a:hover { color: var(--accent); }

p { margin: 0 0 16px; }
ul, ol { margin: 0 0 16px; padding-left: 22px; }

button { font-family: inherit; }

::selection { background: var(--accent); color: #fff; }

/* No italics anywhere */
em, i, address { font-style: normal; }

/* ============================================================
   HEADER. Quiet, sticky, hairline.
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.site-header.scrolled {
  border-bottom-color: var(--rule);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.wordmark img,
.wordmark svg {
  height: 24px;
  width: auto;
}

.site-header nav ul {
  display: flex;
  gap: clamp(10px, 1.6vw, 22px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.site-header nav a.nav-current,
.site-header nav a[aria-current="page"] {
  color: var(--accent);
}

@media (max-width: 760px) {
  .site-header nav ul { gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
  .site-header nav a { font-size: 13px; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 18px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--no-rule::after { display: none; }

.h-display {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--ink);
}
.h-display em { font-style: normal; }

.h-section {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--ink);
}

.h-card {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}

.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 0 30px;
  font-weight: 400;
}

.text-link {
  display: inline-block;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.text-link:hover { color: var(--accent-deep); }

/* ============================================================
   LAYOUT
   ============================================================ */
main { display: block; }
section { padding: var(--section-pad-y) var(--gutter); }
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.hr-rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ============================================================
   REVEAL. Apple-quiet fade, 800ms.
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 800ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; transform: none; opacity: 1 !important; }
}

/* ============================================================
   HERO. Cinematic dark moment. Sizzle reel.
   ============================================================ */
.studios-hero {
  position: relative;
  min-height: clamp(560px, 80vh, 820px);
  background: var(--dark-bg);
  color: var(--dark-ink);
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: flex-end;
}
.studios-hero-video,
.studios-hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.studios-hero-video { z-index: 1; }
.studios-hero::after {
  /* graded overlay */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(13,12,11,0.30) 0%, rgba(13,12,11,0.10) 35%, rgba(13,12,11,0.65) 75%, rgba(13,12,11,0.92) 100%);
}
.studios-hero-text {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: var(--section-pad-y) var(--gutter);
}
.studios-hero .eyebrow {
  color: var(--dark-ink-soft);
}
.studios-hero .h-display {
  color: var(--dark-ink);
  max-width: 18ch;
  margin-bottom: 22px;
}
.studios-hero-subhead {
  color: var(--dark-ink);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
  max-width: 540px;
  margin: 0 0 28px;
  font-weight: 400;
}
.studios-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: #fff;
}
.btn-ghost-dark {
  background: transparent;
  color: var(--dark-ink);
  border-color: rgba(255,255,255,0.30);
}
.btn-ghost-dark:hover {
  border-color: var(--dark-ink);
  background: rgba(255,255,255,0.06);
  color: var(--dark-ink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

/* Broadcasting badge (animated dot) */
.broadcasting-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark-ink);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 22px;
}
.broadcasting-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(232,75,43,0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(232,75,43,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(232,75,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,75,43,0); }
}
@media (prefers-reduced-motion: reduce) {
  .broadcasting-badge::before { animation: none; }
}

/* ============================================================
   STUDIO STATEMENT
   ============================================================ */
.studio-statement {
  background: var(--bg);
}
.studio-statement .section-inner {
  max-width: 920px;
}
.studio-statement-line {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.018em;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 32px;
}
.studio-statement-line strong {
  color: var(--ink);
  font-weight: 600;
}

/* ============================================================
   SLATE STRIP (homepage)
   ============================================================ */
.slate-strip {
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.slate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.slate-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 180ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.slate-card:hover {
  border-color: var(--rule-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.15);
}
.slate-card-poster {
  aspect-ratio: 16 / 10;
  background: #efece7;
  position: relative;
  overflow: hidden;
}
.slate-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slate-card-body {
  padding: 20px 22px 24px;
}
.slate-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 10px;
}
.slate-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-soft);
}
.slate-status--production::before { background: var(--accent); }
.slate-status--coming::before     { background: #E0A227; }
.slate-status--development::before { background: #A57DD1; }
.slate-status--casting::before    { background: #2BAF6A; }

.slate-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.slate-tagline {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.slate-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 12px;
  color: var(--ink-faint);
  margin: 0;
}
.slate-meta span { white-space: nowrap; }
.slate-meta span + span::before {
  content: "·";
  margin-right: 10px;
  color: var(--ink-faint);
}

/* ============================================================
   FOUNDER BLOCK
   ============================================================ */
.founder-block {
  background: var(--bg-warm);
}
.founder-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.4fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
@media (max-width: 760px) {
  .founder-grid { grid-template-columns: 1fr; }
}
.founder-image img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.founder-text .h-section { margin-bottom: 24px; }
.founder-bio {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 14px;
  max-width: 56ch;
}
.founder-credit {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 18px 0 0;
}

/* ============================================================
   PARTNERSHIP CTAs
   ============================================================ */
.partnerships {
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--rule);
}
.partnership-card {
  padding: 36px 32px 40px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.partnership-card:last-child { border-right: none; }
@media (max-width: 760px) {
  .partnership-card { border-right: none; }
}
.partnership-card .eyebrow { color: var(--accent); }
.partnership-card .h-card {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 20ch;
}
.partnership-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* ============================================================
   PAGE HERO (non-home pages, light)
   ============================================================ */
.page-hero {
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(40px, 6vw, 60px);
}
.page-hero .section-inner {
  max-width: var(--max);
}
.page-hero .h-display {
  max-width: 22ch;
}

/* ============================================================
   SLATE PAGE
   ============================================================ */
.slate-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}
.slate-entry {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(40px, 6vw, 64px) 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.slate-entry:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}
.slate-entry:nth-child(even) .slate-entry-image {
  order: 2;
}
@media (max-width: 760px) {
  .slate-entry,
  .slate-entry:nth-child(even) { grid-template-columns: 1fr; }
  .slate-entry:nth-child(even) .slate-entry-image { order: 0; }
}
.slate-entry-image img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.slate-entry-text .h-section {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 14px;
}
.slate-entry-logline {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 50ch;
}
.slate-entry-meta {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px 18px;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.slate-entry-meta dt {
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  padding-top: 3px;
}
.slate-entry-meta dd {
  margin: 0;
  color: var(--ink);
}

/* ============================================================
   WATCH PAGE (screening room) - dark
   ============================================================ */
.watch-room {
  background: var(--dark-bg);
  color: var(--dark-ink);
  min-height: 100vh;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(80px, 10vw, 120px);
}
.watch-room .eyebrow,
.watch-room .h-display,
.watch-room .lede,
.watch-room .h-section,
.watch-room .h-card {
  color: var(--dark-ink);
}
.watch-room .lede,
.watch-room .eyebrow {
  color: var(--dark-ink-soft);
}
.watch-room .section-inner { max-width: var(--max); }

.watch-stage {
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 36px 0 28px;
  position: relative;
}
.watch-stage video,
.watch-stage iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.watch-current-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}
.watch-current-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.watch-current-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--dark-ink);
  margin: 0;
}
.watch-rail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.watch-rail li { margin: 0; }
.watch-thumb {
  display: block;
  width: 100%;
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
  text-align: left;
  color: var(--dark-ink);
}
.watch-thumb:hover,
.watch-thumb.is-active {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.watch-thumb-poster {
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.watch-thumb-poster img {
  width: 100%; height: 100%; object-fit: cover;
}
.watch-thumb-meta {
  padding: 12px 14px 14px;
}
.watch-thumb-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-ink-soft);
  margin: 0 0 4px;
}
.watch-thumb-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-ink);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ============================================================
   PITCH PAGE
   ============================================================ */
.pitch-lanes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.pitch-lane {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 180ms ease;
}
.pitch-lane:hover { border-color: var(--rule-strong); }
.pitch-lane .eyebrow { color: var(--accent); margin-bottom: 12px; }
.pitch-lane h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0 0 12px;
  color: var(--ink);
}
.pitch-lane p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.pitch-lane .pitch-link {
  margin-top: auto;
  font-weight: 500;
  color: var(--accent);
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  padding-bottom: 1px;
}
.pitch-lane .pitch-link:hover { color: var(--accent-deep); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--rule);
}
.about-pillar {
  padding: 32px 28px 36px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.about-pillar:last-child { border-right: none; }
@media (max-width: 760px) {
  .about-pillar { border-right: none; }
}
.about-pillar .eyebrow {
  color: var(--accent);
  margin-bottom: 14px;
}
.about-pillar h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0 0 10px;
}
.about-pillar p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.about-where {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.about-where-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 24px;
  font-size: 16px;
  color: var(--ink);
}
.about-where-list span {
  background: var(--bg-warm);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-rows {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  border-top: 1px solid var(--rule);
}
.contact-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
@media (max-width: 700px) {
  .contact-row { grid-template-columns: 1fr; gap: 8px; }
}
.contact-row .eyebrow { margin-bottom: 0; }
.contact-row > div > a:not(.text-link) {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  letter-spacing: -0.01em;
  display: inline-block;
}
.contact-row > div > a:not(.text-link):hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.contact-note {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: 60px var(--gutter) 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
.footer-brand .footer-wordmark {
  height: 24px;
  width: auto;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 8px;
  max-width: 36ch;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink);
}
.footer-bottom {
  max-width: var(--max);
  margin: 50px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-soft);
}
.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}
.footer-social li { margin: 0; }
.footer-social a {
  font-size: 13px;
  color: var(--ink-soft);
  transition: color 200ms ease;
}
.footer-social a:hover { color: var(--accent); }

/* ============================================================
   Wordmark logo (Studios variant)
   ============================================================ */
.wordmark-studios {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.wordmark-studios .wm-s { color: var(--accent); }
.wordmark-studios .wm-savrli { color: var(--ink); }
.wordmark-studios .wm-studios {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  top: -2px;
}
/* Dark mode wordmark (for hero overlay nav, if needed later) */
.studios-hero .wordmark-studios .wm-savrli { color: var(--dark-ink); }
.studios-hero .wordmark-studios .wm-studios { color: var(--dark-ink-soft); }

/* ============================================================
   SUB-PAGE COMPONENTS (Houses, Creators, Apply, Ambassadors,
   Tour, Casting, Careers, 404)
   ============================================================ */

/* Inner section wrapper — many new pages use plain `.section` */
.section {
  padding: clamp(56px, 8vw, 96px) var(--gutter);
}
.section-soft {
  background: var(--bg-soft, #F2EFE7);
}
.section-cta {
  text-align: left;
  padding: clamp(72px, 9vw, 120px) var(--gutter);
}
.section-cta .h-section {
  max-width: 24ch;
}
.section-cta .section-lede {
  max-width: 56ch;
}
.section-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 64ch;
  line-height: 1.5;
  margin: 18px 0 0;
}
.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* PAGE HERO with background image (Houses, Creators) */
.page-hero.hero-image {
  position: relative;
  padding-top: clamp(180px, 22vw, 280px);
  padding-bottom: clamp(80px, 10vw, 140px);
  overflow: hidden;
  color: var(--dark-ink);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13,12,11,0.55) 0%,
    rgba(13,12,11,0.25) 35%,
    rgba(13,12,11,0.70) 80%,
    rgba(13,12,11,0.85) 100%);
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-hero-inner-overlay { color: var(--dark-ink); }
.page-hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  margin-top: 20px;
  max-width: 56ch;
  color: var(--ink-soft);
  font-weight: 400;
}
.page-hero-inner-overlay .page-hero-sub { color: rgba(245, 240, 232, 0.85); }
.on-dark { color: var(--dark-ink); }
.eyebrow-on-dark { color: rgba(245, 240, 232, 0.78); }

/* FEATURE GRID (Houses' What is Included, Creators' Value Props,
   Ambassadors' What you Get, Careers' How we Hire, Apply's What Happens Next) */
.feature-grid {
  display: grid;
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 44px;
}
.feature-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .feature-grid-3 { grid-template-columns: 1fr; }
}
.feature {
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.feature h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.feature p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* SECTION FEATURE (Bring your show) */
.section-feature {
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: clamp(72px, 9vw, 112px);
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.feature-grid-tight {
  margin-top: clamp(36px, 4.5vw, 56px);
  gap: clamp(28px, 3vw, 40px);
}
.feature-num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin: 0 0 14px;
  line-height: 1;
}

/* LADDER (Houses) */
.ladder {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ladder li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  align-items: flex-start;
}
.ladder li:last-child { border-bottom: 1px solid var(--rule); }
.ladder-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
}
.ladder h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.ladder p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 64ch;
}
@media (max-width: 700px) {
  .ladder li { grid-template-columns: 1fr; gap: 8px; }
  .ladder-num { font-size: 22px; }
}

/* CHIP GRID — Houses & Creators cities, About already uses this from earlier */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.city-chip {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
}

/* TRACK GRID (Creators) */
.track-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
  margin-top: 44px;
}
@media (max-width: 800px) {
  .track-grid { grid-template-columns: 1fr; }
}
.track-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.track-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.track-card h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.track-tagline {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.track-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex: 1;
}
.track-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}
.track-link:hover { color: var(--accent-deep); }

/* APPLY FORM */
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 680px;
  margin: 32px 0 0;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row-split {
  flex-direction: row;
  gap: 20px;
}
.form-row-split > div { flex: 1; display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 600px) {
  .form-row-split { flex-direction: column; }
}
.form-row label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  width: 100%;
  box-sizing: border-box;
  transition: border-color 200ms ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.form-note {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  max-width: 52ch;
}

/* ASK LIST (Ambassadors) */
.ask-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  max-width: 72ch;
}
.ask-list li {
  padding: 18px 0 18px 28px;
  border-top: 1px solid var(--rule);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  position: relative;
}
.ask-list li:last-child { border-bottom: 1px solid var(--rule); }
.ask-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* TOUR LIST */
.tour-list {
  list-style: none;
  padding: 0;
  margin: 44px 0 0;
}
.tour-list li {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.tour-list li:last-child { border-bottom: 1px solid var(--rule); }
@media (max-width: 700px) {
  .tour-list li { grid-template-columns: 1fr; gap: 8px; }
}
.tour-city h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.tour-city p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}
.tour-dates {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
@media (max-width: 700px) {
  .tour-dates { align-items: flex-start; }
}
.tour-window {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* STATUS CHIPS (Tour + Casting), reuse color tokens from slate page */
.tour-status,
.status-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.status-production { background: rgba(217, 64, 48, 0.12); color: var(--accent); }
.status-coming     { background: rgba(224, 162, 39, 0.15); color: #B07A0F; }
.status-development{ background: rgba(165, 125, 209, 0.18); color: #6C4FA0; }
.status-casting    { background: rgba(43, 175, 106, 0.15); color: #1E8A50; }

/* CASTING CARDS */
.casting-card {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.casting-card:last-of-type { border-bottom: 1px solid var(--rule); }
.casting-head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.casting-head .track-eyebrow { margin: 0; }
.casting-head h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  flex: 1;
  min-width: 240px;
}
.casting-card > p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 72ch;
}
.casting-meta {
  display: grid;
  gap: 12px;
}
.casting-meta > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 700px) {
  .casting-meta > div { grid-template-columns: 1fr; gap: 4px; }
}
.meta-key {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.meta-val { font-size: 14px; color: var(--ink); line-height: 1.5; }

/* CAREERS */
.careers-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: 24px;
}
.careers-meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 700px) {
  .careers-meta { grid-template-columns: 1fr; }
}

.role-card {
  padding: 36px 0;
  border-top: 1px solid var(--rule);
}
.role-card:last-of-type { border-bottom: 1px solid var(--rule); }
.role-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.role-head h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
}
.role-meta {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.role-card > p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 72ch;
}
.role-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.role-bullets li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.role-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* 404 PAGE */
.not-found {
  padding: clamp(100px, 15vw, 200px) var(--gutter) clamp(80px, 10vw, 120px);
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.not-found-links {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.not-found-links a {
  font-size: 15px;
}

/* ============== HIRE PAGE — form extras ============== */

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.form-fieldset legend {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 12px;
  padding: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.check-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.check-pill:hover {
  border-color: var(--accent);
}
.check-pill input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.check-pill:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft, rgba(216, 123, 42, 0.12));
}

.form-helper {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 6px 0 0;
}

.form-success {
  max-width: 640px;
  padding: 48px 0 16px;
}
.form-success .h-section {
  margin: 8px 0 16px;
}

@media (max-width: 640px) {
  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   SERVICES (homepage repositioning, May 2026)
   ============================================================ */
.services {
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color 180ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.service-card:hover {
  border-color: var(--rule-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.12);
}
.service-card--featured {
  grid-column: span 3;
  background: linear-gradient(180deg, rgba(216,123,42,0.07) 0%, rgba(216,123,42,0.02) 100%);
  border-color: rgba(216,123,42,0.30);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-areas:
    "num     list"
    "heading list"
    "body    list";
  column-gap: 44px;
  row-gap: 0;
  padding: 36px 34px 38px;
  align-items: start;
}
.service-card--featured .service-num { grid-area: num; color: var(--accent-deep); margin-bottom: 12px; }
.service-card--featured .service-h {
  grid-area: heading;
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: 14px;
}
.service-card--featured .service-body {
  grid-area: body;
  font-size: 16.5px;
  max-width: 52ch;
}
.service-card--featured .service-list {
  grid-area: list;
  margin-top: 0;
  align-self: center;
}
.service-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.service-h {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
}
.service-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.service-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 2px;
  background: var(--accent);
}
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
    grid-template-areas: "num" "heading" "body" "list";
    row-gap: 8px;
  }
  .service-card--featured .service-list { margin-top: 14px; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card--featured { grid-column: span 1; padding: 28px 24px 30px; }
  .service-card { padding: 24px 22px 26px; }
}

/* ============================================================
   UGC CALLOUT (homepage)
   ============================================================ */
.ugc-callout {
  background: var(--bg-warm);
}
.ugc-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.ugc-text .h-section { margin-bottom: 18px; }
.ugc-text .lede { margin-bottom: 22px; }
.ugc-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.ugc-list li {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.ugc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 2px;
  background: var(--accent);
}
.ugc-list li strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 4px;
}
.ugc-cta { margin: 0; }
.ugc-marquee {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
  aspect-ratio: 1 / 1.05;
}
.ugc-tile {
  border-radius: 14px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.005em;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.2;
  min-height: 0;
}
.ugc-tile-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 16px;
}
.ugc-tile--1 { background: linear-gradient(150deg, #D87B2A 0%, #B5621C 100%); }
.ugc-tile--2 { background: linear-gradient(150deg, #E0A227 0%, #C28316 100%); }
.ugc-tile--3 { background: linear-gradient(150deg, #B5621C 0%, #8A4310 100%); }
.ugc-tile--4 { background: linear-gradient(150deg, #E68A3D 0%, #C2691E 100%); }
.ugc-tile--5 { background: linear-gradient(150deg, #C2691E 0%, #934A0F 100%); }
.ugc-tile--6 { background: linear-gradient(150deg, #EFB35C 0%, #D88B2A 100%); }
@media (max-width: 860px) {
  .ugc-grid { grid-template-columns: 1fr; gap: 28px; }
  .ugc-marquee { aspect-ratio: 16 / 11; max-width: 100%; }
}
@media (max-width: 520px) {
  .ugc-marquee { aspect-ratio: 4 / 5; }
  .ugc-tile { padding: 18px 18px 20px; }
}

/* ============================================================
   CLIENTS (who we work with)
   ============================================================ */
.clients {
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.clients-grid {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.client-cell {
  padding: 26px 26px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: transparent;
}
.client-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 10px;
}
.client-body {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 860px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .clients-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   START A PROJECT (homepage CTA)
   ============================================================ */
.start-project {
  background: var(--bg-warm);
}
.start-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.start-text .eyebrow { margin-bottom: 14px; }
.start-text .h-section { margin-bottom: 14px; }
.start-text .lede { margin: 0; }
.start-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.start-actions .btn { width: 100%; text-align: center; }
@media (max-width: 760px) {
  .start-card { grid-template-columns: 1fr; }
  .start-actions { flex-direction: column; }
}
