/* ============================================
   DR AESTHETICS LONDON — Shared Site Styles
   ============================================ */

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

:root {
  --cream: #EEE6DC;
  --warm-white: #F6F0E8;
  --sand: #D6C6B3;
  --taupe: #B79A73;
  --deep-taupe: #7C6044;
  --charcoal: #24211D;
  --mid: #564B40;
  --rose: #B9918F;
  --sage: #879888;
  --gold: #C7A465;
  --light-text: #796F65;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  font-weight: 300;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,168,130,0.2);
  transition: box-shadow 0.4s ease;
}

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

.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-logo .main-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--charcoal);
  text-transform: uppercase;
  display: block;
}

.nav-logo .sub-name {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--taupe);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links > li { position: relative; }

.nav-links a {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.3s;
  font-weight: 400;
}

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

.nav-cta {
  white-space: nowrap;
  background: var(--charcoal);
  color: var(--warm-white) !important;
  padding: 12px 28px;
  letter-spacing: 2px !important;
  transition: background 0.3s !important;
  border: 1px solid var(--charcoal);
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: white !important;
  border-color: var(--gold);
}

/* Dropdown / mega menu */
.has-dropdown > a::after {
  content: ' ▾';
  font-size: 8px;
  vertical-align: middle;
}

.dropdown {
  position: absolute;
  top: calc(100% + 24px);
  left: -24px;
  transform: translateY(8px);
  background: var(--warm-white);
  border: 1px solid rgba(196,168,130,0.25);
  box-shadow: 0 20px 60px rgba(42,36,32,0.12);
  padding: 36px 44px;
  display: grid;
  grid-template-columns: repeat(5, max-content);
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 200;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* invisible hover bridge */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: -20px; right: -20px;
  height: 28px;
}

.dropdown-col h5 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown-col a {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--mid);
  white-space: nowrap;
}

/* Hamburger + mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--warm-white);
  z-index: 99;
  padding: 40px;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid rgba(196,168,130,0.15);
}
.mobile-menu .mobile-group {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
  font-family: 'Jost', sans-serif;
}
.mobile-menu .mobile-sub {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--mid);
  border-bottom: none;
  padding: 6px 0;
}

/* ===== SHARED TYPOGRAPHY ===== */
.section-tag {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--taupe);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.section-title em { font-style: italic; color: var(--deep-taupe); }

.section-body {
  font-size: 15px;
  line-height: 2;
  color: var(--light-text);
  margin-bottom: 20px;
  max-width: 560px;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  display: inline-block;
}

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

.btn-ghost {
  color: var(--mid);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 2px;
  transition: all 0.3s;
  font-family: 'Jost', sans-serif;
}

.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   SERVICE PAGE
   ============================================ */

.service-hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding-top: 80px;
}

.service-hero-left {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 80px 90px 100px;
  position: relative;
}

.service-hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--taupe), transparent);
  opacity: 0.4;
}

.breadcrumb {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--taupe); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

.service-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.service-hero h1 em { font-style: italic; color: var(--deep-taupe); }

.service-tagline {
  font-size: 15px;
  line-height: 1.9;
  color: var(--light-text);
  max-width: 460px;
  margin-bottom: 44px;
}

.hero-btns { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

.service-facts {
  display: flex;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(196,168,130,0.25);
  padding-top: 36px;
}

.service-fact {
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid rgba(196,168,130,0.25);
}
.service-fact:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.fact-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
  margin-bottom: 8px;
}

.fact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  display: block;
  line-height: 1.2;
}

.service-hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 60px;
}

.service-hero-right::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.service-hero-right::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
}

.hero-quote {
  position: relative;
  z-index: 2;
}

.hero-quote h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.25;
  max-width: 340px;
}

.hero-quote p {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 14px;
}

/* Overview */
.service-overview {
  padding: 110px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--warm-white);
  align-items: start;
}

.overview-sticky { position: sticky; top: 120px; }

