:root {
  --color-bg: #120b0e;
  --color-bg-alt: #1a1114;
  --color-surface: #221619;
  --color-text: #f5ece7;
  --color-text-muted: #c9b8b4;
  --color-accent: #d94f6b;
  --color-accent-soft: #e8879a;
  --color-border: #382528;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 16px; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

section { padding: 96px 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--color-accent); color: #1a0d10; }
.btn-primary:hover { background: var(--color-accent-soft); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(245,236,231,0.4); color: var(--color-text); }
.btn-ghost:hover { border-color: var(--color-text); transform: translateY(-2px); }
.btn-outline { border-color: var(--color-accent); color: var(--color-accent); }
.btn-outline:hover { background: var(--color-accent); color: #1a0d10; }
.btn-full { width: 100%; text-align: center; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(18, 11, 14, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.logo span { color: var(--color-accent); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 0.9rem; color: var(--color-text-muted); }
.nav a:hover { color: var(--color-text); }
.nav-cta {
  background: var(--color-accent);
  color: #1a0d10 !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-img.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,11,14,0.35) 0%, rgba(18,11,14,0.55) 55%, rgba(18,11,14,0.95) 100%);
}
.hero-content {
  position: relative;
  padding-bottom: 90px;
  max-width: 760px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--color-accent-soft);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero h1 em { color: var(--color-accent-soft); font-style: normal; }
.hero-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Reassurance strip */
.reassurance { background: var(--color-bg-alt); padding: 64px 0; }
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.reassurance-item h3 { font-size: 1.2rem; color: var(--color-accent-soft); }
.reassurance-item p { color: var(--color-text-muted); margin: 0; }

/* Portfolio */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/5;
  background: var(--color-surface);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media img { border-radius: 8px; aspect-ratio: 4/5; object-fit: cover; }
.about .section-title { text-align: left; }
.checklist { list-style: none; padding: 0; margin: 24px 0 32px; }
.checklist li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--color-text-muted);
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Meet Glen */
.meet-glen-inner {
  max-width: 680px;
  text-align: center;
}
.meet-glen-lead {
  color: var(--color-accent-soft);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.meet-glen-inner p:not(.meet-glen-lead) {
  color: var(--color-text-muted);
  text-align: left;
  margin-bottom: 16px;
}

/* Pricing */
.pricing { background: var(--color-bg-alt); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 780px;
  margin: 0 auto;
}
.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
}
.price-card.featured { border-color: var(--color-accent); }
.badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #1a0d10;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  margin: 0;
}
.price-card h3 { font-size: 1.3rem; }
.price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--color-accent-soft);
  margin: 0 0 24px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.price-card ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}
.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}
.pricing-note {
  text-align: center;
  color: var(--color-text-muted);
  margin-top: 32px;
  font-size: 0.9rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reviews blockquote {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px;
  margin: 0;
}
.reviews blockquote p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 16px;
}
.reviews blockquote cite {
  color: var(--color-accent-soft);
  font-style: normal;
  font-size: 0.85rem;
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  float: right;
  color: var(--color-accent);
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { color: var(--color-text-muted); margin: 14px 0 0; }

/* Book / contact */
.book { background: var(--color-bg-alt); }
.book-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.book .section-title { text-align: left; }
.book-copy p { color: var(--color-text-muted); }
.book-copy .btn { margin: 8px 0 20px; }
.book-alt a { color: var(--color-accent-soft); text-decoration: underline; }
.book-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.book-form label { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 12px; }
.book-form input, .book-form select, .book-form textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.book-form button { margin-top: 20px; }
.hidden-field { position: absolute; left: -9999px; }
.form-success { color: var(--color-accent-soft); text-align: center; margin-top: 16px; }

/* Footer */
.site-footer { padding: 32px 0; border-top: 1px solid var(--color-border); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--color-text); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,6,7,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 2.2rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
  .nav-cta { text-align: center; margin-top: 12px; border-bottom: none !important; }
  .nav-toggle { display: block; }
  .reassurance-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
}
