/* Watson Media House — Site-wide custom CSS
   Extends Tailwind CDN with brand-specific patterns. */

:root {
  --ink:       #0E1419;
  --ink-2:     #1A2129;
  --ink-3:     #2A3440;
  --paper:     #F7F4EF;
  --paper-2:   #EFEAE1;
  --line:      #E2DDD3;
  --muted:     #6B7480;
  --gold:      #C9A35B;
  --gold-dark: #A68341;
  --gold-soft: #F1E6CE;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-serif { font-family: 'Fraunces', Georgia, serif; }

/* Display headlines */
.h-display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.h-display em { font-style: italic; font-weight: 400; color: var(--gold); }

.hdg-2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hdg-3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Eyebrow chip */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 6px 10px;
  border: 1px solid rgba(166,131,65,0.3);
  border-radius: 999px;
  background: rgba(166,131,65,0.06);
}
.eyebrow--light {
  color: var(--gold);
  border-color: rgba(201,163,91,0.35);
  background: rgba(201,163,91,0.08);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 12px;
  padding: 14px 22px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(201,163,91,0.35);
}
.btn--gold:hover { background: #D5AF67; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(201,163,91,0.45); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 20px rgba(14,20,25,0.18);
}
.btn--dark:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--sm { padding: 10px 16px; font-size: 14px; border-radius: 10px; }
.btn--xl { padding: 18px 26px; font-size: 17px; }

/* Hero base */
.hero-section {
  position: relative;
  min-height: 92vh;
  color: #fff;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,20,25,0.50) 0%, rgba(14,20,25,0.35) 45%, rgba(14,20,25,0.85) 100%),
    linear-gradient(100deg, rgba(14,20,25,0.70) 0%, rgba(14,20,25,0.20) 60%);
}

/* Trust bar */
.trust-bar {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}
.trust-bar__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.trust-bar__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #A7ADB4;
  margin-top: 4px;
}
@media (max-width: 640px) {
  .trust-bar__grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Pillar cards */
.pillar {
  background: #fff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(14,20,25,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.pillar:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(14,20,25,0.12); }
.pillar__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}

/* Pricing cards */
.price-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(14,20,25,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(14,20,25,0.15); }
.price-card--featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 18px 50px rgba(14,20,25,0.22);
  transform: scale(1.02);
}
.price-card--featured:hover { transform: scale(1.02) translateY(-3px); }
.price-card__tag {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 7px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(201,163,91,0.4);
}
.price-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: inherit;
  opacity: 0.85;
}
.price-card__price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: inherit;
  margin-bottom: 6px;
}
.price-card__price small {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.7;
}
.price-card__band {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(166,131,65,0.10);
  border: 1px solid rgba(166,131,65,0.28);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 22px;
}
.price-card--featured .price-card__band {
  color: var(--gold);
  background: rgba(201,163,91,0.16);
  border-color: rgba(201,163,91,0.45);
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 15px;
  line-height: 1.45;
  flex: 1;
}
.price-card__list li {
  position: relative;
  padding-left: 22px;
}
.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--gold);
}
.price-card--featured .price-card__list li::before { background: var(--gold); }

/* Gallery mosaic (matches Tulsa pattern) */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 4px;
}
.mosaic figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink-2);
  position: relative;
}
.mosaic figure img,
.mosaic figure video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.mosaic figure:hover img,
.mosaic figure:hover video { transform: scale(1.04); }
.mosaic__tall { grid-row: span 2; }
.mosaic__wide { grid-column: span 2; }
@media (max-width: 1024px) {
  .mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 640px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 2px; }
  .mosaic__wide { grid-column: span 1; }
  .mosaic__tall { grid-row: span 1; }
}

/* Vertical reel grid (9:16 Vimeo embeds) */
.reels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: 26px;
  justify-content: center;
}
.reel {
  background: var(--ink);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(14,20,25,0.18);
}
.reel__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--ink);
}
.reel__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.reel__caption {
  padding: 14px 18px;
  background: var(--ink-2);
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

/* Horizontal reel (16:9 / 4:3) */
.reel--wide .reel__frame { aspect-ratio: 16 / 9; }
.reel--four-three .reel__frame { aspect-ratio: 4 / 3; }

/* Logo strip */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  justify-items: center;
}
.logo-strip img {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(0.9);
  opacity: 0.55;
  mix-blend-mode: multiply;
  transition: filter .2s ease, opacity .2s ease;
}
.logo-strip img:hover { filter: grayscale(0) contrast(1); opacity: 1; }
/* Compass wordmark is naturally wide; give it more horizontal room so it doesn't look tiny next to icon-based logos */
.logo-strip img[src*="compass"] {
  max-height: 22px;
  max-width: 160px;
}
@media (max-width: 1024px) {
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .logo-strip img { max-height: 38px; max-width: 110px; }
}

