/* ============================================================
   DR LEZANNE NEL AESTHETICS — MAIN STYLESHEET
   Palette: Charcoal #2C2C2C | Gold #C9A84C | Off-white #FAF9F7
            Light warm grey #F2F0EC | Accent lavender (minimal) #D4C8E0
   ============================================================ */

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

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

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #2C2C2C;
  background: #FAF9F7;
  line-height: 1.75;
}

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

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

ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: #2C2C2C;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h4 { font-size: 1.1rem; font-weight: 500; letter-spacing: 0.03em; }

p { font-size: 0.95rem; color: #4a4a4a; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; }

.eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.6rem;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow { max-width: 860px; }

.section {
  padding: 5rem 0;
}

.alt-bg { background: #F2F0EC; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: #C9A84C;
  color: #fff;
  border-color: #C9A84C;
}
.btn-primary:hover { background: #b8963e; border-color: #b8963e; }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover { background: #fff; color: #2C2C2C; }

.btn-outline-dark {
  background: transparent;
  color: #2C2C2C;
  border-color: #2C2C2C;
}
.btn-outline-dark:hover { background: #2C2C2C; color: #fff; }

.btn-large { padding: 1rem 2.5rem; font-size: 0.85rem; }

/* ---- NAVIGATION ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 249, 247, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(44,44,44,0.08);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2C2C2C;
  padding: 0.4rem 0.7rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: #C9A84C;
  border-bottom-color: #C9A84C;
}

.nav-cta {
  margin-left: 0.8rem;
  background: #C9A84C;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border: 1.5px solid #C9A84C;
  transition: all 0.25s;
}
.nav-cta:hover { background: #b8963e; border-color: #b8963e; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2C2C2C;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FAF9F7 0%, #F2F0EC 40%, #EDE9E3 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay { display: none; }

.hero-content {
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: min(280px, 60vw);
  margin: 0 auto 2.5rem;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: #2C2C2C;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

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

.hero .btn-outline {
  color: #2C2C2C;
  border-color: #2C2C2C;
}
.hero .btn-outline:hover { background: #2C2C2C; color: #fff; }

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: #2C2C2C;
  padding: 2rem 0;
}

.intro-text {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: #FAF9F7;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ---- SECTION TITLES ---- */
.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
  color: #666;
}

/* ---- SERVICES OVERVIEW ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(44,44,44,0.08);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 1.4rem;
  color: #C9A84C;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.card-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #C9A84C;
  text-transform: uppercase;
  border-bottom: 1px solid #C9A84C;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.card-link:hover { color: #b8963e; border-color: #b8963e; }

/* ---- ABOUT SNIPPET ---- */
.about-snippet { background: #F2F0EC; }

.about-snippet-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}

.about-photo-wrap { display: flex; justify-content: center; }

.about-photo-placeholder {
  width: 280px;
  height: 340px;
  background: linear-gradient(145deg, #e8e4de, #d4cfc8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(44,44,44,0.1);
  color: #888;
  font-size: 0.85rem;
  text-align: center;
  gap: 0.4rem;
}

.about-photo-placeholder.large {
  width: 320px;
  height: 400px;
}

.about-photo-placeholder span { font-weight: 500; color: #555; }
.about-photo-placeholder small { font-size: 0.75rem; }

.doctor-photo {
  width: 300px;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(44,44,44,0.08);
  display: block;
}

.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; }

/* ---- RESULTS TEASER ---- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.result-item img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  background: #1a1a1a;
  border: 1px solid rgba(44,44,44,0.06);
}

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

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, #2C2C2C 0%, #3d3d3d 100%);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: #FAF9F7;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(250,249,247,0.75);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #FAF9F7 0%, #F2F0EC 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(44,44,44,0.06);
}

.page-hero h1 { margin-bottom: 0.5rem; }

.page-hero-sub {
  font-size: 1rem;
  color: #666;
  max-width: 560px;
  margin: 0.5rem auto 0;
}

/* ---- ABOUT FULL ---- */
.about-full-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: start;
}

.about-full-text h2 { margin-bottom: 1.2rem; }
.about-full-text p { margin-bottom: 1rem; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem;
  background: #F2F0EC;
  border-left: 3px solid #C9A84C;
}

.value-item h4 {
  font-size: 0.9rem;
  color: #C9A84C;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.value-item p { font-size: 0.85rem; margin: 0; }

/* ---- SERVICES PAGE ---- */
.service-intro { padding-bottom: 2rem; }
.price-note {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(201,168,76,0.3);
  border-left: 3px solid #C9A84C;
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.service-detail-inner.reverse {
  grid-template-columns: 1fr 1.6fr;
}
.service-detail-inner.reverse .service-detail-text { order: 2; }
.service-detail-inner.reverse .service-detail-aside { order: 1; }

.service-detail-text h2 { margin-bottom: 1rem; }
.service-detail-text p { margin-bottom: 1rem; }

.unit-guide {
  font-size: 0.88rem;
  color: #555;
  padding: 0.6rem 1rem;
  background: rgba(201,168,76,0.08);
  border-left: 3px solid #C9A84C;
  margin-bottom: 1.5rem !important;
}

.service-aside-box {
  background: #fff;
  border: 1px solid rgba(44,44,44,0.08);
  padding: 1.8rem;
  position: sticky;
  top: 90px;
}

.service-aside-box h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C9A84C;
  margin-bottom: 1rem;
}

.service-aside-box li {
  font-size: 0.85rem;
  color: #555;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(44,44,44,0.06);
  padding-left: 1rem;
  position: relative;
}

.service-aside-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C9A84C;
  font-size: 0.8rem;
}

.service-aside-box li:last-child { border-bottom: none; }

/* Whitening grid on services page */
.whitening-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.whitening-card {
  background: #fff;
  border: 1px solid rgba(44,44,44,0.08);
  padding: 2.5rem 2rem;
  position: relative;
}

.whitening-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: #C9A84C;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.whitening-card h3 { margin-bottom: 0.3rem; }

.whitening-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #C9A84C;
  margin-bottom: 1rem !important;
  font-weight: 500;
}

.whitening-note {
  font-size: 0.85rem;
  color: #555;
  padding: 0.8rem 1rem;
  background: rgba(201,168,76,0.07);
  border-left: 3px solid #C9A84C;
  margin: 1rem 0 !important;
}

.whitening-features {
  margin: 1.2rem 0 1.5rem;
}

.whitening-features li {
  font-size: 0.85rem;
  color: #555;
  padding: 0.35rem 0 0.35rem 1.2rem;
  border-bottom: 1px solid rgba(44,44,44,0.06);
  position: relative;
}

.whitening-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #C9A84C;
  font-size: 0.65rem;
  top: 0.5rem;
}

