@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Great+Vibes&family=Lato:wght@300;400;700&display=swap');

:root {
  --cream: #f4ede3;
  --warm-white: #faf7f3;
  --sage: #8aada5;
  --sage-dark: #6e8f87;
  --sage-light: #b5ccc2;
  --slate: #3d5060;
  --charcoal: #3a3733;
  --beige: #d4c8ba;
  --beige-light: #e8ddd3;
  --logo-beige: #c8bfb6;
  --text-dark: #2e2c29;
  --text-mid: #5a5750;
  --text-light: #8a857e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
}

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(250, 247, 243, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--beige);
}

/* ── LOGO ── */
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 62px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}

.nav-logo-img:hover { opacity: 0.88; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--sage); }

.nav-book-btn {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--warm-white);
  transition: all 0.3s;
}

nav.scrolled .nav-book-btn {
  border-color: var(--sage);
  color: var(--sage);
}

.nav-book-btn:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--warm-white) !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.6) 100%),
    url('images/studio-moon.jpg') center/cover no-repeat;
}

.hero-about-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.65) 100%),
    url('images/emma-pose.jpg') center top/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-img {
  width: 260px;
  max-width: 72vw;
  margin: 0 auto 2.5rem;
  display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}

.hero-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  letter-spacing: 0.08em;
  margin-bottom: 2.75rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About page hero text */
.hero-about-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1rem;
  display: block;
}

.hero-about-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--warm-white);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.hero-about-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--beige-light);
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.28);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--sage);
  color: var(--warm-white);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--warm-white);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-dark {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--charcoal);
  color: var(--warm-white);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}

.btn-dark:hover { background: #2a2724; transform: translateY(-1px); }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--sage);
  padding: 1.75rem 2.5rem;
  text-align: center;
}

.intro-strip p {
  color: var(--warm-white);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.intro-strip span { opacity: 0.45; }

/* ── SECTIONS ── */
section { padding: 6rem 2.5rem; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 55ch;
  line-height: 1.95;
}

/* ── ABOUT (STUDIO) ── */
.about { background: var(--warm-white); }

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image { position: relative; }

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--sage);
  color: var(--warm-white);
  padding: 2rem;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
}

.about-image-badge strong {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.about-image-badge span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  margin-top: 0.3rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature {
  padding: 1.25rem;
  border-left: 2px solid var(--beige);
}

.about-feature h4 { font-size: 1rem; color: var(--charcoal); margin-bottom: 0.3rem; }
.about-feature p { font-size: 0.85rem; color: var(--text-light); }

/* ── MEET EMMA (MAIN PAGE) ── */
.meet-emma { background: var(--cream); }

.meet-emma-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.meet-emma-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.meet-emma-text .section-body { margin-bottom: 1.25rem; }

.meet-emma-text .btn-primary { margin-top: 2rem; display: inline-block; }

/* ── CLASSES ── */
.classes { background: var(--warm-white); }

.classes-inner { max-width: 1200px; margin: 0 auto; }

.classes-header { text-align: center; margin-bottom: 4rem; }

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.class-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.class-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }

.class-icon { font-size: 1.8rem; margin-bottom: 1.25rem; display: block; }

.class-card h3 { font-size: 1.5rem; color: var(--charcoal); margin-bottom: 0.75rem; }

.class-card p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.85; }

.class-meta { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); font-weight: 400; }

.class-card-featured { background: var(--charcoal); }
.class-card-featured h3 { color: var(--beige-light); }
.class-card-featured p { color: rgba(232,221,211,0.75); }
.class-card-featured .class-meta { color: var(--sage-light); }

/* ── STUDIO ── */
.studio { background: var(--cream); padding-bottom: 0; }

.studio-inner { max-width: 1200px; margin: 0 auto; }

.studio-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
  margin-bottom: 4rem;
}

.studio-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

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

.gallery-main { grid-row: span 2; aspect-ratio: 2/2.6; }

.gallery-sm { aspect-ratio: 3/2; }

/* ── HIRE ── */
.hire { background: var(--charcoal); padding: 6rem 2.5rem; }

.hire-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hire .section-label { color: var(--sage-light); }
.hire .section-title { color: var(--warm-white); }
.hire .section-body { color: var(--beige-light); }

.hire-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

.hire-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--beige);
  font-size: 0.9rem;
}

.hire-feature::before { content: '—'; color: var(--sage); flex-shrink: 0; }

.hire-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.hire .btn-primary { margin-top: 2.5rem; }

/* ── TIMETABLE ── */
.timetable { background: var(--warm-white); }

.timetable-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.timetable-inner .section-body { margin: 0 auto 3rem; }

.schedule { background: var(--cream); margin-top: 3rem; }

.schedule-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--beige-light);
  text-align: left;
  transition: background 0.2s;
}

.schedule-row:last-child { border-bottom: none; }
.schedule-row:hover { background: var(--warm-white); }

