/* ============================================================
   KRAPHIE GROUP UK — Premium Property Care & Cleaning
   Design System v2.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Tokens ── */
:root {
  --navy:       #0E1E27;
  --navy-mid:   #1A3040;
  --teal:       #1BB5B2;
  --teal-dark:  #148F8C;
  --teal-light: #E6F9F9;
  --gold:       #C9A84C;
  --gold-light: #FBF5E6;
  --white:      #FFFFFF;
  --off-white:  #F8FAFA;
  --slate:      #2C3E45;
  --muted:      #6B8089;
  --border:     rgba(14,30,39,0.10);
  --border-teal:rgba(27,181,178,0.20);

  --ff-display: 'DM Serif Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --r-sm:  8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(14,30,39,0.08);
  --shadow-md: 0 8px 32px rgba(14,30,39,0.12);
  --shadow-lg: 0 20px 60px rgba(14,30,39,0.16);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--slate);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1,h2,h3 { font-family: var(--ff-display); font-weight: 400; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1rem; font-weight: 600; color: var(--navy); }
p  { color: var(--muted); line-height: 1.75; }

/* ── Layout utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 840px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 128px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* ── Section labels ── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-intro { max-width: 620px; margin: 0 auto 60px; }
.section-intro p { font-size: 1.1rem; margin-top: 14px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--teal);
  padding: 12px 0;
  gap: 6px;
}
.btn--ghost:hover { gap: 10px; }
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: #b8962e; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 18px 36px; font-size: 1rem; border-radius: var(--r-md); }
.btn svg, .btn i { flex-shrink: 0; }

/* ── Badge ── */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 99px;
}
.badge--teal { background: var(--teal-light); color: var(--teal-dark); }
.badge--gold { background: var(--gold-light); color: #8a6a20; }
.badge--navy { background: var(--navy); color: var(--white); }


/* ============================
   NAVIGATION
   ============================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14,30,39,0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
#nav.scrolled {
  background: rgba(14,30,39,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; border-radius: 6px; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-text .name { font-family: var(--ff-display); font-size: 1.1rem; color: var(--white); }
.nav-logo-text .sub { font-size: 0.68rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform var(--transition);
}
.nav-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 10px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  transition: var(--transition);
}
.nav-dropdown-menu a:hover { background: rgba(27,181,178,0.12); color: var(--teal); }
.nav-dropdown-menu .icon { font-size: 16px; width: 20px; text-align: center; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-wa {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.84rem; font-weight: 600;
  color: #25D366;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  background: rgba(37,211,102,0.08);
  transition: var(--transition);
}
.nav-wa:hover { background: rgba(37,211,102,0.16); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  padding: 100px 32px 40px;
  overflow-y: auto;
}
#mobile-menu.open { display: block; }
.mobile-menu-links a {
  display: block;
  font-size: 1.4rem;
  font-family: var(--ff-display);
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-links a:hover { color: var(--teal); }
.mobile-sub { padding-left: 20px; }
.mobile-sub a { font-family: var(--ff-body); font-size: 1rem; color: rgba(255,255,255,0.7); padding: 10px 0; }
.mobile-actions { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }


/* ============================
   HERO
   ============================ */
#hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transition: background-image 0.6s ease, opacity 0.6s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,30,39,0.25) 0%,
    rgba(14,30,39,0.4) 40%,
    rgba(14,30,39,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  width: 100%;
}
.hero-switcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 99px;
  padding: 6px 20px 6px 6px;
  margin-bottom: 28px;
}
.switcher-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.switcher-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-headline { color: var(--white); margin-bottom: 12px; }
.hero-headline .line-swap {
  display: block;
  color: var(--teal);
  font-style: italic;
  transition: opacity 0.4s ease;
  min-height: 1.15em;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.trust-stat { text-align: center; }
.trust-stat .num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}
.trust-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 4px;
}
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Service quick-nav tabs */
.hero-service-tabs {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(14,30,39,0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
  scrollbar-width: none;
}
.hero-service-tabs::-webkit-scrollbar { display: none; }
.tabs-inner {
  display: flex;
  align-items: stretch;
  min-width: max-content;
}
.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.tab-item:hover { background: rgba(27,181,178,0.08); }
.tab-item.active { background: rgba(27,181,178,0.12); border-top: 2px solid var(--teal); }
.tab-item .tab-icon { font-size: 1.2rem; }
.tab-item .tab-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7); white-space: nowrap; }
.tab-item.active .tab-label { color: var(--teal); }