.whitening-features li:last-child { border-bottom: none; }

.whitening-disclaimer {
  margin-top: 2.5rem;
  padding: 1.2rem 1.5rem;
  background: #F2F0EC;
  border-left: 3px solid #C9A84C;
  font-size: 0.88rem;
}

/* ---- PRICING PAGE ---- */
.pricing-table {
  border: 1px solid rgba(44,44,44,0.1);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(44,44,44,0.08);
}

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

.pricing-row > span {
  padding: 1.1rem 1.2rem;
  font-size: 0.88rem;
  border-right: 1px solid rgba(44,44,44,0.06);
  display: flex;
  align-items: center;
}

.pricing-row > span:last-child { border-right: none; }

.header-row {
  background: #2C2C2C;
}

.header-row > span {
  color: #FAF9F7;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-row:not(.header-row):nth-child(even) { background: #F2F0EC; }
.pricing-row:not(.header-row):nth-child(odd) { background: #fff; }

.treatment-name { font-weight: 500; flex-direction: column; align-items: flex-start !important; }
.treatment-name small { font-size: 0.75rem; color: #888; font-weight: 300; margin-top: 0.2rem; }
.treatment-units { font-weight: 500; color: #555; }
.treatment-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #C9A84C;
}

.pricing-disclaimer {
  font-size: 0.82rem;
  color: #777;
  font-style: italic;
  text-align: center;
  padding: 1rem;
  background: #F2F0EC;
  border: 1px solid rgba(44,44,44,0.06);
}

.whitening-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.whitening-pricing-card {
  background: #fff;
  border: 1px solid rgba(44,44,44,0.08);
  padding: 2rem 1.8rem;
}

.whitening-pricing-card h3 { margin-bottom: 0.2rem; }
.whitening-pricing-sub { font-size: 0.8rem; color: #888; margin-bottom: 0.5rem !important; }

.price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #C9A84C;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1;
}

.price-addon {
  font-size: 0.85rem;
  color: #555;
  padding: 0.6rem 1rem;
  background: rgba(201,168,76,0.07);
  border-left: 3px solid #C9A84C;
  margin-top: 1rem;
}

/* ---- RESULTS PAGE ---- */
.results-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.result-full-item img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  background: #1a1a1a;
  border: 1px solid rgba(44,44,44,0.06);
  margin-bottom: 1rem;
}

.result-label h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.result-label p { font-size: 0.85rem; color: #666; }

.results-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  font-style: italic;
  padding: 1rem;
  border-top: 1px solid rgba(44,44,44,0.08);
  margin-top: 1rem;
}

/* ---- CONTACT PAGE ---- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-details h2 { margin-bottom: 2rem; }

.contact-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
  margin-top: 0.2rem;
}

.contact-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C9A84C;
  margin-bottom: 0.3rem;
}

.contact-item a:hover { color: #C9A84C; }

.contact-note {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.3rem !important;
}

.contact-social-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2C2C2C;
  border: 1.5px solid rgba(44,44,44,0.2);
  padding: 0.6rem 1rem;
  transition: all 0.25s;
}

.social-btn:hover {
  background: #2C2C2C;
  color: #fff;
  border-color: #2C2C2C;
}

.contact-booking-panel {
  background: #F2F0EC;
  padding: 2.5rem;
  border-top: 3px solid #C9A84C;
}

.contact-booking-panel h3 { margin-bottom: 1rem; }
.contact-booking-panel p { margin-bottom: 1.5rem; }

.booking-hours {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(44,44,44,0.1);
}

.booking-hours h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C9A84C;
  margin-bottom: 0.75rem;
}

.booking-hours p { font-size: 0.88rem; margin-bottom: 0.3rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: #1e1e1e;
  padding: 3.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr auto;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo img {
  height: 60px;
  width: auto;
  filter: invert(1) brightness(0.9);
  opacity: 0.85;
}

.footer-info p {
  font-size: 0.82rem;
  color: rgba(250,249,247,0.6);
  margin-bottom: 0.4rem;
}

.footer-info a:hover { color: #C9A84C; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,249,247,0.55);
  transition: color 0.2s;
}

.footer-nav a:hover { color: #C9A84C; }

.footer-social {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding-top: 0.2rem;
}

.footer-social a {
  color: rgba(250,249,247,0.5);
  transition: color 0.2s;
}
.footer-social a:hover { color: #C9A84C; }

.footer-bottom {
  padding: 1.2rem 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250,249,247,0.3);
  margin: 0;
}

/* ---- AFTERCARE PAGE ---- */
.aftercare-inner { display: flex; flex-direction: column; gap: 3.5rem; }

.aftercare-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.aftercare-card {
  background: #fff;
  border: 1px solid rgba(44,44,44,0.08);
  padding: 2.2rem;
}

.aftercare-card-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 1.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

.aftercare-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.aftercare-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.aftercare-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
  margin-top: 0.1rem;
  background: rgba(201,168,76,0.08);
  border-radius: 50%;
  padding: 6px;
}

.aftercare-list strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 0.2rem;
}

