/* ===========================================================
   Alex Michaels — Site Stylesheet v2
   Concept: warm, colorful, inviting — sans-serif, soft shapes
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@200;300;500;700;800&display=swap');

:root {
  --bg: #F7F6F1;
  --bg-deep: #EFEDE4;
  --panel: #FFFFFF;
  --ink: #223330;
  --ink-soft: rgba(34,51,48,0.68);

  --teal: #54867A;
  --teal-deep: #416A60;
  --blue: #578293;
  --green: #619257;
  --green-bright: #74A868;

  --line: rgba(34,51,48,0.12);
  --shadow: 0 8px 30px rgba(34,51,48,0.08);
  --shadow-soft: 0 2px 10px rgba(34,51,48,0.06);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,246,241,0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--ink);
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

nav.main-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

nav.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  color: var(--teal-deep);
  border-color: var(--green-bright);
}

/* ---------- Pill language toggle ---------- */

.lang-toggle {
  display: flex;
  align-items: stretch;
  background: var(--bg-deep);
  border-radius: 999px;
  padding: 4px;
  flex-shrink: 0;
  gap: 2px;
}

.lang-toggle a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  color: var(--ink-soft);
}

.lang-toggle a.active {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.lang-toggle a:not(.active):hover {
  color: var(--teal-deep);
  background: rgba(84,134,122,0.1);
}

/* ---------- Hero / Marquee ---------- */

.marquee {
  padding: 90px 32px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.marquee::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 640px;
  background:
    radial-gradient(circle at 22% 30%, rgba(84,134,122,0.28), transparent 55%),
    radial-gradient(circle at 78% 20%, rgba(87,130,147,0.24), transparent 55%),
    radial-gradient(circle at 50% 70%, rgba(97,146,87,0.22), transparent 55%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.marquee .wrap { position: relative; z-index: 1; }

.marquee .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(84,134,122,0.12);
  padding: 7px 18px;
  border-radius: 999px;
  margin: 0 0 24px;
}

.marquee h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.98;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.marquee h1 em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(100deg, var(--teal-deep), var(--blue) 55%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.role-strip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 20px 0 36px;
}

.role-strip .divider {
  color: var(--green-bright);
  margin: 0 10px;
  font-weight: 800;
}

.hero-photo {
  max-width: 260px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.hero-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(34,51,48,0.35);
  text-align: center;
  padding: 20px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  display: inline-block;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: var(--panel);
}

.btn-ghost:hover { border-color: var(--teal); color: var(--teal-deep); }

/* ---------- Sections ---------- */

.section {
  padding: 68px 32px;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  margin: 0;
  color: var(--ink);
}

.section-head .tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.reel-frame {
  aspect-ratio: 16/9;
  background: var(--panel);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(34,51,48,0.4);
  text-align: center;
  padding: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- Bio ---------- */

.bio {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.bio p {
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--ink);
}

/* ---------- Cast list (credits) ---------- */

.cast-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cast-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  padding: 16px 22px;
  align-items: baseline;
  background: var(--panel);
  border-radius: 14px;
  border-left: 4px solid var(--green-bright);
  box-shadow: var(--shadow-soft);
}

.cast-row .role {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.cast-row .prod {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--teal-deep);
  text-align: right;
}

.cast-row .year {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: right;
}

/* ---------- Links strip ---------- */

.links-strip {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.link-chip {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px 22px;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  color: var(--ink);
}

.link-chip:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  transform: translateY(-1px);
}

/* ---------- Footer ---------- */

footer.site-footer {
  padding: 28px 32px 36px;
  text-align: center;
}

footer.site-footer p {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ---------- Stub / interior pages ---------- */

.page-head {
  padding: 60px 32px 36px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-head .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(84,134,122,0.12);
  padding: 7px 18px;
  border-radius: 999px;
  margin: 0 0 16px;
}

.page-head h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin: 0;
  color: var(--ink);
}

.placeholder-note {
  max-width: 640px;
  margin: 40px auto;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 0 32px;
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .header-inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px 20px; }
  nav.main-nav { gap: 14px 18px; justify-content: center; }
  .lang-toggle { align-self: center; }
  .marquee { padding: 60px 20px 44px; }
  .section { padding: 52px 20px; }
  .cast-row { grid-template-columns: 1fr; gap: 4px; }
  .cast-row .prod, .cast-row .year { text-align: left; }
}

/* ---------- Split hero (v3) ---------- */

.hero-split {
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
}

.hero-split::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 600px;
  background:
    radial-gradient(circle at 15% 30%, rgba(84,134,122,0.24), transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(87,130,147,0.20), transparent 55%),
    radial-gradient(circle at 55% 80%, rgba(97,146,87,0.18), transparent 55%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 56px;
  align-items: center;
}

.hero-photo-col .hero-photo {
  margin: 0;
  max-width: 100%;
}

.hero-content-col {
  text-align: left;
}

.hero-content-col .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(84,134,122,0.12);
  padding: 7px 18px;
  border-radius: 999px;
  margin: 0 0 22px;
}