.overview-body p {
  font-size: 15px;
  line-height: 2.05;
  color: var(--light-text);
  margin-bottom: 24px;
}

.treats-list {
  margin-top: 36px;
  border-top: 1px solid rgba(196,168,130,0.25);
  padding-top: 32px;
}

.treats-list h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

.treats-list ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.treats-list li {
  font-size: 13px;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.treats-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
  margin-top: 5px;
}

/* Benefits */
.service-benefits {
  padding: 110px 100px;
  background: var(--cream);
}

.benefits-header { max-width: 620px; margin-bottom: 70px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(196,168,130,0.2);
  border: 1px solid rgba(196,168,130,0.2);
}

.benefit-card {
  background: var(--cream);
  padding: 44px 38px;
  transition: background 0.4s;
}

.benefit-card:hover { background: var(--warm-white); }

.benefit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.benefit-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--light-text);
}

/* Journey / steps */
.service-journey {
  padding: 110px 100px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.service-journey::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(184,151,106,0.07);
}

.service-journey .section-tag { color: var(--taupe); }
.service-journey .section-tag::before { background: var(--taupe); }
.service-journey .section-title { color: var(--warm-white); }
.service-journey .section-title em { color: var(--taupe); }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 70px;
  position: relative;
}

.journey-step { position: relative; }

.journey-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: rgba(196,168,130,0.35);
  display: block;
  line-height: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.journey-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 12px;
}

.journey-step p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.45);
}

/* FAQ */
.service-faq {
  padding: 110px 100px;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid rgba(196,168,130,0.25); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 28px 40px 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.faq-q:hover { color: var(--deep-taupe); }

.faq-q::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--light-text);
  padding: 0 60px 28px 0;
}

/* Related */
.service-related {
  padding: 110px 100px;
  background: var(--cream);
}

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

.related-card {
  text-decoration: none;
  background: var(--warm-white);
  padding: 44px 40px;
  border-left: 3px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(42,36,32,0.08);
}

.related-card .related-cat {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.related-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.related-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 20px;
}

.related-card .related-arrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--deep-taupe);
}

/* CTA band */
.service-cta {
  background: var(--charcoal);
  padding: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(184,151,106,0.06);
}

.service-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 20px;
  position: relative;
}

.service-cta h2 em { font-style: italic; color: var(--taupe); }

.service-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.9;
  position: relative;
}

/* ============================================
   CATEGORY PAGE
   ============================================ */

.category-hero {
  padding: 180px 100px 90px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-hero .section-tag { justify-content: center; }
.category-hero .section-tag::before { display: none; }

.category-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.category-hero h1 em { font-style: italic; color: var(--deep-taupe); }

.category-hero p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--light-text);
  max-width: 560px;
  margin: 0 auto;
}

.category-grid {
  padding: 90px 100px 110px;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cat-card {
  text-decoration: none;
  background: var(--cream);
  display: block;
  transition: transform 0.35s, box-shadow 0.35s;
  overflow: hidden;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(42,36,32,0.12);
}

.cat-card-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s;
}

.cat-card-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(30,20,12,0.25), transparent 50%);
}

.cat-card-body { padding: 32px 32px 36px; }

.cat-card-body .related-cat {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.cat-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.cat-card-body p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--light-text);
  margin-bottom: 20px;
}

.cat-card-body .related-arrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--deep-taupe);
}

/* IV Therapy collection */
.iv-collection {
  padding: 100px;
  background: var(--cream);
}

.iv-collection-header {
  max-width: 760px;
  margin-bottom: 54px;
}

.iv-collection-header > p:last-child {
  max-width: 680px;
  color: var(--light-text);
  line-height: 1.8;
}

.iv-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.iv-menu-card,
.iv-addons,
.iv-care {
  background: var(--warm-white);
  border: 1px solid rgba(124,96,68,0.18);
  padding: 30px;
}

