/* ─────────────────────────────────────
   LASH LAB LONDON — Styles (mkbookings demo)
   Palette: Near-Black · Warm Champagne · Cream
───────────────────────────────────── */

html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

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

:root {
  --bg:       #faf9f7;
  --white:    #ffffff;
  --dark:     #0e0d0c;
  --dark2:    #181614;
  --gold:     #b8956a;
  --gold-lt:  rgba(184,149,106,0.1);
  --gold-md:  rgba(184,149,106,0.25);
  --blush:    #f3ede6;
  --text:     #1c1a17;
  --muted:    #8c8076;
  --border:   #e2dbd2;
  --surface:  #f0e8de;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 36px; }
.section    { padding: 96px 0; }

/* ── Typography helpers ── */
.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.section-aside {
  font-size: 0.87rem;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
  line-height: 1.65;
}
.section-label-light { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title-light { font-family: var(--font-display); font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 700; color: var(--bg); line-height: 1.1; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #c9a77a; transform: translateY(-1px); }

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(250,249,247,0.65);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 14px 30px;
  border: 1px solid rgba(250,249,247,0.22);
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline-hero:hover { color: var(--bg); border-color: rgba(250,249,247,0.5); }

.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-wa-large:hover { background: #1ebe5d; transform: translateY(-1px); }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: #c9a77a; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(250,249,247,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-light:hover { border-color: var(--bg); background: rgba(250,249,247,0.06); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,249,247,0.97);
  border-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(28,26,22,0.06);
}
.nav.scrolled .nav-logo-main { color: var(--text); }
.nav.scrolled .nav-logo-city { color: var(--muted); }
.nav.scrolled .nav-links a   { color: var(--muted); }
.nav.scrolled .nav-links a:hover { color: var(--text); }
.nav.scrolled .nav-cta { background: var(--gold); color: var(--dark); border-color: transparent; }
.nav.scrolled .nav-toggle span { background: var(--text); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { display: flex; flex-direction: column; flex-shrink: 0; line-height: 1; }
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  transition: color 0.3s;
}
.nav-logo-city {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 32px; list-style: none; margin-left: auto; }
.nav-links a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  margin-left: 8px;
  flex-shrink: 0;
}
.nav-cta:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.36); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: #fff; transition: background 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--dark);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 56px 40px;
  gap: 52px;
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.mobile-menu ul a {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 700;
  color: var(--bg);
  transition: color 0.2s;
}
.mobile-menu ul a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  background: var(--dark);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 36px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 38%, rgba(184,149,106,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; }
.hero-eyebrow {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}
.hero-heading {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 36px;
}
.hero-heading em {
  font-style: italic;
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 700;
  color: var(--bg);
  line-height: 0.9;
}
.hero-heading span {
  font-style: normal;
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: rgba(250,249,247,0.28);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-top: 18px;
}
.hero-sub {
  font-size: 0.98rem;
  color: rgba(250,249,247,0.45);
  max-width: 400px;
  margin: 0 auto 48px;
  line-height: 1.8;
  font-weight: 300;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,249,247,0.18);
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--blush);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 52px;
}
.stat-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.stat-n {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-l {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SERVICES ── */
.services { background: var(--white); border-top: 1px solid var(--border); }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover { box-shadow: 0 6px 28px rgba(28,26,22,0.08); transform: translateY(-2px); }
.service-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  border-top: 3px solid var(--gold);
}
.service-card.featured .sc-tag  { color: var(--gold); border-color: rgba(184,149,106,0.28); }
.service-card.featured .sc-dur  { color: rgba(250,249,247,0.3); }
.service-card.featured .sc-name { color: var(--bg); }
.service-card.featured .sc-desc { color: rgba(250,249,247,0.45); }
.service-card.featured .sc-features li { color: rgba(250,249,247,0.55); border-color: rgba(250,249,247,0.08); }
.service-card.featured .sc-features li::before { color: var(--gold); }
.service-card.featured .sc-price { color: rgba(250,249,247,0.5); }
.service-card.featured .sc-price strong { color: var(--bg); }
.service-card.featured .sc-btn { background: var(--gold); color: var(--dark); }
.service-card.featured .sc-btn:hover { background: #c9a77a; }
.service-card.featured:hover { background: #1e1c1a; }

.sc-popular {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-lt);
  border: 1px solid var(--gold-md);
  padding: 5px 12px;
  text-align: center;
  margin-bottom: 16px;
  align-self: flex-start;
  border-radius: 2px;
}
.sc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.sc-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-md);
  padding: 4px 10px;
  border-radius: 2px;
}
.sc-dur { font-size: 0.72rem; color: var(--muted); }
.sc-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.sc-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.sc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}
.sc-features li {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 0.65rem; }
.sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.sc-price { font-size: 0.8rem; color: var(--muted); }
.sc-price strong { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-left: 3px; }
.sc-btn {
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.sc-btn:hover { background: var(--dark); }
.services-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 18px 24px;
  border: 1px solid var(--border);
  background: var(--blush);
}

/* ── PROCESS ── */
.process { background: var(--blush); border-top: 1px solid var(--border); }
.process-header { margin-bottom: 56px; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}
.step { padding: 0 20px; }
.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 14px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
.step-arrow {
  color: var(--gold);
  opacity: 0.35;
  font-size: 1.3rem;
  padding-top: 48px;
  align-self: start;
  flex-shrink: 0;
}

