:root {
  --maroon: #7c3a4d;
  --cream: #eed3db;
  --ink: #1a1315;
  --white: #ffffff;
  --black: #0a0a0a;
  --rule: rgba(26, 19, 21, 0.12);
  --rule-on-dark: rgba(238, 211, 219, 0.25);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--maroon);
  color: var(--cream);
  padding: 20px 0;
}

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

.logo {
  font-family: "Rubik", "Arial Narrow", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--cream);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a:hover { opacity: 0.75; }

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links a {
  color: var(--cream);
  display: inline-flex;
}

.social-links svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 4px;
}

.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.menu-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--maroon);
    padding: 24px;
    border-top: 1px solid var(--rule-on-dark);
  }
}

/* Hero */
.hero {
  background: var(--maroon);
  color: var(--cream);
  padding: 48px 0 96px;
}

.hero-photo-frame {
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  border-radius: 45% 45% 6% 6% / 55% 55% 6% 6%;
  overflow: hidden;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-rule {
  overflow: hidden;
  white-space: nowrap;
  font-size: 20px;
  opacity: 0.5;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-wordmark {
  position: relative;
  z-index: 2;
  font-family: "Rubik", "Arial Narrow", sans-serif;
  font-weight: 900;
  font-size: clamp(140px, 42vw, 680px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin: -0.2em 0 32px;
  text-transform: uppercase;
  text-align: center;
}

.hero-content { max-width: 860px; margin: 0 auto; }

.bio-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 8px;
}

.bio-photo {
  flex: 0 0 200px;
  width: 200px;
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
}

.bio-text { flex: 1; min-width: 0; }

@media (max-width: 640px) {
  .bio-row { flex-direction: column; align-items: center; text-align: center; }
  .bio-photo { flex-basis: auto; }
}

.hero-headline {
  font-family: "Rubik", "Arial Narrow", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 24px;
}

.hero-content p {
  font-size: 18px;
  margin: 0 0 18px;
  max-width: 620px;
}

.hero-content a.inline-link {
  text-decoration: underline;
  font-weight: 700;
}

.hero-content .social-links {
  margin-top: 32px;
}

/* Watch section */
.watch-section {
  background: var(--cream);
  padding: 80px 0;
}

.section-heading {
  font-family: "Rubik", "Arial Narrow", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 40px);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.1;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 56px;
}

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

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

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 19, 21, 0.55);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.video-play-button svg { width: 30px; height: 30px; margin-left: 4px; }

.video-play-button:hover {
  background: var(--maroon);
  transform: translate(-50%, -50%) scale(1.06);
}

.as-seen {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin: 0 0 20px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 40px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

.logo-strip img {
  height: 48px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

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

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

.quote-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 26px 24px;
  box-shadow: 0 1px 3px rgba(26, 19, 21, 0.08);
}

.quote-card blockquote {
  position: relative;
  margin: 0 0 16px;
  padding-top: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.quote-card blockquote::before {
  content: "\201C";
  display: block;
  font-family: "Rubik", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--maroon);
  opacity: 0.35;
  margin-bottom: 4px;
}

.quote-card cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.7;
}

/* See Roz Live */
.tour-section {
  background: var(--maroon);
  color: var(--cream);
  padding: 80px 0;
}

.tour-intro {
  max-width: 620px;
  font-size: 17px;
  margin: 0 auto 40px;
  text-align: center;
}

.tour-intro a { text-decoration: underline; font-weight: 700; }

.tour-list {
  list-style: none;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid var(--rule-on-dark);
}

.tour-date-row {
  display: grid;
  grid-template-columns: 100px 130px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-on-dark);
}

@media (max-width: 760px) {
  .tour-date-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.tour-date-when {
  font-family: "Rubik", "Arial Narrow", sans-serif;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.1;
}

.tour-date-when span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin-top: 2px;
}

.tour-date-city {
  font-size: 16px;
  font-weight: 700;
}

.tour-date-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.6;
  margin-bottom: 4px;
}

.tour-date-details .venue {
  font-weight: 700;
  font-size: 16px;
}

.tour-date-details .meta {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 2px;
}

.tour-date-cta {
  display: inline-block;
  justify-self: end;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--cream);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.tour-date-cta:hover { background: var(--cream); color: var(--maroon); }

.tour-date-cta--disabled {
  border-color: var(--rule-on-dark);
  color: var(--cream);
  opacity: 0.55;
  cursor: default;
}

.tour-date-cta--disabled:hover { background: none; color: var(--cream); }

@media (max-width: 760px) {
  .tour-date-cta { justify-self: start; }
}

.tour-empty {
  padding: 32px 0;
  opacity: 0.7;
}

/* Book Her */
.book-section {
  background: var(--black);
  color: var(--cream);
  padding: 80px 0 96px;
}

.book-section .hero-rule { margin: 0 auto 24px; text-align: center; }

.book-section .section-heading { color: var(--cream); text-align: center; }

.booking-form {
  max-width: 640px;
  margin: 40px auto 0;
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

.field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 8px;
}

.field .required {
  opacity: 0.6;
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}

.field textarea { min-height: 120px; resize: vertical; }

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

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-pill {
  justify-self: center;
  display: inline-block;
  background: var(--cream);
  color: var(--ink);
  border: none;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-pill:hover { opacity: 0.85; }

.form-status {
  font-size: 14px;
  margin-top: 4px;
  text-align: center;
}

.form-status[data-state="success"] { color: var(--cream); font-weight: 700; }
.form-status[data-state="error"] { color: #ffb4a8; font-weight: 700; }

/* Footer */
.site-footer {
  background: var(--cream);
  color: var(--ink);
  padding: 48px 0;
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.site-footer .social-links a { color: var(--ink); }

.footer-name {
  font-family: "Rubik", "Arial Narrow", sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
