:root {
  --navy: #0b1f3f;
  --navy-deep: #07162e;
  --navy-soft: #16315c;
  --gold: #c9a227;
  --gold-light: #e8c76b;
  --gold-dark: #a8841a;
  --cream: #f7f3ea;
  --cream-2: #efe8d8;
  --white: #ffffff;
  --text: #3d4654;
  --muted: #6b7380;
  --line: #e4dcc8;
  --shadow: 0 16px 40px rgba(11, 31, 63, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
}

.section-title {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold-dark);
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title p {
  color: var(--muted);
  margin-top: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.28);
}

.btn-gold:hover { filter: brightness(1.05); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

/* Top bar */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  font-size: 0.86rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 42px;
  flex-wrap: wrap;
  padding: 0.45rem 0;
}

.topbar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.topbar-left span,
.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-left span {
  white-space: normal;
  line-height: 1.35;
}

.topbar i { color: var(--gold); }

.topbar-right a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.45);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  transition: 0.2s ease;
}

.topbar-right a:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 108px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-clinic {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.68rem;
  margin-top: 0.15rem;
}

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

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 0.2rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav a:hover,
.nav a.active { color: var(--gold-dark); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin-inline: auto;
}

/* Hero */
.hero {
  padding: 3.2rem 0 2.5rem;
  background:
    radial-gradient(ellipse 40% 60% at 8% 20%, rgba(201,162,39,0.12), transparent 60%),
    linear-gradient(180deg, #fffdf8 0%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  margin-bottom: 0.85rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 34rem;
}

.hero-credentials {
  margin: -0.4rem 0 1.4rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 0 10px 10px 0;
  max-width: 28rem;
}

.hero-credentials strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.hero-credentials span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero-credentials span + span {
  color: var(--navy-soft);
  font-weight: 600;
  font-size: 0.86rem;
  margin-top: 0.15rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.hero-point {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem 0.7rem;
  text-align: center;
}

.hero-point i {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.hero-point strong {
  display: block;
  color: var(--navy);
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
  outline: 1px solid var(--gold);
}

.hero-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-height: min(560px, 72vh);
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  max-width: 320px;
  background: rgba(11,31,63,0.92);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.hero-badge strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.hero-badge span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.9;
  line-height: 1.35;
  margin-top: 0.2rem;
}

/* Stats */
.stats {
  background: var(--navy);
  padding: 1.6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 0.4rem 0.5rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201,162,39,0.35);
}

.stat-item strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.stat-item span {
  font-size: 0.88rem;
  opacity: 0.9;
}

/* Sections */
.section { padding: 4.2rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.6rem 1.25rem;
  text-align: center;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201,162,39,0.45);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  background: linear-gradient(180deg, #fff8e8, var(--cream-2));
  border: 1px solid rgba(201,162,39,0.35);
  font-size: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.service-card p { font-size: 0.9rem; color: var(--muted); }

.service-result-img {
  width: 100%;
  margin-top: 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.hair-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}

.hair-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.3rem 0.9rem;
  text-align: center;
  transition: 0.3s ease;
}

.hair-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.hair-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-top: 0.7rem;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.result-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.result-box h3 {
  background: var(--cream-2);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.result-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.85rem;
}

.result-photos img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.result-full {
  padding: 0.85rem;
  background: #fffaf3;
}

.result-full img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.result-box figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0 1rem 1rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.video-card h3 {
  background: var(--cream-2);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.video-wrap {
  position: relative;
  background: #0b1f3f;
  aspect-ratio: 1 / 1;
  max-height: 420px;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #0b1f3f;
}

.video-card p {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  padding: 0.85rem 1rem 1rem;
}

.videos-grid-home {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid-real {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid-real img {
  height: 240px;
  object-fit: cover;
  object-position: center top;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.why-item {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.3rem 0.8rem;
}

.why-item i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.why-item h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.why-item p {
  font-size: 0.82rem;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover { transform: scale(1.03); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-step {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  border: 1px solid var(--line);
}

.process-step span {
  display: inline-block;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.process-step h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.86rem;
  color: var(--muted);
}

/* Contact strip */
.contact-strip {
  padding: 0 0 4rem;
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.book-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 1.6rem;
}

.book-panel h3 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.book-panel .phone {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.info-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.4rem;
}

.info-panel h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-panel h3 i { color: var(--gold); }

.info-panel p { color: var(--muted); margin-bottom: 0.85rem; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  padding-top: 3.2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201,162,39,0.18), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.6fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-brand .brand-name { color: var(--gold-light); }
.footer-brand .brand-clinic { color: rgba(255,255,255,0.85); }
.footer-brand p { margin: 1rem 0; max-width: 16rem; font-size: 0.9rem; }

.socials {
  display: flex;
  gap: 0.55rem;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-light);
  display: grid;
  place-items: center;
}

.socials a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-light); }

.footer-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  row-gap: 0.35rem;
}

.footer-services li {
  margin-bottom: 0;
}

.footer-services a {
  font-size: 0.84rem;
  line-height: 1.35;
}

.footer-col .contact-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}

.footer-col .contact-list i {
  color: var(--gold);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(201,162,39,0.25);
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
}

.footer-bottom a:hover { color: var(--gold-light); }

/* Inner pages */
.page-hero {
  padding: 3.4rem 0 2.4rem;
  background:
    linear-gradient(180deg, #fffdf8, var(--cream));
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.6rem;
}

.page-lead {
  max-width: 40rem;
  margin: 0 auto;
  color: var(--muted);
}

.page-section { padding: 3.5rem 0; }

.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 14px;
  border: 3px solid var(--white);
  outline: 1px solid var(--gold);
  box-shadow: var(--shadow);
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
}

/* Clinic showcase */
.clinic-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.clinic-shot {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 31, 63, 0.08);
}

.clinic-shot img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  flex: 1 1 auto;
}

