/*
Theme Name: HDC Hair Design Clinic
Theme URI: https://hdchairclinic.co.uk
Author: Hair Design Clinic
Author URI: https://hdchairclinic.co.uk
Description: Professional website theme for HDC Hair Design Clinic, London. Features pages for Male Hair Loss, Female Hair Loss, Laser Therapy, and Specialist Treatments.
Version: 1.0.0
License: Private
Tags: hair-clinic, medical, professional, london
Text Domain: hdc-hair-clinic
*/

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

:root {
  --gold: #b8960c;
  --gold2: #d4a017;
  --dark: #111111;
  --char: #222222;
  --mid: #5a5a6a;
  --light: #f8f4ef;
  --border: #e5ddd4;
  --white: #ffffff;
  --cream: #fdf9f5;
}

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

body {
  font-family: 'Nunito Sans', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
}

/* =====================================================
   TOP BAR
   ===================================================== */
.hdc-topbar {
  background: var(--dark);
  color: #aaa;
  font-size: 12px;
  padding: 7px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hdc-topbar a { color: #aaa; transition: color .2s; }
.hdc-topbar a:hover { color: var(--gold); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.hdc-nav {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.hdc-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  text-decoration: none;
}
.hdc-brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.hdc-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.hdc-brand-name span { color: var(--gold); }
.hdc-brand-tagline {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
}

.hdc-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}
.hdc-nav-links a {
  display: block;
  padding: 20px 15px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--char);
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.hdc-nav-links a:hover,
.hdc-nav-links .current-menu-item a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.hdc-nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-radius: 3px !important;
  padding: 10px 22px !important;
  margin-left: 10px;
  border-bottom: none !important;
  transition: background .2s !important;
}
.hdc-nav-cta:hover { background: var(--gold) !important; }

.hdc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}
.hdc-hamburger span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  display: block;
  transition: all .3s;
}

.hdc-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.hdc-mobile-menu.open { display: flex; }
.hdc-mobile-menu a {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
}
.hdc-mobile-menu a:hover { color: var(--gold); }
.hdc-mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 32px;
  cursor: pointer;
  color: var(--mid);
  background: none;
  border: none;
  line-height: 1;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all .22s;
  border: none;
  text-decoration: none;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(184,150,12,.35); color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--char); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-outline-w { background: transparent; border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-w:hover { border-color: var(--gold); color: var(--gold); }
.btn-white { background: #fff; color: var(--gold); }
.btn-white:hover { background: var(--dark); color: #fff; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

/* =====================================================
   SECTION UTILITIES
   ===================================================== */
.hdc-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.hdc-tag-light { color: #c9a824; }

.hdc-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 12px;
}
.hdc-h2 em { color: var(--gold); font-style: normal; }
.hdc-h2-light { color: #fff; }

.hdc-rule { width: 48px; height: 3px; background: var(--gold); margin: 16px 0; }
.hdc-rule-center { margin: 16px auto; }

.body-text {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.9;
  font-weight: 300;
  max-width: 580px;
}
.body-text + .body-text { margin-top: 14px; }

.hdc-pad { padding: 90px 5%; }
.hdc-pad-sm { padding: 60px 5%; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }
.bg-cream { background: var(--cream); }
.text-center { text-align: center; }

/* =====================================================
   HERO — HOMEPAGE
   ===================================================== */
.hdc-hero {
  min-height: 88vh;
  background: linear-gradient(135deg, #0e0e0e 0%, #1a1206 55%, #211508 100%);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  padding: 80px 5%;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hdc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(184,150,12,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hdc-hero-copy { position: relative; z-index: 1; }
.hdc-hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 66px);
  color: #fff;
  line-height: 1.08;
  margin: 12px 0 20px;
}
.hdc-hero-h1 em { color: var(--gold); font-style: normal; display: block; }
.hdc-hero-sub {
  font-size: 15.5px;
  color: #bbb;
  font-weight: 300;
  max-width: 460px;
  line-height: 1.8;
}

.hdc-hero-media {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hdc-hero-main {
  grid-column: 1 / -1;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  position: relative;
}
.hdc-hero-main img { width: 100%; max-height: 340px; object-fit: cover; object-position: top; }
.hdc-ba-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.85);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 24px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hdc-hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(184,150,12,.2);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  text-align: center;
}
.hdc-hero-card img { width: 100%; height: 150px; object-fit: cover; object-position: top; }
.hdc-hero-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 8px;
  display: block;
}

/* =====================================================
   STATS BAR
   ===================================================== */
.hdc-stats {
  background: var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hdc-stat {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.22);
}
.hdc-stat:last-child { border: none; }
.hdc-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hdc-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-top: 5px;
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.hdc-page-hero {
  background: linear-gradient(135deg, #0e0e0e 0%, #1a1206 55%, #211508 100%);
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 60vh;
}
.hdc-ph-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 56px);
  color: #fff;
  line-height: 1.12;
  margin: 12px 0 18px;
}
.hdc-ph-h1 em { color: var(--gold); font-style: normal; display: block; }
.hdc-ph-copy p { color: #bbb; font-size: 15.5px; font-weight: 300; max-width: 440px; line-height: 1.8; }
.hdc-ph-img { border-radius: 10px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.55); }
.hdc-ph-img img { width: 100%; object-fit: cover; max-height: 420px; }

/* =====================================================
   SPLIT SECTIONS
   ===================================================== */
.hdc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.hdc-split.reverse > *:first-child { order: 2; }
.hdc-split.reverse > *:last-child { order: 1; }

.hdc-img-frame { border-radius: 8px; overflow: hidden; box-shadow: 0 16px 50px rgba(0,0,0,.14); }
.hdc-img-frame img { width: 100%; object-fit: cover; }

/* =====================================================
   TREATMENT CARDS GRID
   ===================================================== */
.hdc-treat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.hdc-treat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all .25s;
}
.hdc-treat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
  border-color: var(--gold);
}
.hdc-treat-card img { width: 100%; height: 200px; object-fit: cover; }
.hdc-treat-body { padding: 22px 20px; }
.hdc-treat-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 8px; }
.hdc-treat-body p { font-size: 13px; color: var(--mid); line-height: 1.7; font-weight: 300; }
.hdc-treat-body a {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* =====================================================
   LUXURY BANNER
   ===================================================== */
.hdc-luxury {
  background: linear-gradient(135deg, #0e0e0e 0%, #1c1305 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hdc-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,150,12,.1) 0%, transparent 70%);
}
.hdc-luxury h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.5vw, 40px);
  color: var(--gold);
  position: relative;
  margin-bottom: 8px;
}
.hdc-luxury .sub { color: #999; font-size: 15px; font-weight: 300; position: relative; }
.hdc-luxury .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 34px);
  color: #fff;
  font-style: italic;
  margin: 14px 0 30px;
  position: relative;
  display: block;
}