/* ============================
   TRUST BAR
   ============================ */
#trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.trust-item .icon { font-size: 1rem; color: var(--teal); }


/* ============================
   SERVICES
   ============================ */
#services { background: var(--off-white); }
.services-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-teal);
}
.service-card--gold { border-color: rgba(201,168,76,0.25); }
.service-card--gold:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(201,168,76,0.15); }
.service-card__img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.04); }
.service-card__img .card-badge {
  position: absolute;
  top: 16px; left: 16px;
}
.service-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card__body p { font-size: 0.9rem; margin-bottom: 20px; flex: 1; }
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.service-card__footer a { font-size: 0.85rem; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-card__footer a:hover { gap: 10px; }
.service-card__footer .price-hint { font-size: 0.78rem; color: var(--muted); }


/* ============================
   ABOUT STRIP
   ============================ */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack { position: relative; }
.about-img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 48%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  top: 32px; right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-badge-float strong { display: block; font-family: var(--ff-display); font-size: 1.6rem; color: var(--teal); }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 20px; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }
.about-value { display: flex; align-items: flex-start; gap: 14px; }
.about-value-icon {
  width: 40px; height: 40px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-value-text h4 { font-size: 0.9rem; margin-bottom: 2px; }
.about-value-text p { font-size: 0.85rem; margin: 0; }


/* ============================
   SHOE CARE (GOLD SECTION)
   ============================ */
#shoe-care {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#shoe-care::before {
  content: '';
  position: absolute;
  top: -60%; left: 40%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.shoe-care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.shoe-care-content h2 { color: var(--white); margin-bottom: 16px; }
.shoe-care-content h2 em { color: var(--gold); font-style: italic; }
.shoe-care-content p { color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.shoe-services { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.shoe-service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--r-sm);
  transition: var(--transition);
}
.shoe-service-item:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3); }
.shoe-service-item .icon { font-size: 1.2rem; }
.shoe-service-item span { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.shoe-care-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.shoe-care-imgs .img-box {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}
.shoe-care-imgs .img-box.tall { grid-row: span 2; }
.shoe-care-imgs .img-box img { width: 100%; height: 100%; object-fit: cover; }
.shoe-care-imgs .img-box:not(.tall) img { height: 180px; }
.shoe-care-imgs .img-box.tall img { height: 376px; }


/* ============================
   GALLERY — BEFORE & AFTER
   ============================ */
#gallery { background: var(--off-white); }
.gallery-tabs { display: flex; gap: 8px; margin-bottom: 40px; }
.gallery-tab {
  font-size: 0.85rem; font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  transition: var(--transition);
}
.gallery-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-tab:hover:not(.active) { border-color: var(--navy); color: var(--navy); }

/* Before/After slider */
.ba-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.ba-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.ba-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-card .ba-after { clip-path: inset(0 50% 0 0); transition: clip-path 0.0s linear; }
.ba-card:hover .ba-after { clip-path: inset(0 0% 0 0); }
.ba-card .ba-label {
  position: absolute;
  bottom: 12px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
}
.ba-label-before { left: 12px; background: rgba(14,30,39,0.75); color: var(--white); }
.ba-label-after { right: 12px; background: var(--teal); color: var(--white); }
.ba-card .ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  pointer-events: none;
  transition: left 0s;
}
.ba-card .ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 1rem;
  color: var(--navy);
  pointer-events: none;
  transition: left 0s;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.photo-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-item:hover img { transform: scale(1.05); }
.photo-item .photo-overlay {
  position: absolute; inset: 0;
  background: rgba(14,30,39,0.5);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.photo-item:hover .photo-overlay { opacity: 1; }

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }


/* ============================
   VIDEO SECTION
   ============================ */
#video-section { background: var(--navy); padding: 80px 0; }
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-wrapper .video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,30,39,0.4);
  transition: var(--transition);
  cursor: pointer;
}
.video-wrapper .video-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 72px; height: 72px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.video-wrapper .video-overlay:hover .play-btn { transform: scale(1.08); }


/* ============================
   TESTIMONIALS
   ============================ */