.schedule-day { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); font-weight: 400; }

.schedule-class h4 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.2rem; }
.schedule-class p { font-size: 0.8rem; color: var(--text-light); }

.schedule-time { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--text-mid); white-space: nowrap; }

.timetable-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.timetable-cta p { color: var(--warm-white); font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; font-style: italic; }

.timetable-cta a {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--warm-white);
  color: var(--sage-dark);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s;
}

.timetable-cta a:hover { background: var(--cream); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); }

.testimonials-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial {
  padding: 2.5rem;
  background: var(--warm-white);
  text-align: left;
}

.testimonial::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--beige);
  line-height: 0.5;
  display: block;
  margin-bottom: 1.25rem;
}

.testimonial p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: var(--text-mid); line-height: 1.85; }

.testimonial cite { display: block; margin-top: 1.5rem; font-style: normal; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); }

/* ── LOCATION ── */
.location { background: var(--warm-white); }

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.location-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }

.location-item { display: flex; gap: 1rem; align-items: flex-start; }

.location-item-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

.location-item-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

.location-item-text strong { display: block; color: var(--charcoal); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }

.map-wrap { display: flex; flex-direction: column; gap: 0; }

.map-placeholder { aspect-ratio: 4/3; overflow: hidden; }
.map-placeholder iframe { width: 100%; height: 100%; border: none; display: block; }

.directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--sage);
  color: var(--warm-white);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s;
}

.directions-btn:hover { background: var(--sage-dark); }

/* ── FOOTER ── */
footer { background: var(--charcoal); padding: 4rem 2.5rem 2rem; }

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.footer-logo-view { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 2rem; color: var(--warm-white); line-height: 0.9; }
.footer-logo-yoga { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 2rem; color: var(--logo-beige); line-height: 0.9; }
.footer-logo-at { font-family: 'Lato', sans-serif; font-weight: 300; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); text-align: center; margin: 0.2rem 0 0.05rem; }
.footer-logo-ks { font-family: 'Great Vibes', cursive; font-size: 1.3rem; color: var(--sage-light); }

.footer-logo-img {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-brand p { font-size: 0.85rem; color: var(--beige); margin-top: 1rem; line-height: 1.85; max-width: 36ch; }

.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--beige); text-decoration: none; font-size: 0.85rem;
  transition: all 0.3s;
}

.footer-social a:hover { border-color: var(--sage); color: var(--sage-light); }

.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 1.25rem; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul a { text-decoration: none; font-size: 0.85rem; color: var(--beige); transition: color 0.2s; }

.footer-col ul a:hover { color: var(--sage-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── ABOUT PAGE ── */
.about-page-bio {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-page-bio .section-body { margin-bottom: 1.25rem; }

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-photos img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-values { background: var(--charcoal); padding: 6rem 2.5rem; }

.about-values-inner { max-width: 980px; margin: 0 auto; text-align: center; }

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

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

.about-value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--sage-light);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}

.about-value h3 { font-size: 1.3rem; color: var(--warm-white); margin-bottom: 0.75rem; }
.about-value p { font-size: 0.88rem; color: var(--beige); line-height: 1.85; }

.about-cta-section { background: var(--sage); padding: 6rem 2.5rem; text-align: center; }
.about-cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--warm-white); margin-bottom: 1rem; }
.about-cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; max-width: 52ch; margin-left: auto; margin-right: auto; }

/* ── HAMBURGER / MOBILE ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--warm-white); transition: background 0.3s; }
nav.scrolled .hamburger span { background: var(--charcoal); }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .hamburger { display: flex; }
  .nav-links, .nav-book-btn { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--charcoal);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }

  .nav-links.open a { font-size: 1.2rem; color: var(--warm-white); }

  .about-inner, .studio-header, .hire-inner,
  .location-inner, .meet-emma-inner,
  .about-page-bio, .footer-top { grid-template-columns: 1fr; gap: 3rem; }

  .about-image-badge { right: 0; bottom: -1rem; width: 120px; height: 120px; }
  .about-image-badge strong { font-size: 1.5rem; }

  .studio-gallery { grid-template-columns: 1fr 1fr; }
  .gallery-main { grid-row: auto; aspect-ratio: 1; }

  .schedule-row { grid-template-columns: 90px 1fr; gap: 1rem; }
  .schedule-time { grid-column: 2; }

  section { padding: 4rem 1.5rem; }
  .hire { padding: 4rem 1.5rem; }

  .timetable-cta { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .about-values-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photos { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

@media (max-width: 600px) {
  .about-features, .classes-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .studio-gallery { grid-template-columns: 1fr; }
  .gallery-main, .gallery-sm { aspect-ratio: 4/3; }
  .intro-strip p { flex-direction: column; gap: 0.4rem; }
  .hero-logo-img { width: 200px; }
}