.hero-content-col h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.98;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-content-col h1 em {
  font-style: normal;
  font-weight: 800;
  color: var(--blue);
}

.hero-content-col h1 em .small-caps {
  text-transform: uppercase;
  font-size: 0.72em;
  letter-spacing: 0.04em;
  margin-left: 0.03em;
}

.hero-content-col .role-strip {
  text-align: left;
  margin: 0 0 24px;
  font-size: 1rem;
}

.hero-content-col .hero-bio {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 46ch;
  margin: 0;
}

.hero-links-row {
  padding: 8px 32px 28px;
  position: relative;
  z-index: 1;
}

.hero-links-row .links-strip {
  justify-content: center;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-content-col { text-align: center; }
  .hero-content-col .hero-bio { margin: 0 auto; }
  .hero-content-col .role-strip { text-align: center; }
  .hero-photo-col .hero-photo { max-width: 320px; margin: 0 auto; }
}

/* ---------- Agent / booking block ---------- */

.agent-block {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 40px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 46ch;
}

.agent-block .label {
  display: block;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 8px;
}

.agent-block strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.agent-block a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.agent-block a:hover {
  color: var(--teal-deep);
}

.agent-block.centered {
  text-align: center;
  margin: 0 auto 28px;
}

@media (max-width: 860px) {
  .hero-content-col .agent-block { text-align: center; }
}

/* ---------- CV downloads + preview ---------- */

.cv-downloads {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cv-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--panel);
  border: 1.5px solid var(--line);
  color: var(--ink);
  transition: border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.15s;
}

.cv-download-btn:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.cv-download-btn .flag {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(84,134,122,0.12);
  padding: 4px 9px;
  border-radius: 999px;
}

.cv-preview {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.cv-preview img {
  width: 100%;
  display: block;
}

/* ---------- CV download link (v2, single link) ---------- */

.cv-download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal-deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.cv-download-link:hover {
  color: var(--teal);
}

.cv-download-link .icon {
  font-size: 1.1rem;
  text-decoration: none;
}

.cv-downloads.single {
  margin-bottom: 28px;
}

/* ---------- Video page ---------- */

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  background: var(--panel);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 20px;
}

.reel-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 16px 0 6px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.reel-item p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.clips-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 56px 0 24px;
  color: var(--ink);
  text-align: center;
}

.clips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.clip-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin: 14px 0 6px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.clip-item p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.lang-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(84,134,122,0.12);
  padding: 3px 8px;
  border-radius: 999px;
  vertical-align: middle;
}

@media (max-width: 800px) {
  .reels-grid { grid-template-columns: 1fr; }
  .clips-grid { grid-template-columns: 1fr; }
}

/* ---------- Audio page ---------- */

.audio-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.audio-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 4px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.audio-item p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 12px;
}

.audio-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.audio-embed iframe {
  display: block;
  width: 100%;
}

/* ---------- Contact page ---------- */

.contact-block {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.contact-routing {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 40px;
}

.contact-meta {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 32px 0 0;
}

.contact-divider {
  border: none;
  border-top: 1px solid var(--line);
  max-width: 200px;
  margin: 36px auto;
}

/* ---------- Contact page (v2, side-by-side blocks) ---------- */

.contact-columns {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 40px;
}

.contact-columns .agent-block {
  max-width: 260px;
  flex: 1 1 260px;
}

.contact-location {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-align: center;
  margin: 0 0 28px;
}

@media (max-width: 640px) {
  .contact-columns { flex-direction: column; align-items: center; gap: 32px; }
}

/* ---------- Photo gallery (masonry + lightbox) ---------- */

.masonry {
  column-count: 3;
  column-gap: 18px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  cursor: zoom-in;
  background: var(--panel);
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.masonry-item:hover img {
  transform: scale(1.03);
}

.photo-credit {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 36px;
  line-height: 1.8;
}

.photo-credit a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Lightbox */

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 28, 26, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

@media (max-width: 860px) {
  .masonry { column-count: 2; }
}

@media (max-width: 520px) {
  .masonry { column-count: 1; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.2rem; }
}