.iv-menu-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.iv-menu-card h3,
.iv-addons h3,
.iv-care h3,
.iv-disclaimer h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--charcoal);
}

.iv-menu-card > span {
  display: block;
  margin: -3px 0 12px;
  color: var(--deep-taupe);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.iv-menu-card p,
.iv-care p {
  color: var(--light-text);
  font-size: 13px;
  line-height: 1.75;
}

.iv-option-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(124,96,68,0.18);
}

.iv-option-list span {
  padding: 9px 0;
  border-bottom: 1px dotted rgba(124,96,68,0.25);
  color: var(--mid);
  font-size: 13px;
}

.iv-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.iv-addons h3,
.iv-care h3 { margin-bottom: 20px; }

.iv-care ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 20px 0 24px;
}

.iv-care li {
  color: var(--mid);
  font-size: 13px;
}

.iv-care li::before {
  content: '✓';
  color: var(--gold);
  margin-right: 10px;
}

.iv-disclaimer {
  margin-top: 18px;
  padding: 32px;
  background: var(--charcoal);
  border-left: 3px solid var(--gold);
}

.iv-disclaimer h3 {
  color: var(--warm-white);
  margin-bottom: 14px;
}

.iv-disclaimer p {
  max-width: 920px;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.75;
}

.iv-disclaimer p + p { margin-top: 8px; }

@media (max-width: 1100px) {
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-hero h1 { font-size: 50px; }
}

