/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:      #a85068;
  --rose-deep: #7a3549;
  --blush:     #f2d5db;
  --blush-bg:  #fdf0f2;
  --text:      #2e1520;
  --text-mid:  #6b3a48;
  --text-soft: #c4889a;
  --white:     #ffffff;
  --radius:    16px;
}

html { scroll-behavior: smooth; }

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

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

/* ── LOGO IMAGES ── */
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--blush);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-bryt {
  font-family: 'Parisienne', cursive;
  font-size: 1.8rem;
  color: var(--rose);
  letter-spacing: 1px;
}

.logo-sub {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 5px;
  color: var(--text-soft);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: var(--text-mid);
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.btn-book-nav {
  background: var(--rose);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  transition: background 0.2s;
}

.btn-book-nav:hover { background: var(--rose-deep); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--rose);
  cursor: pointer;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-service {
  display: inline-block;
  border: 1.5px solid var(--rose);
  color: var(--rose);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 50px;
  margin-top: 16px;
  transition: background 0.2s, color 0.2s;
}

.btn-service:hover {
  background: var(--rose);
  color: var(--white);
}

/* ── HERO ── */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 60px 80px;
  background: var(--blush-bg);
  min-height: 88vh;
  gap: 40px;
}

.hero-inner { max-width: 560px; }

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 4.2rem;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-title-bryt {
  font-family: 'Parisienne', cursive;
  color: var(--rose);
  font-size: 5rem;
}

.hero-tagline {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.badge {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--rose);
  background: var(--blush);
  padding: 6px 14px;
  border-radius: 50px;
}

.hero-circle-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-bottom: 16px;
}

.hero-tooth {
  width: 130px;
  height: 130px;
}

.hero-circle-name {
  font-family: 'Parisienne', cursive;
  font-size: 2rem;
  color: var(--rose);
  text-align: center;
  line-height: 1.2;
  margin-top: -6px;
}

.hero-circle-name span {
  font-family: 'Lato', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 5px;
  color: var(--text-soft);
  display: block;
  margin-top: 4px;
}

/* ── POLICY BANNER ── */
.policy-banner {
  background: var(--rose);
  color: var(--white);
  text-align: center;
  padding: 14px 24px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  line-height: 1.6;
}

/* ── SECTIONS ── */
.section { padding: 90px 60px; }
.section-alt { background: var(--blush-bg); }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 50px;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(168, 80, 104, 0.1);
}

.service-card.featured {
  background: var(--blush-bg);
  border-color: var(--rose);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-icon {
  font-size: 1.4rem;
  color: var(--rose);
  margin-bottom: 14px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 6px;
}

.service-duration {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--text-soft);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
  flex: 1;
}

.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--rose);
  margin-top: 20px;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step { padding: 10px 0; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--blush);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

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

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 740px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
}

.team-photo-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--blush);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.team-title {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}

.team-creds {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.team-bio {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ── REVIEWS ── */
.stars-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.stars { color: var(--rose); font-size: 1.3rem; }
.stars-label { font-size: 0.82rem; color: var(--text-soft); letter-spacing: 0.5px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  padding: 28px;
}

.review-stars { color: var(--rose); margin-bottom: 14px; font-size: 0.95rem; }

.review-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.5px;
}

/* ── CTA ── */
.cta-section {
  background: var(--rose);
  text-align: center;
}

.cta-inner { max-width: 600px; margin: 0 auto; }

.cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-bryt {
  font-family: 'Parisienne', cursive;
  font-size: 3.6rem;
}

.cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--rose);
}

.cta-section .btn-primary:hover {
  background: var(--blush);
}

/* ── FOOTER ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 60px 60px 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-links p, .footer-note p {
  font-size: 0.85rem;
  line-height: 2;
}

.footer-links a { color: var(--text-soft); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-copy {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links, .btn-book-nav { display: none; }
  .nav-hamburger { display: block; }

  .hero {
    flex-direction: column;
    padding: 60px 24px;
    min-height: auto;
    text-align: center;
  }

  .hero-title { font-size: 3rem; }
  .hero-title-bryt { font-size: 3.6rem; }
  .hero-badges { justify-content: center; }
  .hero-circle { width: 260px; height: 260px; }
  .hero-tooth { width: 100px; height: 100px; }

  .section { padding: 60px 24px; }
  .services-grid, .steps-grid, .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 40px 24px 24px; }
}
