@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;700&display=swap");

/* Responsive-first guardrail: avoid fixed widths/heights in new sections; prefer fluid units and media-safe layouts. */
:root {
  --ink: #191919;
  --paper: #f8f7f5;
  --muted: #686868;
  --line: #dcd9d3;
  --max-width: 760px;
  --page-gutter: clamp(0.9rem, 2.6vw, 1.25rem);
  --tap-size: 44px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100svh;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

a {
  color: inherit;
}

img,
iframe {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  padding: 0.55rem 0.75rem;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.minimal-page,
.site-footer {
  width: min(var(--max-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.kicker,
.subtle {
  color: var(--muted);
}

.kicker {
  margin: 1rem 0 0.4rem;
  font-size: 0.75rem;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.6rem;
}

.lead {
  margin: 0 0 0.45rem;
  font-size: clamp(1rem, 2.4vw, 1.05rem);
  font-weight: 500;
}

.backstage-btn {
  display: inline-block;
  margin: 0.8rem 0 0.6rem;
  padding: 0.9rem 1.4rem;
  min-height: var(--tap-size);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.backstage-btn:hover,
.backstage-btn:focus-visible {
  background: #000;
}

.contact-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-size);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}

.card {
  margin: 10vh auto 3rem;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.2rem;
  text-align: center;
}

.portrait {
  display: block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin: 0 auto 0.8rem;
  border: 1px solid var(--line);
  background: #efefef;
}

.reel-preview {
  position: relative;
  display: block;
  width: 100%;
  max-width: min(100%, 320px);
  margin: 0 auto 0.9rem;
  padding: 0;
  border: 1px solid #d5d1ca;
  border-radius: 14px;
  background: linear-gradient(160deg, #202020, #0f0f0f);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  font: inherit;
  cursor: pointer;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.reel-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.95;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.22));
}

.reel-play-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.reel-play-icon::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.85rem;
  border-left: 0.9rem solid #fff;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
}

.reel-label {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-preview:hover,
.reel-preview:focus-visible {
  border-color: #111;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.reel-preview:hover .reel-thumb,
.reel-preview:focus-visible .reel-thumb {
  opacity: 1;
}

.reel-preview:focus-visible {
  outline: 2px solid #2b2b2b;
  outline-offset: 2px;
}

.reel-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.82);
  z-index: 1000;
}

.reel-modal.is-open {
  display: flex;
}

.reel-modal-inner {
  width: min(1100px, 95vw);
}

.reel-close {
  display: block;
  margin-left: auto;
  margin-bottom: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.reel-frame-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.reel-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 0.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 760px) {
  h1 {
    font-size: 2.3rem;
  }

  .card {
    margin-top: 2rem;
    padding: 1rem;
  }

  .backstage-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .kicker {
    letter-spacing: 0.12em;
  }

  .reel-label {
    font-size: 0.74rem;
  }
}

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