/* Nav */
.site-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 30;
  padding: 22px 0;
}
.site-nav--solid {
  position: sticky; top: 0;
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.site-nav__links a { transition: opacity .15s ease; }
.site-nav__links a:hover { opacity: 0.7; }
.site-nav__logo img { height: 38px; width: auto; }

/* Mobile nav (hamburger) — the button + dropdown are built by main.js
   from the existing .site-nav__links, so each page stays in sync. */
.site-nav__toggle { display: none; }
.site-nav__mobile { display: none; }
@media (max-width: 768px) {
  .site-nav__links { display: none; }

  /* push the CTA + hamburger together on the right */
  .site-nav__inner > a.btn { margin-left: auto; }

  .site-nav__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    margin-left: 4px;
    background: transparent;
    border: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .site-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .25s ease, opacity .2s ease;
  }
  .site-nav--solid .site-nav__toggle span { background: var(--ink); }
  .site-nav.is-open .site-nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-nav.is-open .site-nav__toggle span:nth-child(2) { opacity: 0; }
  .site-nav.is-open .site-nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav__mobile {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(14,20,25,0.975);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 50px rgba(14,20,25,0.35);
    padding: 6px clamp(20px,4vw,48px) 18px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .site-nav.is-open .site-nav__mobile {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav__mobile a {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 15px 2px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav__mobile a:last-child { border-bottom: 0; }
  .site-nav__mobile a:active { opacity: 0.6; }
}

/* Floating "Book Now" — injected by main.js, revealed once the hero
   scrolls out of view so there's always a booking CTA in reach. */
.book-fab {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: calc(clamp(16px, 4vw, 26px) + env(safe-area-inset-bottom, 0px));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(14,20,25,0.32), 0 2px 8px rgba(14,20,25,0.18);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .15s ease;
}
.book-fab.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.book-fab:hover { background: #D5AF67; }
.book-fab:active { transform: translateY(1px); }
@media (max-width: 768px) {
  .book-fab { right: 16px; padding: 14px 22px; }
}

/* Service tile (used on RE page + homepage) */
.svc-tile {
  background: var(--ink);
  color: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .2s ease;
}
.svc-tile:hover { background: var(--ink-2); }
.svc-tile__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.svc-tile__sub { font-size: 14px; color: #A7ADB4; line-height: 1.5; }

/* Footer */
.site-footer {
  background: #080C0F;
  color: #A7ADB4;
  padding: 56px 0 40px;
}
.site-footer a:hover { color: var(--gold); }

/* Lead form */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.lead-form input {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lead-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,163,91,0.18);
}
.lead-form button { width: 100%; }
.lead-form__fine {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 6px 0 0;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
  padding: 0 0 22px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,12,15,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 95vw;
  max-height: 92vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 28px;
  color: #fff;
  font-size: 28px;
  background: none;
  border: 0;
  cursor: pointer;
}

/* Add-ons table */
.addon-table {
  width: 100%;
  border-collapse: collapse;
}
.addon-table th,
.addon-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}
.addon-table th {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper-2);
}
.addon-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

/* Compare (Tulsa-only) */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1024px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col {
  padding: 36px 32px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.compare-col--them {
  background: #EEE9DE;
  color: var(--muted);
}
.compare-col--them h3 { color: var(--ink-3); }
.compare-col--us {
  background: var(--ink);
  color: #D9D4CA;
  border-color: var(--ink);
  box-shadow: 0 18px 50px rgba(14,20,25,0.18);
}
.compare-col--us h3 { color: #fff; }
.compare-col h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-col li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.55;
}
.compare-col li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  border-radius: 999px;
}
.compare-col--them li::before { background: #B4ADA1; }
.compare-col--us li::before { background: var(--gold); }
.compare-col--us strong { color: #fff; }