/* ── BEFORE & AFTER GALLERY ── */
.gallery { background: var(--white); border-top: 1px solid var(--border); }
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.gallery-aside { font-size: 0.86rem; color: var(--muted); max-width: 280px; text-align: right; line-height: 1.65; }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ba-card {
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ba-card:hover { box-shadow: 0 8px 32px rgba(28,26,22,0.1); transform: translateY(-2px); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; height: 240px; }
.ba-before {
  background: linear-gradient(160deg, #d5ccc2 0%, #beb3a5 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 10px 12px;
  border-right: 1px solid rgba(0,0,0,0.05);
}
.ba-after {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px 12px;
}
.ba-after--classic { background: linear-gradient(160deg, #221b12 0%, #362a18 100%); }
.ba-after--hybrid  { background: linear-gradient(160deg, #1a1510 0%, #28200e 100%); }
.ba-after--volume  { background: linear-gradient(160deg, #120e08 0%, #1c1408 100%); }
.ba-pill {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(40,35,28,0.65);
  background: rgba(255,255,255,0.75);
  padding: 3px 9px;
  border-radius: 20px;
}
.ba-pill.after { color: rgba(250,249,247,0.9); background: rgba(184,149,106,0.28); }
.ba-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-top: 2px solid var(--gold);
  background: var(--white);
}
.ba-style { font-size: 0.84rem; font-weight: 600; color: var(--text); }
.ba-cta   { font-size: 0.72rem; color: var(--gold); font-weight: 600; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--blush); border-top: 1px solid var(--border); }
.testimonials-header { margin-bottom: 44px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
}
.t-stars { color: var(--gold); font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 16px; }
.t-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}
.t-author { display: flex; flex-direction: column; gap: 3px; padding-top: 16px; border-top: 1px solid var(--border); }
.t-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.t-type { font-size: 0.7rem; color: var(--gold); }

/* ── FAQ ── */
.faq { background: var(--bg); border-top: 1px solid var(--border); }
.faq-header { margin-bottom: 44px; }
.faq-list { max-width: 720px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-caret {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-caret { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { font-size: 0.87rem; color: var(--muted); line-height: 1.75; padding-bottom: 22px; }

/* ── BOOKING ── */
.booking { background: var(--dark2); border-top: 3px solid var(--gold); }
.booking-header { text-align: center; max-width: 520px; margin: 0 auto 40px; }
.booking-sub { font-size: 0.92rem; color: rgba(250,249,247,0.4); margin-top: 14px; line-height: 1.7; }
.booking-wa { text-align: center; margin-bottom: 52px; }
.booking-or { font-size: 0.68rem; color: rgba(250,249,247,0.22); text-transform: uppercase; letter-spacing: 0.16em; margin-top: 18px; }
.booking-form-wrap { max-width: 680px; margin: 0 auto; }
.demo-notice {
  text-align: center;
  font-size: 0.74rem;
  color: rgba(250,249,247,0.45);
  background: rgba(250,249,247,0.04);
  border: 1px solid rgba(250,249,247,0.09);
  padding: 10px 24px;
  margin-bottom: 26px;
  letter-spacing: 0.04em;
  border-radius: 2px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.span2 { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,249,247,0.32);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(250,249,247,0.09);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  border-radius: 2px;
  -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(184,149,106,0.5); background: rgba(255,255,255,0.06); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,249,247,0.14); }
.form-group select option { background: #181614; color: var(--bg); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note { text-align: center; font-size: 0.7rem; color: rgba(250,249,247,0.22); margin-top: 12px; }
.booking-success {
  display: none;
  text-align: center;
  padding: 64px 0;
  max-width: 400px;
  margin: 0 auto;
}
.booking-success.visible { display: block; }
.success-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.booking-success h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bg);
  margin-bottom: 12px;
}
.booking-success p { color: rgba(250,249,247,0.42); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
#bookingForm.hidden { display: none; }

/* ── FOOTER ── */
.footer { background: var(--dark); border-top: 1px solid rgba(250,249,247,0.06); }
.footer-inner { padding: 44px 0; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(250,249,247,0.07);
}
.footer-logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; font-style: italic; color: var(--bg); margin-bottom: 5px; }
.footer-tag  { font-size: 0.7rem; color: rgba(250,249,247,0.28); letter-spacing: 0.08em; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,249,247,0.32); transition: color 0.2s; }
.footer-links a:hover { color: rgba(250,249,247,0.75); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom > p { font-size: 0.7rem; color: rgba(250,249,247,0.22); }
.footer-dev { display: flex; align-items: center; gap: 7px; font-size: 0.7rem; color: rgba(250,249,247,0.22); }
.footer-dev a { color: var(--gold); font-weight: 600; transition: color 0.2s; }
.footer-dev a:hover { color: #c9a77a; }

/* ── Fade-in animation ── */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { flex-wrap: wrap; justify-content: center; }
  .stat { padding: 22px 36px; }
  .stat-sep { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .section    { padding: 64px 0; }
  .container  { padding: 0 20px; }

  .hero { padding: 96px 24px 56px; }
  .hero-heading em { font-size: clamp(3.8rem, 15vw, 9rem); }
  .hero-heading span { font-size: clamp(1rem, 4vw, 1.8rem); }

  .services-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .services-header .section-aside { text-align: left; max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }

  .process-header { margin-bottom: 40px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .step-arrow { display: none; }
  .step { padding: 0; }

  .gallery-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .gallery-aside  { text-align: left; max-width: 100%; }
  .ba-grid { grid-template-columns: 1fr; }

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

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

  .footer-top    { flex-direction: column; }
  .footer-links  { gap: 14px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .section   { padding: 52px 0; }
  .container { padding: 0 16px; }

  .hero { padding: 88px 16px 52px; }
  .hero-heading em { font-size: clamp(3.2rem, 17vw, 6rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions a { justify-content: center; width: 100%; text-align: center; }

  .stats-inner { padding: 0 16px; }
  .stat { padding: 18px 20px; }

  .ba-images { height: 180px; }

  .section-title { font-size: clamp(1.85rem, 8.5vw, 3.2rem); }
}