@media (max-width: 900px) {
  .category-hero { padding: 150px 40px 70px; }
  .category-grid { padding: 70px 40px 90px; }
  .iv-collection { padding: 80px 40px; }
  .iv-menu-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-hero h1 { font-size: 42px; }
  .iv-menu-grid,
  .iv-support-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
footer.site-footer {
  background: #1A1410;
  padding: 80px 100px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(196,168,130,0.15);
}

.footer-brand .footer-logo {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-brand .footer-logo img {
  height: 104px;
  width: auto;
  display: block;
}

.footer-brand .footer-tagline {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.35);
  max-width: 280px;
}

.footer-contact {
  margin-top: 22px;
  display: grid;
  gap: 9px;
  font-style: normal;
}

.footer-contact p { margin: 0; }

.footer-contact a {
  color: rgba(255,255,255,0.48);
  text-decoration: none;
}

.footer-contact a:hover { color: var(--taupe); }

.footer-contact strong {
  color: rgba(255,255,255,0.62);
  font-weight: 500;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 24px;
  font-weight: 400;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-links span {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
  font-weight: 300;
}

.footer-links a:hover { color: var(--taupe); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-bottom p a { color: var(--taupe); text-decoration: none; }

.footer-socials { display: flex; gap: 16px; }

.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(196,168,130,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}

.social-link:hover { border-color: var(--taupe); color: var(--taupe); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1300px) {
  nav.site-nav { padding: 0 30px; }
  .nav-links { gap: 20px; }
  .nav-cta { padding: 10px 18px; }
  .nav-logo img { height: 44px; }
}

@media (max-width: 1100px) {
  .service-hero h1 { font-size: 50px; }
  .section-title { font-size: 44px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .journey-steps { grid-template-columns: 1fr 1fr; }
  .dropdown { grid-template-columns: repeat(2, max-content); }
}

@media (max-width: 900px) {
  nav.site-nav { padding: 0 30px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 40px; }
  .footer-brand .footer-logo img { height: 92px; }

  .service-hero { grid-template-columns: 1fr; min-height: auto; }
  .service-hero-right { min-height: 320px; }
  .service-hero-left { padding: 70px 40px; }
  .service-hero h1 { font-size: 44px; }
  .service-facts { flex-wrap: wrap; gap: 24px; }
  .service-fact { border-right: none; padding-right: 24px; margin-right: 0; }

  .service-overview { grid-template-columns: 1fr; padding: 80px 40px; gap: 40px; }
  .overview-sticky { position: static; }
  .service-benefits { padding: 80px 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .service-journey { padding: 80px 40px; }
  .journey-steps { grid-template-columns: 1fr; gap: 36px; }
  .service-faq { grid-template-columns: 1fr; padding: 80px 40px; gap: 30px; }
  .service-related { padding: 80px 40px; }
  .related-grid { grid-template-columns: 1fr; }
  .service-cta { padding: 80px 40px; }
  .service-cta h2 { font-size: 36px; }

  footer.site-footer { padding: 60px 40px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 600px) {
  .service-hero h1 { font-size: 38px; }
  .section-title { font-size: 36px; }
  .treats-list ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== APPROVED CHARCOAL & GOLD BRAND THEME ===== */
nav.site-nav {
  background: rgba(31, 29, 26, 0.96);
  border-bottom-color: rgba(199, 164, 101, 0.34);
  box-shadow: 0 8px 30px rgba(17, 14, 11, 0.16);
}

.nav-logo { gap: 14px; }
.nav-logo img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(229, 199, 139, 0.55);
  box-shadow: 0 0 22px rgba(199, 164, 101, 0.15);
}
.nav-logo .brand-wordmark { display: block; line-height: 1; }
.nav-logo .main-name { color: #F1D6A0; font-size: 18px; letter-spacing: 2.6px; }
.nav-logo .sub-name { color: rgba(246, 240, 232, 0.7); letter-spacing: 5px; }
.nav-links a { color: rgba(246, 240, 232, 0.82); }
.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  border-color: var(--gold);
}
.nav-cta:hover { background: #E0C287 !important; border-color: #E0C287; color: #1F1D1A !important; }
.dropdown,
.mobile-menu {
  background: #27231F;
  border-color: rgba(199, 164, 101, 0.28);
}
.dropdown-col a,
.mobile-menu a,
.mobile-menu .mobile-sub { color: rgba(246, 240, 232, 0.78); }
.nav-hamburger span { background: #E3C98F; }
.nav-hamburger { background: none; border: 0; }

.service-hero-left,
.category-hero {
  background: linear-gradient(145deg, #2C2925 0%, #1F1D1A 100%);
}
.service-hero h1,
.category-hero h1 { color: #F5EEE5; }
.service-hero h1 em,
.category-hero h1 em,
.service-hero-left .breadcrumb a { color: #D1AE70; }
.service-tagline,
.service-hero-left .breadcrumb,
.category-hero p { color: rgba(245, 238, 229, 0.67); }
.service-hero-left .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.service-hero-left .btn-ghost { color: rgba(245, 238, 229, 0.8); }
.service-hero-left .fact-value { color: #F5EEE5; }
.service-hero-left .service-facts { border-top-color: rgba(199, 164, 101, 0.35); }
.service-hero-left .service-fact { border-right-color: rgba(199, 164, 101, 0.3); }
.service-hero-right { background-color: #302C27; background-blend-mode: multiply, normal; }
.cat-card { box-shadow: 0 12px 38px rgba(36, 33, 29, 0.08); }

.footer-brand .footer-logo img {
  height: 210px;
  width: auto;
  border: 1px solid rgba(199, 164, 101, 0.24);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1300px) {
  .nav-logo img { width: 50px; height: 50px; }
  .nav-logo .main-name { font-size: 16px; }
}

@media (max-width: 900px) {
  .nav-logo img { width: 46px; height: 46px; }
  .nav-logo .main-name { font-size: 15px; letter-spacing: 2px; }
  .nav-logo .sub-name { font-size: 8px; letter-spacing: 4px; }
  .footer-brand .footer-logo img { height: 190px; }
}

@media (max-width: 480px) {
  .nav-logo { gap: 9px; }
  .nav-logo img { width: 42px; height: 42px; }
  .nav-logo .main-name { font-size: 13px; letter-spacing: 1.5px; }
  .nav-logo .sub-name { font-size: 7px; letter-spacing: 3px; }
}
