/* ================================================
   Blue Door Bodywork — styles.css
   Colors:  --blue  #4A80A5  (logo blue)
            --gold  #C9A870  (logo gold)
            --navy  #1A2F45  (dark)
            --cream #F7F2EC  (warm off-white)
   Fonts:   Cormorant Garamond (headings)
            Jost (body)
   ================================================ */

/* ---- Reset & Base -------------------------------- */
:root {
  --blue:       #4A80A5;
  --gold:       #C9A870;
  --gold-dark:  #B8944F;
  --navy:       #1A2F45;
  --navy-dark:  #0F1E2D;
  --cream:      #F7F2EC;
  --white:      #FFFFFF;
  --text:       #2D2D2D;
  --text-muted: #6B6B6B;
  --radius:     3px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 28px rgba(0,0,0,0.10);
  --trans:      all 0.3s ease;
}

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

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---- Utility ------------------------------------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad { padding: 96px 0; }

.bg-cream { background: var(--cream); }
.bg-navy  { background: var(--navy); }

.text-center { text-align: center; }

/* ---- Buttons ------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-light:hover {
  background: transparent;
  color: var(--white);
}

/* ---- Section headers ----------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.divider {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

.section-sub {
  max-width: 580px;
  margin: 24px auto 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: var(--trans);
}

.nav.scrolled {
  background: rgba(26, 47, 69, 0.96);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: var(--trans);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--trans);
}

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

.nav-book {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
}
.nav-book:hover {
  background: transparent !important;
  color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 30, 45, 0.65) 0%,
    rgba(26, 47, 69, 0.45) 50%,
    rgba(15, 30, 45, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 680px;
}

.hero-logo {
  width: 210px;
  margin: 0 auto 36px;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.35));
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.03em;
  opacity: 0.93;
  margin-bottom: 44px;
  line-height: 1.5;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.4s ease-in-out infinite;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.hero-scroll:hover { opacity: 1; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ================================================
   ABOUT
   ================================================ */
.about { background: var(--white); }

.about-body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}
.about-body p + p { margin-top: 22px; }

/* ================================================
   SERVICES
   ================================================ */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 52px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(201,168,112,0.25);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  flex: 1 1 150px;
  max-width: 190px;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover,
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-min {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.pricing-min span {
  font-size: 0.9rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-muted);
}

.pricing-price {
  font-size: 2.1rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pricing-who {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Modalities */
.services-modalities {
  text-align: center;
  margin-bottom: 52px;
}

.modalities-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.modalities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.modalities-list span {
  background: var(--white);
  border: 1px solid rgba(201,168,112,0.35);
  color: var(--navy);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

/* ================================================
   TEAM
   ================================================ */
.team { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.team-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  background: var(--cream);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.team-photo:hover img { transform: scale(1.04); }

.team-info h3 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.team-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 22px;
}

.team-sessions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-sessions span {
  background: var(--cream);
  color: var(--navy);
  border: 1px solid rgba(201,168,112,0.3);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,30,45,0.75) 0%, transparent 100%);
  color: var(--white);
  padding: 32px 20px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
}

/* ================================================
   CTA BAND
   ================================================ */
.cta { background: var(--navy); }

.cta-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 44px;
}

.footer-logo {
  height: 58px;
  margin: 0 auto 20px;
  opacity: 0.8;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* ================================================
   RESPONSIVE — Tablet
   ================================================ */
@media (max-width: 820px) {
  .section-pad { padding: 72px 0; }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* ================================================
   RESPONSIVE — Mobile
   ================================================ */
@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 30, 45, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }

  .nav-book {
    padding: 12px 32px !important;
    font-size: 0.9rem !important;
  }

  .hero-logo { width: 170px; }

  .pricing-card {
    flex: 0 0 calc(50% - 8px);
    max-width: none;
    padding: 26px 16px;
  }

  .section-pad { padding: 60px 0; }
}
