/* =====================================================
   Sasser Stills Boudoir — styles
   Palette + type sourced from the live Squarespace site:
   headings + paragraphs: Lora · nav/labels/buttons: Raleway
   Title pattern: big blue title, smaller gold subtitle below
   ===================================================== */

:root {
  --paper: #ffffff;
  --ink: #2b2b2b;
  --muted: #666461;
  --teal: #2f4d58;        /* heading slate/teal — exact from live site */
  --gold: #b59551;        /* button gold — exact from live site */
  --gold-olive: #a78f03;  /* intro quote gold */
  --gold-link: #9c874e;   /* subtitle link gold */
  --gray-bg: #f5f4f2;     /* light gray section background */
  --line: #d8d5cf;
  --nav-size: 12px;

  /* type scale — exact values from the Squarespace site settings */
  --h1: 4.3rem;
  --h2: 3rem;
  --h3: 2rem;
  --h4: 1.2rem;
  --p1: 1.4rem;
  --p2: 1rem;
  --p3: 0.9rem;
  --heading-lh: 1.4;
  --heading-ls: 0.01em;
  --para-lh: 1.8;
  --para-ls: 0.06em;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: var(--p2);
  line-height: var(--para-lh);
  letter-spacing: var(--para-ls);
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- header ---------- */
.site-header {
  padding: 30px 20px 22px;
  text-align: center;
}

.site-header .logo {
  display: block;
  width: 260px;
  margin: 0 auto;
}

.site-nav {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 10px 30px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.site-nav a {
  font-family: "Raleway", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--nav-size);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 3px;
}

.site-nav a:hover { color: var(--gold); }

.site-nav a.active { border-bottom: 1.5px solid var(--ink); }

/* nav dropdown (Videos folder) */
.nav-drop {
  position: relative;
  display: flex; /* baseline of the wrapper = baseline of the link, so it aligns with plain nav items */
}

.nav-drop-menu {
  visibility: hidden;
  opacity: 0;
  transition: opacity .15s ease;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding-top: 10px;
  min-width: 185px;
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.open .nav-drop-menu {
  visibility: visible;
  opacity: 1;
}

.nav-drop-menu-inner {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  padding: 14px 0;
  display: flex;
  flex-direction: column;
}

.nav-drop-menu a {
  display: block;
  padding: 8px 24px;
  white-space: nowrap;
}

/* ---------- hero banner ---------- */
.hero-banner img {
  width: 100%;
  object-fit: cover;
}

/* ---------- portfolio carousel ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero .slides {
  display: flex;
  transition: transform .6s ease;
}

.hero .slides img {
  width: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  max-height: 82vh;
}

.hero .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .85);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.hero .arrow:hover { color: #fff; }
.hero .arrow:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.hero .arrow.prev { left: 10px; }
.hero .arrow.next { right: 10px; }

.hero .dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
  z-index: 2;
}

.hero .dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
}

.hero .dots button.on { background: #fff; }

/* ---------- shared section styles ---------- */
.band {
  padding: 70px 8% 76px;
  text-align: center;
}

.band h1,
.band h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  line-height: var(--heading-lh);
  letter-spacing: var(--heading-ls);
  color: var(--teal);
  text-wrap: balance;
  margin: 0 auto;
}

.band h1 {
  font-size: clamp(2.4rem, 5.5vw, var(--h1));
  max-width: 20ch;
}

/* section titles render at H1 scale on the live site */
.band h2 {
  font-size: clamp(2.2rem, 5vw, var(--h1));
}

.band h2.black-title { color: #000; text-transform: uppercase; }

/* gold subtitle — pairs under a big title (H3 on the type scale) */
.subtitle {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, var(--h3));
  font-weight: 600;
  line-height: var(--heading-lh);
  letter-spacing: var(--heading-ls);
  color: var(--gold-link);
  margin: 8px 0 0;
}

.subtitle a { color: inherit; text-decoration: none; }
.subtitle a:hover { text-decoration: underline; }

/* intro quote — italic olive-gold at H3 scale, matches live site */
.band .lede {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, var(--h3));
  line-height: var(--heading-lh);
  color: var(--gold-olive);
  max-width: 46ch;
  margin: 26px auto 34px;
}

.btn {
  display: inline-block;
  font-family: "Raleway", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 1.5px solid var(--ink);
  padding: 16px 34px;
  transition: background .2s ease, color .2s ease;
}