/* =====================================================
   CARD GRIDS (3-col)
   ===================================================== */
.hdc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.hdc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  transition: all .25s;
}
.hdc-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.09);
}
.hdc-card-icon { font-size: 34px; margin-bottom: 14px; }
.hdc-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 21px; margin-bottom: 8px; }
.hdc-card p { font-size: 13.5px; color: var(--mid); font-weight: 300; line-height: 1.75; }

/* Cause cards (left border style) */
.hdc-cause-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 22px 22px;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: all .25s;
}
.hdc-cause-card:hover { transform: translateX(5px); box-shadow: 0 8px 26px rgba(0,0,0,.1); }
.hdc-cause-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin-bottom: 8px; }
.hdc-cause-card p { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.7; }

/* Values (icon + text) */
.hdc-value-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all .25s;
}
.hdc-value-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.hdc-value-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.hdc-value-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin-bottom: 6px; }
.hdc-value-card p { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.7; }

/* =====================================================
   PROCESS STEPS
   ===================================================== */
.hdc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.hdc-step { text-align: center; }
.hdc-step-num {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(184,150,12,.35);
}
.hdc-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin-bottom: 8px; }
.hdc-step p { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.7; }

/* =====================================================
   RESULTS BAND
   ===================================================== */
.hdc-results-band {
  background: var(--gold);
  padding: 60px 5%;
  text-align: center;
}
.hdc-results-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  margin-bottom: 12px;
}
.hdc-results-band p { color: rgba(255,255,255,.9); font-size: 15px; max-width: 580px; margin: 0 auto 36px; font-weight: 300; }
.hdc-results-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 680px; margin: 0 auto; }
.hdc-r-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; color: #fff; line-height: 1; }
.hdc-r-label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.82); margin-top: 6px; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.hdc-testimonials {
  background: linear-gradient(135deg, #111 0%, #1a1205 100%);
  padding: 90px 5%;
}
.hdc-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.hdc-test-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,150,12,.18);
  border-radius: 6px;
  padding: 28px 24px;
}
.hdc-stars { color: var(--gold); font-size: 17px; margin-bottom: 12px; }
.hdc-test-card p { color: #ccc; font-size: 14px; font-style: italic; line-height: 1.8; margin-bottom: 18px; }
.hdc-test-card strong { color: var(--gold); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-style: normal; }

/* =====================================================
   QUOTE BAND
   ===================================================== */
.hdc-quote-band {
  background: linear-gradient(135deg, #111 0%, #1c1305 100%);
  padding: 70px 5%;
  text-align: center;
}
.hdc-quote-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.8vw, 30px);
  color: var(--gold);
  font-style: italic;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.55;
}
.hdc-quote-band cite { display: block; color: #888; font-size: 12px; margin-top: 18px; letter-spacing: 1.5px; text-transform: uppercase; }

/* =====================================================
   STORIES GRID
   ===================================================== */
.hdc-stories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.hdc-story {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.hdc-story img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.hdc-story:hover img { transform: scale(1.07); }
.hdc-story-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
}
.hdc-story:hover .hdc-story-ov { opacity: 1; }
.hdc-story-ov span { color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* =====================================================
   FAQ
   ===================================================== */
.hdc-faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; margin-top: 44px; }
.hdc-faq { border-bottom: 1px solid var(--border); cursor: pointer; }
.hdc-faq-q {
  padding: 17px 0;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
  user-select: none;
}
.hdc-faq-q:hover { color: var(--gold); }
.hdc-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  transition: all .2s;
}
.hdc-faq.open .hdc-faq-icon { background: var(--gold); color: #fff; border-color: var(--gold); }
.hdc-faq-a {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  font-weight: 300;
}
.hdc-faq.open .hdc-faq-a { max-height: 200px; padding-bottom: 16px; }

/* =====================================================
   CTA BAND
   ===================================================== */
.hdc-cta-band {
  background: var(--dark);
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.hdc-cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 34px);
  color: #fff;
}
.hdc-cta-band p { color: #888; font-size: 14px; font-weight: 300; margin-top: 6px; }

/* =====================================================
   HAIR TYPES DARK
   ===================================================== */
.hdc-types-dark { background: var(--dark); padding: 80px 5%; }
.hdc-types-dark h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 40px);
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}
.hdc-types-dark .tsub { color: #888; text-align: center; font-size: 15px; font-weight: 300; margin-bottom: 40px; }
.hdc-type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hdc-type-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,150,12,.18);
  border-radius: 6px;
  padding: 26px 20px;
  text-align: center;
  transition: all .25s;
}
.hdc-type-card:hover { background: rgba(184,150,12,.08); border-color: var(--gold); }
.hdc-type-card .ic { font-size: 32px; margin-bottom: 12px; }
.hdc-type-card h4 { color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 18px; margin-bottom: 6px; }
.hdc-type-card p { color: #888; font-size: 12px; font-weight: 300; line-height: 1.6; }

/* =====================================================
   FLOAT CTA
   ===================================================== */
.hdc-float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: #fff;
  padding: 13px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: 0 6px 24px rgba(184,150,12,.5);
  z-index: 9998;
  transition: all .22s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.hdc-float-cta:hover { background: var(--gold2); transform: translateY(-2px); color: #fff; }

/* =====================================================
   FOOTER
   ===================================================== */
.hdc-footer { background: #0e0e0e; color: #888; padding: 64px 5% 28px; }
.hdc-footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 44px;
  margin-bottom: 44px;
}
.hdc-footer-logo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }
.hdc-footer-about p { margin-top: 14px; font-size: 13px; line-height: 1.9; color: #777; max-width: 290px; }
.hdc-footer-col h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
}
.hdc-footer-col ul { list-style: none; }
.hdc-footer-col li { margin-bottom: 10px; }
.hdc-footer-col a {
  font-size: 13px;
  color: #777;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hdc-footer-col a::before { content: '›'; color: var(--gold); font-size: 16px; }
.hdc-footer-col a:hover { color: var(--gold); }
.hdc-footer-contact { font-size: 13px; color: #777; line-height: 2.2; }
.hdc-footer-contact strong { color: #bbb; }
.hdc-footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
  color: #555;
}
.hdc-socials { display: flex; gap: 10px; margin-top: 18px; }
.hdc-soc {
  width: 36px;
  height: 36px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #777;
  transition: all .2s;
  text-decoration: none;
}
.hdc-soc:hover { border-color: var(--gold); color: var(--gold); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
.hdc-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.hdc-anim.hdc-in { opacity: 1; transform: translateY(0); }
.hdc-d1 { transition-delay: .12s; }
.hdc-d2 { transition-delay: .22s; }
.hdc-d3 { transition-delay: .34s; }
.hdc-d4 { transition-delay: .46s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hdc-treat-grid { grid-template-columns: repeat(2, 1fr); }
  .hdc-type-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hdc-topbar { display: none; }
  .hdc-nav-links { display: none; }
  .hdc-hamburger { display: flex; }
  .hdc-hero { grid-template-columns: 1fr; min-height: auto; padding: 50px 5%; }
  .hdc-page-hero { grid-template-columns: 1fr; min-height: auto; padding: 50px 5%; }
  .hdc-split { grid-template-columns: 1fr; gap: 36px; }
  .hdc-split.reverse > *:first-child { order: 0; }
  .hdc-split.reverse > *:last-child { order: 0; }
  .hdc-pad { padding: 56px 5%; }
  .hdc-stats { grid-template-columns: repeat(2, 1fr); }
  .hdc-steps { grid-template-columns: repeat(2, 1fr); }
  .hdc-stories-grid { grid-template-columns: repeat(3, 1fr); }
  .hdc-faq-cols { grid-template-columns: 1fr; }
  .hdc-cta-band { flex-direction: column; text-align: center; }
  .hdc-footer-grid { grid-template-columns: 1fr 1fr; }
  .hdc-results-stats { grid-template-columns: 1fr; }
  .hdc-test-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hdc-treat-grid { grid-template-columns: 1fr; }
  .hdc-card-grid { grid-template-columns: 1fr; }
  .hdc-steps { grid-template-columns: 1fr; }
  .hdc-type-grid { grid-template-columns: 1fr 1fr; }
  .hdc-stories-grid { grid-template-columns: repeat(2, 1fr); }
  .hdc-footer-grid { grid-template-columns: 1fr; }
}