#testimonials { background: var(--white); }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stars { color: #f5c518; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card blockquote::before { content: '\201C'; }
.testimonial-card blockquote::after { content: '\201D'; }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-dark);
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.reviewer-meta { font-size: 0.78rem; color: var(--muted); }
.reviews-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 20px;
  width: fit-content;
}
.google-g { font-size: 1.4rem; font-weight: 700; color: #4285F4; }
.reviews-badge .rating { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.reviews-badge .count { font-size: 0.82rem; color: var(--muted); }


/* ============================
   FAQ
   ============================ */
#faq { background: var(--off-white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border-teal); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  gap: 16px;
}
.faq-icon {
  width: 28px; height: 28px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--teal-light); color: var(--teal); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-answer-inner { padding: 0 28px 24px; font-size: 0.92rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }


/* ============================
   BOOKING / QUOTE FORM
   ============================ */
#booking { background: var(--navy); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.booking-info h2 { color: var(--white); margin-bottom: 16px; }
.booking-info p { color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: var(--transition);
}
.contact-method:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.15); }
.contact-method .cm-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cm-icon--wa { background: rgba(37,211,102,0.15); color: #25D366; }
.cm-icon--phone { background: rgba(27,181,178,0.15); color: var(--teal); }
.cm-icon--email { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.contact-method .cm-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-method .cm-value { font-size: 0.92rem; font-weight: 600; color: var(--white); }
.response-promise {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.response-promise .dot { width: 8px; height: 8px; background: #25D366; border-radius: 50%; flex-shrink: 0; }

/* Form */
.quote-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group label .req { color: var(--teal); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: var(--ff-body);
  color: var(--slate);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.form-control:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px rgba(27,181,178,0.12); }
.form-control::placeholder { color: var(--muted); opacity: 0.7; }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236B8089' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-submit { width: 100%; }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 12px; }
.success-msg {
  display: none;
  text-align: center;
  padding: 32px;
}
.success-msg .check { font-size: 3rem; margin-bottom: 12px; }
.success-msg h3 { color: var(--navy); margin-bottom: 8px; }


/* ============================
   SERVICE AREAS
   ============================ */
#areas { background: var(--white); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.area-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  transition: var(--transition);
}
.area-pill:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.area-pill .pin { font-size: 0.8rem; }


/* ============================
   FOOTER
   ============================ */
#footer {
  background: var(--navy);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .logo img { height: 44px; width: auto; border-radius: 6px; }
.footer-brand .logo-name { font-family: var(--ff-display); font-size: 1.1rem; color: var(--white); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.footer-contact-item .icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }


/* ============================
   FLOATING WIDGETS
   ============================ */
#whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: var(--white);
  border-radius: 99px;
  padding: 14px 20px 14px 18px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  transition: gap 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  max-width: 56px;
}
#whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
#whatsapp-float .wa-text {
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-left: 0;
}
#whatsapp-float:hover {
  gap: 8px;
  max-width: 220px;
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}
#whatsapp-float:hover .wa-text { max-width: 160px; opacity: 1; margin-left: 2px; }

/* Back to top */
#back-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 44px; height: 44px;
  background: rgba(14,30,39,0.85);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
  z-index: 900;
  border: 1px solid rgba(255,255,255,0.12);
}
#back-top.visible { opacity: 1; visibility: visible; }
#back-top:hover { background: var(--navy); }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--r-md);
  object-fit: contain;
}
#lightbox .close-lb {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 16px 24px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 560px;
  width: calc(100% - 40px);
  z-index: 800;
  box-shadow: var(--shadow-lg);
}
#cookie-banner a { color: var(--teal); }
#cookie-banner .accept { background: var(--teal); color: var(--white); border: none; padding: 8px 16px; border-radius: var(--r-sm); font-size: 0.82rem; font-weight: 600; cursor: pointer; white-space: nowrap; }