.btn:hover { background: var(--ink); color: #fff; }

.btn.large {
  font-size: 15px;
  padding: 22px 52px;
}

.btn-band {
  padding-top: 52px;
  padding-bottom: 52px;
}

/* ---------- video section ---------- */
.video-band { background: #f7f6f3; }

.video-band h2 { margin-bottom: 34px; }

.video-frame {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto 40px;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

/* ---------- before & after ---------- */
.eyebrow {
  font-family: "Raleway", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.body-copy {
  max-width: 82ch;   /* ~20% wider per Michael's preference */
  margin: 26px auto 34px;
  color: var(--muted);
  font-size: var(--p2);
  text-align: left;
}

.ba-band { background: var(--gray-bg); }

.ba-band .body-copy { text-align: center; }

/* ---------- divider bar ---------- */
.divider {
  border: 0;
  border-top: 1px solid var(--line);
  width: min(58%, 620px);
  margin: 34px auto 0;
}

.divider-top { margin: 0 auto 44px; }

.full-strip {
  width: 100%;
}

/* ---------- testimonials ---------- */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 64px;
  background: var(--gray-bg);
  /* tighter side padding than other bands so the rows can breathe wide */
  padding-left: 1.5%;
  padding-right: 3%;
}

.t-row {
  display: grid;
  /* image column scales with the page: ~47% of the row, never below 340px */
  grid-template-columns: minmax(340px, 8fr) 9fr;
  gap: clamp(20px, 2.5vw, 40px);
  align-items: stretch;   /* image frame always matches text height */
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  text-align: left;
}

/* Squarespace-style fill frame: the image crops to fill whatever
   height the testimonial text takes up at the current page width */
.t-img {
  position: relative;
  min-height: 300px;
}

.t-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-row blockquote {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: var(--p2);
  line-height: var(--para-lh);
  color: var(--muted);
}

/* ---------- waitlist ---------- */
.waitlist { background: #ffffff; }

.waitlist .body-copy {
  text-align: center;
  color: var(--ink);
  font-size: var(--p1);
}

.waitlist .divider-top { border-top: 2px solid #1c1c1c; }

/* beige panel behind the form */
.waitlist-form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: #e0dcd3;
  padding: 60px clamp(24px, 5vw, 56px);
}

.form-row {
  display: flex;
  gap: 26px;
}

.form-row input { flex: 1; min-width: 0; }

.waitlist-form input {
  height: 60px;
  border: 0;
  border-radius: 2px;
  background: #fff;
  padding: 0 24px;
  font-family: "Lora", Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: .02em;
  color: var(--ink);
}

.waitlist-form input::placeholder {
  color: rgba(43, 43, 43, .45);
  opacity: 1;
}

.waitlist-form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--gold);
}

.btn.solid {
  background: var(--gold);
  border: 0;
  border-radius: 2px;
  color: #fff;
  font-family: "Raleway", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 21px 64px;
  width: auto;
  align-self: center;
  margin-top: 10px;
  cursor: pointer;
}

.btn.solid:hover { background: var(--teal); }

/* waitlist submit states */
.form-success {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  line-height: var(--heading-lh);
  color: var(--teal);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}

.form-error {
  font-family: "Lora", Georgia, serif;
  font-size: var(--p3);
  color: #a04040;
  text-align: center;
  margin: 0;
}

/* ---------- social + featured ---------- */
.social-note {
  font-size: var(--p2);
  color: rgba(47, 77, 88, .7);
  margin: 0 0 18px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 0 0 64px;
}

.social-links a { color: var(--ink); }
.social-links a:hover { color: var(--gold); }

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 56px;
  margin-top: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.badges img {
  width: 132px;
  height: auto;
  object-fit: contain;
}

/* ---------- interior: video pages ---------- */
.band h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, var(--h3));
  line-height: var(--heading-lh);
  letter-spacing: var(--heading-ls);
  color: var(--teal);
  text-wrap: balance;
  margin: 0 auto;
}

/* All About Boudoir — mirrors the live page rhythm: full, full, side-by-side pair */
.video-list {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 44px);
  max-width: 1200px;
  margin: 0 auto;
}

.video-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 44px);
}

/* click-to-play thumbnail; swapped for an iframe by script */
.video-embed {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
}

