/* Larchmont Comedy Series — static rebuild
   Palette + type pulled from the live Lovable preview */

:root {
  --cream: #f6f2ea;
  --ink: #110c09;
  --orange: #f75125;
  --off-white: #faf8f5;
  --muted: rgba(17, 12, 9, 0.55);
  --border: #110c09;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.display {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -0.01em;
  margin: 0;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.dot {
  display: inline-block;
  width: 0.22em;
  height: 0.22em;
  background: var(--orange);
  margin-left: 0.06em;
  vertical-align: baseline;
  transform: translateY(-0.05em);
}

section {
  padding: 56px 0;
}

@media (max-width: 720px) {
  section {
    padding: 40px 0;
  }
}

/* ---------- Nav ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--off-white);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav-brand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  white-space: nowrap;
}

.nav-links a.ticket-link {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  background: none;
  border: 2px solid var(--off-white);
  color: var(--off-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
}

@media (max-width: 800px) {
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(250, 248, 245, 0.15);
  }
  .nav-toggle {
    display: block;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--ink);
  padding: 18px 28px;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--off-white);
  box-shadow: 8px 8px 0 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-primary:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 0 var(--ink);
}

.btn-secondary {
  background: var(--ink);
  color: var(--off-white);
  border-color: var(--ink);
  box-shadow: 8px 8px 0 0 var(--orange);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.btn-secondary:hover {
  background: transparent;
  color: var(--ink);
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 0 var(--orange);
}

@media (max-width: 560px) {
  .btn {
    font-size: 16px;
    padding: 14px 20px;
  }
}

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

.hero {
  padding-top: 64px;
  padding-bottom: 0;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 104px);
  margin-bottom: 40px;
}

.hero h1 span {
  display: block;
}

.hero-media {
  position: relative;
  border: 2px solid var(--ink);
}

.hero-media img {
  width: 100%;
  height: clamp(320px, 55vw, 620px);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(17, 12, 9, 0) 30%, rgba(17, 12, 9, 0.86) 100%);
}

.hero-overlay-inner {
  padding: 40px;
  color: var(--off-white);
  max-width: 640px;
}

.hero-overlay-inner h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 18px;
}

.hero-overlay-inner p {
  color: rgba(250, 248, 245, 0.85);
  font-size: 17px;
  margin: 0 0 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 56px;
}

@media (max-width: 720px) {
  .hero-overlay {
    position: static;
    background: none;
  }
  .hero-overlay-inner {
    color: var(--ink);
    padding: 24px 0 0;
  }
  .hero-overlay-inner p {
    color: var(--muted);
  }
}

/* ---------- Badge strip ---------- */

.badge-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
}

.badge-strip div {
  padding: 30px 24px;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: clamp(16px, 2.2vw, 24px);
  text-align: center;
  border-left: 2px solid var(--ink);
}

.badge-strip div:first-child {
  border-left: none;
}

.badge-strip div:nth-child(1) {
  background: var(--ink);
  color: var(--off-white);
}

.badge-strip div:nth-child(2) {
  background: var(--cream);
  color: var(--ink);
}

.badge-strip div:nth-child(3) {
  background: var(--orange);
  color: var(--ink);
}

@media (max-width: 640px) {
  .badge-strip {
    grid-template-columns: 1fr;
  }
  .badge-strip div {
    border-left: none;
    border-top: 2px solid var(--ink);
  }
  .badge-strip div:first-child {
    border-top: none;
  }
}

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

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 2px solid var(--ink);
  overflow: hidden;
  cursor: pointer;
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

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

.play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.play-badge svg {
  width: 72px;
  height: 72px;
}

/* ---------- Story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.story-grid p {
  margin: 0;
}

.story-grid a {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
  margin-top: 56px;
}

.feature-grid div {
  padding: 24px;
  border-left: 2px solid var(--ink);
}

.feature-grid div:first-child {
  border-left: none;
}

.feature-grid h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 8px;
}

.feature-grid p {
  margin: 0;
}

@media (max-width: 800px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid div:nth-child(3) {
    border-left: none;
  }
}

@media (max-width: 500px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid div {
    border-left: none;
    border-top: 2px solid var(--ink);
  }
  .feature-grid div:first-child {
    border-top: none;
  }
}

/* ---------- Cards (shared) ---------- */

.card {
  border: 2px solid var(--ink);
  background: var(--cream);
}

/* ---------- Comedians ---------- */

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

.comedian-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
}

.comedian-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo Black", sans-serif;
  font-size: 40px;
}

.comedian-card .info {
  padding: 20px;
}