/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .shoe-care-grid { gap: 48px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .shoe-care-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-badge-float { top: 16px; right: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .hero-trust { gap: 20px; }
  .trust-divider { display: none; }
  .shoe-care-imgs { grid-template-columns: 1fr 1fr; }
  .shoe-care-imgs .img-box.tall img { height: 240px; }
  .shoe-care-imgs .img-box:not(.tall) img { height: 110px; }
  .quote-form { padding: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  #whatsapp-float { bottom: 20px; right: 16px; }
  #back-top { bottom: 20px; left: 16px; }
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* ============================================================
   PHASE 3 — SERVICE & SUPPORTING PAGES
   ============================================================ */

/* ── Page Hero (reusable across all inner pages) ── */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding-bottom: 0;
}
.page-hero--sm { min-height: 48vh; }
.page-hero--gold { background: #0a1a10; }
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,30,39,0.3) 0%,
    rgba(14,30,39,0.55) 40%,
    rgba(14,30,39,0.92) 100%
  );
}
.page-hero--warm .page-hero__bg::after {
  background: linear-gradient(
    to bottom,
    rgba(20,10,5,0.35) 0%,
    rgba(14,30,39,0.6) 40%,
    rgba(14,30,39,0.95) 100%
  );
}
.page-hero__content {
  position: relative; z-index: 2;
  padding: 140px 0 72px;
  width: 100%;
}
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--teal); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero h1 em { color: var(--teal); font-style: italic; }
.page-hero--gold h1 em { color: var(--gold); }
.page-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 32px;
}
.page-hero__tag {
  font-size: 0.78rem; font-weight: 600;
  padding: 5px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  color: rgba(255,255,255,0.7);
}

/* ── What's Included / Checklist ── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.included-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: var(--transition);
}
.included-item:hover { border-color: var(--border-teal); box-shadow: var(--shadow-sm); }
.included-item .check-icon {
  width: 28px; height: 28px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}
.included-item--gold .check-icon { background: var(--gold-light); color: #8a6a20; }
.included-item h4 { font-size: 0.88rem; margin-bottom: 3px; }
.included-item p { font-size: 0.82rem; margin: 0; line-height: 1.5; }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 20px;
  position: relative; z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  margin-bottom: 20px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
  flex-shrink: 0;
}
.step-num--teal { background: var(--teal); box-shadow: 0 0 0 2px var(--teal); }
.step-num--gold { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.process-step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; line-height: 1.6; }

/* ── Audience Cards (who is this for) ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-teal); }
.audience-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.audience-card h4 { font-size: 1rem; margin-bottom: 8px; }
.audience-card p { font-size: 0.84rem; }

/* ── Split content (image + text side by side) ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 12px 18px;
  font-size: 0.82rem; font-weight: 600;
  box-shadow: var(--shadow-md);
}
.split-img-badge strong { display: block; font-family: var(--ff-display); font-size: 1.4rem; color: var(--teal); }
.split-content h2 { margin-bottom: 16px; }
.split-content p { margin-bottom: 16px; }
.checklist { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.checklist-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--slate);
}
.checklist-item::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--teal-light); color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800;
  flex-shrink: 0;
}

/* ── Pricing Cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-md);
}
.pricing-card--gold-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
}
.pricing-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 14px; border-radius: 99px;
  background: var(--teal); color: var(--white);
  white-space: nowrap;
}
.pricing-card__badge--gold { background: var(--gold); }
.pricing-card h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 12px; }
.pricing-card .price { font-family: var(--ff-display); font-size: 2.4rem; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.pricing-card .price-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 20px; }
.pricing-card ul { text-align: left; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.pricing-card ul li { font-size: 0.85rem; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.pricing-card ul li::before { content: '✓'; color: var(--teal); font-weight: 800; font-size: 0.75rem; margin-top: 2px; flex-shrink: 0; }

/* ── Benefits strip ── */
.benefits-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  margin: 64px 0;
}
.benefit-item { text-align: center; }
.benefit-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.benefit-item h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 6px; }
.benefit-item p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ── Shoe care price estimator ── */
.estimator {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--r-xl);
  padding: 48px;
  max-width: 680px;
  margin: 0 auto;
}
.estimator h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.estimator > p { font-size: 0.9rem; color: var(--muted); margin-bottom: 32px; }
.estimator-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.estimator-total {
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 24px;
}
.estimator-total .label { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.estimator-total .amount { font-family: var(--ff-display); font-size: 2rem; color: var(--gold); }

/* ── Photo upload area ── */
.upload-zone {
  border: 2px dashed rgba(201,168,76,0.35);
  border-radius: var(--r-md);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gold-light);
  position: relative;
}
.upload-zone:hover { border-color: var(--gold); background: #f7f0d8; }
.upload-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.upload-zone .upload-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.upload-zone p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.upload-zone strong { color: var(--navy); }
#upload-preview { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
#upload-preview img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--r-sm); border: 2px solid var(--gold); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--teal);
  border-radius: var(--r-xl);
  padding: 64px 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner--navy { background: var(--navy); border: 1px solid rgba(255,255,255,0.08); }
.cta-banner--gold { background: linear-gradient(135deg, #1a1000 0%, #2d1f00 100%); border: 1px solid rgba(201,168,76,0.2); }
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 480px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-top: 8px; }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── About page ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 20px 24px;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.6rem; color: var(--teal-dark);
  margin: 0 auto 16px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal-light);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.8rem; color: var(--teal); font-weight: 600; margin-bottom: 10px; display: block; }