.aftercare-list p {
  font-size: 0.82rem;
  color: #666;
  margin: 0;
  line-height: 1.55;
}

.aftercare-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(44,44,44,0.08);
}

.aftercare-note p {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 1rem;
  font-style: italic;
}

.aftercare-card-image {
  text-align: center;
  padding: 2rem;
  background: #F2F0EC;
  border: 1px solid rgba(44,44,44,0.06);
}

.aftercare-card-image h3 { margin-bottom: 0.5rem; }
.aftercare-card-image p { font-size: 0.88rem; color: #666; margin-bottom: 1.5rem; }

.aftercare-card-image img {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

@media (max-width: 760px) {
  .aftercare-columns { grid-template-columns: 1fr; }
}

/* ---- FADE IN ANIMATION ---- */
.js-loaded .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-loaded .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- MOBILE NAV ---- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #FAF9F7;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    border-top: 1px solid rgba(44,44,44,0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(44,44,44,0.06);
    border-left: none;
    font-size: 0.8rem;
  }

  .nav-link.active, .nav-link:hover {
    border-bottom-color: rgba(44,44,44,0.06);
    color: #C9A84C;
  }

  .nav-cta {
    margin: 1rem 0 0;
    text-align: center;
    padding: 0.9rem;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-snippet-inner,
  .about-full-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-photo-wrap { justify-content: center; }

  .results-grid,
  .results-full-grid { grid-template-columns: 1fr; }

  .result-item img,
  .result-full-item img { max-height: 500px; }

  .whitening-grid,
  .whitening-pricing-grid { grid-template-columns: 1fr; }

  .service-detail-inner,
  .service-detail-inner.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-inner.reverse .service-detail-text { order: 1; }
  .service-detail-inner.reverse .service-detail-aside { order: 2; }

  .service-aside-box { position: static; }

  .about-values { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .pricing-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .pricing-row > span { border-right: none; border-bottom: 1px solid rgba(44,44,44,0.06); }

  .header-row { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }

  .hero-logo { width: min(220px, 70vw); }

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

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

  .pricing-row { grid-template-columns: 1fr; }

  .hero-buttons { flex-direction: column; align-items: center; }

  .page-hero { padding: 6rem 0 3rem; }
}