.comedian-card h3 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 0 6px;
}

.comedian-card .handle {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 4px;
}

.comedian-card .credit {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.section-note {
  margin-top: 32px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .comedian-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---------- Past shows ---------- */

.intro-text {
  max-width: 640px;
  color: var(--muted);
  margin-top: 20px;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.shows-grid .card {
  padding: 28px;
}

.shows-grid .eyebrow {
  color: var(--orange);
  margin-bottom: 10px;
}

.shows-grid h3 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  margin: 0 0 12px;
}

.shows-grid p {
  color: var(--muted);
  margin: 0 0 16px;
}

.press-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

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

/* ---------- Testimonial ---------- */

.testimonial {
  background: var(--ink);
  color: var(--off-white);
  padding: 56px 48px;
}

.testimonial .eyebrow {
  color: var(--orange);
}

.testimonial blockquote {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  margin: 0 0 20px;
}

.testimonial blockquote .accent {
  color: var(--orange);
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.7);
}

@media (max-width: 640px) {
  .testimonial {
    padding: 40px 24px;
  }
}

/* ---------- Charity ---------- */

.charity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.charity-grid .card {
  padding: 32px;
}

.charity-grid p {
  margin: 0 0 16px;
}

.charity-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.charity-panel {
  background: var(--orange);
  color: var(--off-white);
  border: 2px solid var(--ink);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.charity-panel h3 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.charity-panel span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.85);
}

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

/* ---------- Producers ---------- */

.producer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.producer-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 8px 8px 0 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.producer-card:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 0 var(--ink);
}

.producer-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border: 2px solid var(--ink);
  flex-shrink: 0;
}

.producer-card .role {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.producer-card h3 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  margin: 0 0 4px;
}

.producer-card .handle {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

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

/* ---------- FAQ ---------- */

.faq-list {
  margin-top: 32px;
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--ink);
  padding: 0 24px;
  transition: background 0.15s ease;
}

.faq-item.open {
  background: var(--ink);
  color: var(--off-white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  padding: 26px 0;
  text-align: left;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: clamp(17px, 2.4vw, 22px);
  color: inherit;
  cursor: pointer;
}

.faq-icon {
  color: var(--orange);
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, padding 0.2s ease;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 26px;
  max-width: 720px;
}

.faq-answer a,
.faq-answer strong {
  color: var(--orange);
}

/* ---------- Upcoming ---------- */

.deets {
  margin-top: 32px;
  border-top: 1px solid var(--ink);
}

.deets-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink);
}

.deets-row dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}

.deets-row dd {
  margin: 0;
}

.deets + .btn {
  margin-top: 40px;
}

@media (max-width: 600px) {
  .deets-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ---------- Subscribe ---------- */

.subscribe {
  background: var(--ink);
  color: var(--off-white);
  padding: 56px 48px;
}

.subscribe .eyebrow {
  color: var(--orange);
}

.subscribe h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 16px;
}

.subscribe p {
  color: rgba(250, 248, 245, 0.8);
  margin: 0 0 28px;
}

.subscribe-form {
  display: flex;
  max-width: 560px;
  border: 2px solid var(--off-white);
}

.subscribe-form input {
  flex: 1;
  background: var(--cream);
  color: var(--ink);
  border: 0;
  padding: 18px 20px;
  font-size: 16px;
  font-family: inherit;
}

.subscribe-form input::placeholder {
  color: var(--muted);
}

.subscribe-form button {
  background: var(--orange);
  color: var(--off-white);
  border: 0;
  border-left: 2px solid var(--off-white);
  padding: 0 28px;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
}

.subscribe-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--orange);
  display: none;
}

.subscribe-note.show {
  display: block;
}

@media (max-width: 560px) {
  .subscribe {
    padding: 40px 24px;
  }
  .subscribe-form {
    flex-direction: column;
    border: 0;
  }
  .subscribe-form input {
    border: 2px solid var(--off-white);
    margin-bottom: 12px;
  }
  .subscribe-form button {
    border: 2px solid var(--off-white);
    padding: 16px;
  }
}

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

.site-footer {
  background: var(--ink);
  color: var(--off-white);
  padding: 56px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-top h3 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  margin: 0 0 8px;
}

.footer-top p {
  color: rgba(250, 248, 245, 0.7);
  margin: 0;
}

.footer-follow .eyebrow {
  color: var(--orange);
  text-align: right;
}

.footer-follow a {
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 248, 245, 0.2);
  color: rgba(250, 248, 245, 0.55);
  font-size: 13px;
}
