/* ============================================
   TS JOJO SEATTLE — ELEVATED PREMIUM
   Mobile-first · Dark + gold · Fast loading
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0f0f0f;
  --bg-section: #181614;
  --bg-card: #211f1c;
  --gold: #c4937a;
  --gold-light: #dab5a3;
  --gold-dim: rgba(196, 147, 122, 0.12);
  --text-primary: #f0ece2;
  --text-secondary: #a89f91;
  --text-muted: #6b6358;
  --border: #2a2520;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 60px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

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


.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   NAVIGATION — sticky, mobile hamburger
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s;
  background: transparent;
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

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

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* ============================================
   HERO — full viewport with background image
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-mobile {
  display: none;
}

.hero-desktop {
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.4) 0%,
    rgba(13, 13, 13, 0.7) 50%,
    rgba(13, 13, 13, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.cta-button:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.cta-secondary {
  border-color: var(--text-muted);
  color: var(--text-secondary);
}

.cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

/* ============================================
   FIRST-TIMER CALLOUT
   ============================================ */

.callout {
  background: var(--gold-dim);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  text-align: center;
}

.callout p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.callout a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   SECTIONS — general
   ============================================ */

.section {
  padding: 72px 0;
}

.section-dark {
  background-color: var(--bg-section);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.section-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto 0;
}

/* ============================================
   GALLERY — grid with real images
   ============================================ */

.gallery-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: -24px;
  margin-bottom: 24px;
}

/* Featured hero photo — large, full width */
.gallery-featured {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 500px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 8px;
  cursor: pointer;
}

.gallery-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
}

.gallery-featured:hover img {
  transform: scale(1.03);
}

/* Thumbnail grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* "View All" card */
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s;
}

.gallery-cta span {
  text-align: center;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.gallery-cta:hover {
  border-color: var(--gold);
}

/* ============================================
   LIGHTBOX — fullscreen photo viewer
   ============================================ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 3rem;
  cursor: pointer;
  padding: 20px;
  opacity: 0.5;
  transition: opacity 0.2s;
  z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 8px;
}

.lightbox-next {
  right: 8px;
}

.lightbox-counter {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 12px;
  letter-spacing: 0.1em;
}

/* ============================================
   ABOUT + DETAILS — merged, two-column
   ============================================ */

.about-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 48px;
  align-items: start;
}

.about-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.about-details {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 4px 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.detail-value {
  font-size: 0.9rem;
  color: var(--text-primary);
  text-align: right;
}

/* ============================================
   EXPERIENCES
   ============================================ */

.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.experience-card {
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.3s;
}

.experience-card:hover {
  border-color: var(--gold);
}

.experience-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
}

.experience-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.kink-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.kink-tag {
  padding: 4px 12px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

/* ============================================
   RATES
   ============================================ */

.rates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto 28px;
}

.rate-card {
  padding: 18px 28px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s;
}

.rate-card:hover {
  border-color: var(--gold);
}


.rate-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
}

.rate-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 16px;
}

.rate-price {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  margin-left: auto;
  padding-left: 20px;
}

.rates-info {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.rates-info p {
  margin-bottom: 4px;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-lead {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.contact-methods {
  margin: 20px 0;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-primary);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-note {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 12px;
}

/* --- Contact Form --- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form select {
  color: var(--text-muted);
}

.contact-form select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.contact-form button {
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 36px 0 100px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.footer-links {
  margin: 12px 0;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.footer-copy {
  color: var(--text-muted);
  font-size: 0.65rem;
  margin-top: 8px;
  opacity: 0.5;
}

/* ============================================
   FLOATING MOBILE CTA
   ============================================ */

.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gold);
  color: var(--bg-dark);
  text-align: center;
  padding: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

.floating-cta:hover {
  background: var(--gold-light);
  color: var(--bg-dark);
}

/* ============================================
   RESPONSIVE — MOBILE OPTIMIZED
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero {
    min-height: 80vh;
    min-height: 80dvh;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .rates-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    padding: 12px;
  }

  .lightbox-close {
    top: 10px;
    right: 14px;
    font-size: 2rem;
  }

  .floating-cta {
    display: block;
  }

  .footer {
    padding-bottom: 80px;
  }
}

/* Phone */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-name {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
  }

  .hero-sub {
    font-size: 0.78rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-button {
    padding: 14px 32px;
    width: 220px;
    text-align: center;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .hero {
    min-height: 80vh;
    min-height: 80dvh;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .about-lead {
    font-size: 1.05rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .about-details {
    margin: 0 -16px;
    border-left: none;
    border-right: none;
  }

  .experience-card {
    padding: 22px;
  }

  .experience-card h3 {
    font-size: 1.1rem;
  }

  .rates-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rate-card {
    padding: 16px 20px;
  }

  .rate-name {
    font-size: 1rem;
  }

  .rate-price {
    font-size: 1.25rem;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .faq-answer {
    font-size: 0.83rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .floating-cta {
    padding: 18px;
    font-size: 0.9rem;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }
}

/* iPhone notch safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .floating-cta {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-dark);
}

.thanks-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.thanks-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}


/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gallery-item img {
    transition: none;
  }

  .cta-button,
  .experience-card,
  .rate-card,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form button {
    transition: none;
  }
}
