/* Eagle Hair Patch Studio — Professional Edition */
:root {
  --gold: #B8860B;
  --gold-light: #D4AF37;
  --gold-dark: #8B6914;
  --gold-bg: rgba(184, 134, 11, 0.08);
  --ink: #1c1c1e;
  --ink-soft: #3d3d42;
  --muted: #6b6b73;
  --cream: #FAF9F7;
  --white: #ffffff;
  --border: #e8e6e1;
  --shadow-sm: 0 2px 8px rgba(28, 28, 30, 0.06);
  --shadow-md: 0 8px 30px rgba(28, 28, 30, 0.08);
  --shadow-lg: 0 20px 60px rgba(28, 28, 30, 0.12);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 72px;
  --topbar-h: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(1180px, 92vw); margin: 0 auto; }
.accent { color: var(--gold); }

/* ─── Topbar ─── */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-light);
  font-weight: 600;
  transition: opacity 0.2s;
}
.topbar-phone:hover { opacity: 0.85; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-1px);
}
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s var(--ease);
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo-mark.sm { width: 40px; height: 40px; }
.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 6px;
  transition: all 0.25s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: var(--gold-bg);
}
.header-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: heroKen 20s ease-in-out infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 28, 30, 0.95) 0%,
    rgba(28, 28, 30, 0.6) 45%,
    rgba(28, 28, 30, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 5rem;
  max-width: 720px;
}
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) forwards;
}
.pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 50px;
}
.pill-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s 0.1s var(--ease) forwards;
  opacity: 0;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
  opacity: 0;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
  opacity: 0;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s var(--ease) forwards;
  opacity: 0;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  line-height: 1.2;
}
.trust-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Marquee ─── */
.marquee {
  background: var(--ink);
  color: var(--gold-light);
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Sections ─── */
.section { padding: 5.5rem 0; }
.section-intro { max-width: 640px; margin-bottom: 3.5rem; }
.section-intro.center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-desc { color: var(--muted); font-size: 1.05rem; }

/* Reveal — content visible by default; animates when JS adds .visible */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
html.js-anim .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
}
html.js-anim .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Why / About ─── */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.why-card {
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.9rem; color: var(--muted); }

.about-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(28,28,30,0.9));
  color: var(--white);
}
.caption-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}
.caption-text { font-size: 0.95rem; }
.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.check-list { margin: 1.5rem 0 2rem; }
.check-list li {
  padding: 0.55rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c1c1e' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
  border-radius: 50%;
}

/* ─── Services ─── */
.services { background: var(--cream); }
.services-list { display: flex; flex-direction: column; gap: 3rem; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease);
}
.service-row:hover { box-shadow: var(--shadow-md); }
.service-row.reverse .service-visual { order: 2; }
.service-row.reverse .service-detail { order: 1; }
.service-visual {
  position: relative;
  height: 100%;
  min-height: 320px;
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.service-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
}
.service-detail { padding: 2.5rem 2.5rem 2.5rem 0; }
.service-row.reverse .service-detail { padding: 2.5rem 0 2.5rem 2.5rem; }
.service-index {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}
.service-detail h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
}
.service-detail > p { color: var(--muted); margin-bottom: 1.25rem; font-size: 0.95rem; }
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.feature-tags li {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  background: var(--gold-bg);
  color: var(--gold-dark);
  border-radius: 50px;
  border: 1px solid rgba(184, 134, 11, 0.2);
}

/* ─── Materials ─── */
.materials { background: var(--ink); color: var(--white); }
.materials .eyebrow { color: var(--gold-light); }
.materials h2 { color: var(--white); }
.materials .accent { color: var(--gold-light); }
.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.materials-content > p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.material-specs { display: flex; flex-direction: column; gap: 1rem; }
.spec {
  padding: 1.25rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s;
}
.spec:hover { border-color: var(--gold-light); }
.spec h4 { color: var(--gold-light); font-size: 1rem; margin-bottom: 0.35rem; }
.spec p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.materials-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.mat-img-1 {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  object-fit: cover;
}
.mat-img-2 {
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
  margin-top: -4rem;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-lg);
}

