/* Tooth Fairy on Balmain Website Styles */
:root {
  --bg: #e9f1f8;
  --bg-soft: #f6f9fb;
  --text: #17253a;
  --muted: #5f6d7a;
  --accent: #c3972d;
  --accent-soft: #f0e4c5;
  --accent2: #2f9e94;
  --accent2-soft: #e1f3f1;
  --shadow: 0 24px 60px rgba(23, 37, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(236, 245, 255, 0.95), rgba(233, 241, 248, 1));
  color: var(--text);
}

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

button,
a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(233, 241, 248, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23, 37, 58, 0.06);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text h1 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.brand-text p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

nav a:hover {
  color: var(--text);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #c4972d, #e6c76b);
  color: #11213a;
  box-shadow: 0 14px 30px rgba(196, 151, 45, 0.22);
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.btn-call:hover {
  transform: translateY(-1px);
}

.btn-call .icon {
  width: 16px;
  height: 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--accent2);
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 158, 148, 0.22);
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.btn-book:hover {
  transform: translateY(-1px);
}

.btn-book .icon {
  width: 16px;
  height: 16px;
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.icon-circle.alt {
  background: var(--accent2-soft);
  color: var(--accent2);
}

.stat .icon-circle {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--accent2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
}

.hero {
  padding: 40px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy p.upper {
  margin: 0 0 16px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.82rem;
}

.hero-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 0.96;
}

.hero-copy p.lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary,
.btn-secondary {
  border: none;
  cursor: pointer;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #c4972d, #e6c76b);
  color: #11213a;
  box-shadow: 0 18px 40px rgba(196, 151, 45, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border: 1px solid rgba(23, 37, 58, 0.08);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.hero-meta {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 30px rgba(23, 37, 58, 0.06);
}

.stat strong {
  display: block;
  font-size: 1.1rem;
}

.hero-image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-frame {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(231,242,252,.95));
  border-radius: 36px;
  padding: 16px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 540px;
}

.hero-frame img {
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.founder-frame {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(231,242,252,.95));
  border-radius: 36px;
  padding: 16px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.founder-frame img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
}

/* Trust strip */
.trust-strip {
  margin: 8px 0 36px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 30px rgba(23, 37, 58, 0.06);
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  justify-content: space-between;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  flex: 1 1 220px;
}

.trust-item .icon {
  width: 22px;
  height: 22px;
  color: var(--accent2);
}

.services,
.visit,
.about,
.contact,
.story-section {
  padding: 18px 0 10px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.section-heading h3 {
  margin: 0;
  font-size: 1.4rem;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 560px;
}

.section-heading.mt-lg {
  margin-top: 48px;
}

/* Practice photo gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.gallery-item {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 40px rgba(23, 37, 58, 0.07);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

/* Specialist partner cards */
.specialist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.specialist-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 22px 40px rgba(23, 37, 58, 0.07);
}

.specialist-card img {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.specialist-card h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.specialist-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.93rem;
}

.specialist-role {
  margin: 0 0 8px !important;
  color: var(--accent2);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Founder intro */
.founder-role {
  display: block;
  margin: 4px 0 16px;
  color: var(--accent2);
  font-weight: 700;
  font-size: 0.95rem;
}

.pull-quote {
  margin: 24px 0 0;
  padding: 22px 26px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0 20px 20px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
}

.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent2);
}

/* Ellie's story */
.story {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.story-block h4 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: var(--text);
}

.story-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 22px 40px rgba(23, 37, 58, 0.07);
  min-height: 220px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(23, 37, 58, 0.1);
}

.card h4 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* "Your Visit" steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 20px;
}

.step-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 28px 22px 22px;
  box-shadow: 0 18px 30px rgba(23, 37, 58, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 44px rgba(23, 37, 58, 0.09);
}

.step-number {
  position: absolute;
  top: -14px;
  right: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4972d, #e6c76b);
  color: #11213a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 10px 18px rgba(196, 151, 45, 0.28);
}

.step-card h4 {
  margin: 4px 0 10px;
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.contact-card h4 {
  margin-bottom: 12px;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.contact-card .btn-book {
  margin-top: 4px;
  color: #fff;
  line-height: normal;
}

.highlight {
  color: var(--accent);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-map-col {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-card {
  background: rgba(255,255,255,0.95);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.contact-card h4 {
  margin-top: 0;
}

.contact-card p,
.contact-card a {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-card a {
  font-weight: 700;
  color: var(--text);
}

/* Opening hours */
.hours-list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(23, 37, 58, 0.1);
  font-size: 0.92rem;
}

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

.hours-row span:first-child {
  font-weight: 600;
  color: var(--text);
}

.hours-row span:last-child {
  color: var(--muted);
}

/* Map */
.map-frame {
  width: 100%;
  min-height: 240px;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  margin-top: 56px;
  padding: 48px 0 28px;
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(23, 37, 58, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 32px;
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 300px;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}

.footer-brand-head img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer h5 {
  margin: 0 0 14px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer ul li,
.footer ul a {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer ul a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(23, 37, 58, 0.08);
  padding-top: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .services-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  nav {
    justify-content: flex-start;
  }

  .cards,
  .gallery,
  .specialist-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-call,
  .btn-book {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-copy h2 {
    font-size: 2.5rem;
  }

  .hero-copy p.lead {
    font-size: 1rem;
  }

  .cta-group {
    width: 100%;
    flex-direction: column;
  }

  .cta-group a {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .specialist-card {
    flex-direction: column;
    text-align: center;
  }

  .specialist-card img {
    width: 100%;
    height: 200px;
  }
}