.team-card p { font-size: 0.82rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.value-number {
  font-family: var(--ff-display);
  font-size: 3rem; color: var(--teal-light);
  line-height: 1; margin-bottom: 16px;
  display: block;
}
.value-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.value-card p { font-size: 0.85rem; }

.milestones { display: flex; flex-direction: column; gap: 0; }
.milestone {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}
.milestone:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 39px; top: 52px; bottom: 0;
  width: 2px; background: var(--border);
}
.milestone-year {
  width: 80px; height: 80px;
  background: var(--navy);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.milestone-year span { font-family: var(--ff-display); font-size: 1.3rem; color: var(--teal); line-height: 1; }
.milestone-year small { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.milestone-content { padding-top: 16px; }
.milestone-content h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.milestone-content p { font-size: 0.85rem; }

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  margin-bottom: 20px;
}
.contact-info-card h3 { font-size: 1rem; margin-bottom: 20px; color: var(--navy); }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.contact-detail .icon {
  width: 36px; height: 36px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.contact-detail .label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-detail .value { font-weight: 600; color: var(--navy); }
.contact-detail .value a { color: var(--navy); transition: color var(--transition); }
.contact-detail .value a:hover { color: var(--teal); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.84rem; padding: 4px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--muted); }
.hours-row .time { font-weight: 600; color: var(--navy); }

.map-placeholder {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  height: 240px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--muted); font-size: 0.88rem;
  text-decoration: none; transition: var(--transition);
}
.map-placeholder:hover { border-color: var(--teal); color: var(--teal); }
.map-placeholder .map-icon { font-size: 2.5rem; }

/* ── Hoarding specific ── */
.compassion-strip {
  background: #f8f2ee;
  border: 1px solid #e8d8cc;
  border-left: 4px solid #c47c4e;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.compassion-strip p { color: #5c3a28; font-size: 0.95rem; line-height: 1.7; margin: 0; }
.compassion-strip p strong { color: #3d2218; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px 32px; }
  .estimator { padding: 32px 24px; }
  .estimator-row { grid-template-columns: 1fr; }
  .benefits-strip { padding: 36px 24px; gap: 32px; }
}
@media (max-width: 600px) {
  .page-hero { min-height: 55vh; }
  .page-hero__content { padding: 120px 0 56px; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 32px 24px; flex-direction: column; }
  .cta-banner h2 { font-size: 1.5rem; }
  .benefits-strip { grid-template-columns: 1fr 1fr; }
}




/* ============================================================
   LOGO — transparent PNG, crisp, no filters, correct layout
   Nav uses original 72px height with image + text side-by-side
   ============================================================ */

/* Nav height — restore original */
.nav-inner {
  height: 72px;
}

/* Nav logo: image + text side-by-side, vertically centred */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Nav logo image */
.nav-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  background: transparent;
  filter: none;
  opacity: 1;
  flex-shrink: 0;
  mix-blend-mode: normal;
}

/* Nav logo text block */
.nav-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}
.nav-logo-text .name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--white);
  display: block;
}
.nav-logo-text .sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}

/* Hide v3 sub-tag if any stray instances remain */
.nav-logo-tag { display: none; }

/* Footer logo image */
.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  background: transparent;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  flex-shrink: 0;
}

/* Scrolled nav — logo stays full quality */
#nav.scrolled .nav-logo-img,
#nav.scrolled .footer-logo-img {
  filter: none;
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-logo-img {
    width: 44px;
    height: 44px;
  }
  .nav-logo-text .name {
    font-size: 1rem;
  }
  .nav-logo-text .sub {
    display: none;
  }
}