/* ─── Before/After slider (aligned) ─── */
.results { background: var(--white); }
.ba-wrapper { max-width: 520px; margin: 0 auto 3rem; }
.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow-lg);
  background: #e8e6e1;
  --ba-pos: 50% 32%;
  --ba-scale: 1;
}
.ba-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 620px;
  overflow: hidden;
}
.ba-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--ba-pos);
  transform: scale(var(--ba-scale));
  transform-origin: var(--ba-pos);
  display: block;
  pointer-events: none;
}
.ba-photo-before { z-index: 0; }
.ba-photo-after-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0 0 0 50%);
}
.ba-photo-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ba-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  z-index: 4;
  pointer-events: none;
}
.ba-badge-right { left: auto; right: 1.25rem; background: var(--gold); color: var(--ink); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: var(--white);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.35);
}
.ba-handle-knob {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.ba-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  border: none;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(28,28,30,0.85));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-label { transform: translateY(0); }

/* ─── Process ─── */
.process { background: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.88rem; color: var(--muted); }
.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--gold-light), var(--border));
  margin-top: 3.5rem;
  align-self: start;
}

/* ─── Testimonials ─── */
.testimonials { background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card footer { font-size: 0.85rem; color: var(--muted); }
.testimonial-card footer strong { color: var(--ink); }

/* ─── FAQ ─── */
.faq { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.faq-intro .btn { margin-top: 1.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: var(--gold-light); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2a2e 100%);
  padding: 4rem 0;
}
.cta-inner { text-align: center; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-inner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.cta-banner .btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.cta-banner .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ─── Contact ─── */
.contact { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.info-card-link:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gold-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.info-icon svg { width: 22px; height: 22px; }
.info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.info-value { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  min-height: 420px;
}
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer .logo-name { color: var(--white); }
.footer .logo-sub { color: rgba(255,255,255,0.5); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-col a,
.footer-address {
  display: block;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 30, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 2.5rem; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); color: var(--ink); }

/* ─── Float actions ─── */
.float-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease);
}
.float-btn:hover { transform: scale(1.08); }
.float-wa { background: #25D366; color: var(--white); }
.float-call {
  background: var(--ink);
  color: var(--gold-light);
  animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(28,28,30,0.3); }
  50% { box-shadow: 0 4px 30px rgba(184, 134, 11, 0.4); }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-showcase,
  .materials-grid,
  .contact-layout,
  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-row,
  .service-row.reverse { grid-template-columns: 1fr; }
  .service-row.reverse .service-visual,
  .service-row.reverse .service-detail { order: unset; }
  .service-detail,
  .service-row.reverse .service-detail { padding: 2rem; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .step-connector { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mat-img-2 { margin-top: 0; }
}

@media (max-width: 768px) {
  .topbar-item:not(.topbar-phone) { display: none; }
  .nav {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s var(--ease);
    z-index: 999;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero-content { padding: 3rem 0 4rem; }
  .hero-trust { gap: 1rem; }
  .trust-divider { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* ─── Complete site extras ─── */
.text-center { text-align: center; }
.btn-block { width: 100%; }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--ink);
  background: var(--cream);
}

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  margin-top: 0;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; font-size: 1.05rem; }

.services-preview { background: var(--white); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.svc-card {
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.svc-card-featured {
  background: var(--gold-bg);
  border-color: var(--gold-light);
}
.svc-card-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
}
.svc-card h3 { font-size: 1rem; margin: 0.5rem 0 0.35rem; }
.svc-card p { font-size: 0.85rem; color: var(--muted); }

.hair-loss { background: var(--cream); }
.loss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.loss-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.loss-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-sm); }
.loss-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.5rem; }
.loss-card p { font-size: 0.9rem; color: var(--muted); }

.packages { background: var(--white); }
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.package-card {
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.35s var(--ease);
}
.package-card:hover { box-shadow: var(--shadow-md); }
.package-featured {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}
.package-card h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 0.5rem; }
.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.package-card ul { margin-bottom: 1.5rem; }
.package-card ul li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--muted);
}
.package-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.gallery-full { grid-template-columns: repeat(4, 1fr); }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p { color: var(--muted); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-bg);
}
.form-note { font-size: 0.9rem; color: var(--muted); margin-top: 1rem; }
.form-note a { color: var(--gold-dark); font-weight: 600; }

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}
.error-page h1 {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
}

html:target { scroll-margin-top: 100px; }
[id] { scroll-margin-top: 100px; }

@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .loss-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; }
  .package-featured { transform: none; }
  .gallery-full { grid-template-columns: repeat(3, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .svc-grid { grid-template-columns: 1fr; }
  .loss-grid { grid-template-columns: 1fr; }
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
}