.clinic-shot-main img {
  height: 380px;
}

.clinic-shot figcaption {
  margin-top: auto;
  min-height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.clinic-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(11, 31, 63, 0.06);
}

.clinic-tile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.clinic-tile figcaption {
  padding: 0.55rem 0.6rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.02em;
}

.clinic-inline {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin-bottom: 1.1rem;
  border: 1px solid var(--line);
}

.check-list i { color: var(--gold); margin-top: 0.25rem; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.appointment-form {
  display: grid;
  gap: 0.8rem;
}

.field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 0.9rem;
  min-height: 50px;
}

.field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

.field i { color: var(--gold); }

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  font: inherit;
  color: var(--navy);
  padding: 0.8rem 0;
}

.field textarea { resize: vertical; }

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 1.5rem;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 1.3rem 0 0.45rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.blog-card .body { padding: 1.1rem; }
.blog-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .results-grid,
  .about-grid,
  .contact-page-grid,
  .contact-strip-grid,
  .clinic-showcase {
    grid-template-columns: 1fr;
  }

  .clinic-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid,
  .blog-grid,
  .results-grid-wide,
  .gallery-grid-real,
  .videos-grid,
  .videos-grid-home { grid-template-columns: 1fr 1fr; }

  .hair-grid,
  .why-grid,
  .gallery-grid,
  .stats-grid,
  .footer-grid,
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:not(:last-child)::after { display: none; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 145px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.3rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

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

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  body.menu-open { overflow: hidden; }

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

@media (max-width: 640px) {
  .services-grid,
  .hair-grid,
  .why-grid,
  .gallery-grid,
  .gallery-grid-real,
  .stats-grid,
  .footer-grid,
  .blog-grid,
  .result-photos,
  .results-grid-wide,
  .videos-grid,
  .videos-grid-home,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .brand-tag { display: none; }

  .hero-frame img {
    max-height: 420px;
    height: auto;
  }

  .clinic-shot img,
  .clinic-shot-main img {
    height: 240px;
  }

  .clinic-shot figcaption {
    min-height: 0;
  }

  .clinic-tile img {
    height: 130px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

.hair-grid-single {
  grid-template-columns: repeat(auto-fit, minmax(260px, 420px));
  justify-content: center;
  max-width: 900px;
  margin-inline: auto;
}

.hair-grid-single .hair-card {
  padding: 1.8rem 1.4rem;
}