.video-embed img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-embed .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  transition: background .15s ease;
}

.video-embed .play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
}

.video-embed:hover .play-btn,
.video-embed:focus-visible .play-btn { background: var(--gold); }

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

/* stacked client boudoir films */
.film-list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
  max-width: 980px;
  margin: 44px auto 0;
}

.film-list video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  /* fills the frame with the (portrait) poster; the 16:9 video itself is uncropped */
  object-fit: cover;
}

/* ---------- interior: FAQs page ---------- */
.faq {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.faq h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, var(--h2));
  line-height: var(--heading-lh);
  letter-spacing: var(--heading-ls);
  color: var(--teal);
  margin: 56px 0 0;
}

.faq h2:first-child { margin-top: 0; }

.faq p {
  color: var(--muted);
  margin: 22px 0 0;
}

.faq a { color: var(--gold-link); }

.faq-img {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 56px auto 0;
}

.waitlist-form textarea {
  min-height: 150px;
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  background: #fff;
  padding: 16px 22px;
  font-family: "Lora", Georgia, serif;
  font-size: 1.05rem;
  color: var(--ink);
  resize: vertical;
}

.waitlist-form textarea::placeholder { color: var(--ink); opacity: 1; }

.waitlist-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }

.phone-line {
  font-size: var(--p1);
  color: var(--muted);
  margin: 30px 0 0;
}

/* ---------- interior: studio page ---------- */
/* stacked gallery — 90% wide with a little white at the edges */
.gallery-stack {
  width: 90%;
  margin: 0 auto;
}

.gallery-stack img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 5px;
}

.gallery-stack img:last-child { margin-bottom: 0; }

/* ---------- interior: pricing page ---------- */
.pricing-graphic {
  display: block;
  width: 100%;
  max-width: 950px;
  margin: 44px auto;
}

/* ---------- interior: testimonials page ---------- */
.reviews-band {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-top: 40px;
}

.review { max-width: 1200px; width: 100%; margin: 0 auto; }

.review-divider { width: 100%; margin: 0 0 44px; }

.review-who {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: var(--heading-lh);
  letter-spacing: var(--heading-ls);
  color: var(--teal);
  margin: 0 0 36px;
}

.review-row {
  display: grid;
  grid-template-columns: minmax(300px, 2fr) 3fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  text-align: left;
}

.review-img img { width: 100%; height: auto; }

.review-row blockquote,
.review-solo {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: var(--p2);
  line-height: var(--para-lh);
  letter-spacing: var(--para-ls);
  color: var(--muted);
}

.review-row blockquote p:first-child,
.review-solo p:first-child { margin-top: 0; }

.review-solo {
  text-align: left;
  max-width: 82ch;
  margin-left: auto;
  margin-right: auto;
}

.video-frame.review-video { max-width: 760px; }

/* ---------- interior: info page ---------- */
.ornament {
  display: block;
  width: min(92%, 900px);
  margin: 40px auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-card h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: var(--heading-lh);
  color: var(--teal);
  margin: 20px 0 2px;
}

.team-card .role {
  color: var(--gold-link);
  font-size: var(--p2);
  font-weight: 600;
  margin: 0 0 12px;
}

.team-card p {
  color: var(--muted);
  font-size: var(--p3);
  margin: 0;
  text-align: center;
}

.badge-row,
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin: 44px auto 0;
}

.badge-row img { width: min(164px, 38vw); height: auto; }
.logo-row img { width: min(230px, 42vw); height: auto; }

/* rounded outline CTA button (matches live /info) */
.btn.outline-round {
  border: 2px solid #000;
  border-radius: 6px;
  padding: 18px 38px;
}

.bts {
  display: block;
  width: 100%;
}

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .site-header .logo { width: 200px; }
  .video-pair { grid-template-columns: 1fr; }
  .site-nav { gap: 8px 18px; }
  .band { padding: 48px 6% 56px; }
  .t-row { grid-template-columns: 1fr; gap: 22px; }
  .t-img { min-height: 380px; }
  .review-row { grid-template-columns: 1fr; gap: 22px; }
  .waitlist-form { padding: 32px 20px; gap: 18px; }
  .btn.solid { width: 100%; padding: 19px 20px; }
  .team-grid { grid-template-columns: 1fr; max-width: 340px; }
  .form-row { flex-direction: column; gap: 18px; }
}
