/* ============================================
   BALLA LOCTICIAN — Kingdom of Locs
   Mansa Musa Heritage × Modern Harlem
   ============================================ */

/* --- Custom Properties --- */
:root {
  --gold: #D4A017;
  --gold-bright: #F5C518;
  --gold-deep: #B8860B;
  --gold-pale: #FFF3D4;
  --green: #006B3F;
  --green-deep: #004D2C;
  --green-pale: #E8F5EE;
  --red: #C41E3A;
  --red-pale: #FDE8EC;
  --black: #1A1A1A;
  --charcoal: #2D2D2D;
  --slate: #555555;
  --mist: #888888;
  --cloud: #F2F2F2;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-height: 90px;
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Kente-inspired repeating gradient */
  --kente: repeating-linear-gradient(
    90deg,
    var(--red) 0px, var(--red) 8px,
    var(--gold-bright) 8px, var(--gold-bright) 16px,
    var(--green) 16px, var(--green) 24px,
    var(--gold) 24px, var(--gold) 32px,
    var(--black) 32px, var(--black) 36px
  );
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: var(--container-narrow); }

/* --- Kente Accent Bar (top of page) --- */
.kente-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--kente);
  z-index: 1001;
}

/* --- Grain Overlay --- */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* --- Page Transitions --- */
.page-exit { opacity: 0; transform: translateY(8px); transition: all 0.2s ease; }
.page-enter { animation: pageIn 0.5s var(--ease-out-expo) forwards; }
@keyframes pageIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* --- Scroll Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo) var(--delay, 0s),
              transform 0.7s var(--ease-out-expo) var(--delay, 0s);
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate="scale-in"] { transform: scale(0.95); }
[data-animate].is-visible { opacity: 1; transform: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: var(--nav-height);
  transition: all 0.4s var(--ease-out-quart);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav--hidden { transform: translateY(calc(-100% - 4px)); }

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1002;
}

.nav__logo-img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid var(--gold);
  padding: 2px;
  background: var(--white);
  transition: transform 0.4s var(--ease-spring), border-color 0.4s;
  box-shadow: 0 2px 12px rgba(212, 160, 23, 0.25);
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.08);
  border-color: var(--gold-bright);
}

.nav__logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--black);
  line-height: 1.1;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  line-height: 1;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out-quart);
}

.nav__link:hover { color: var(--black); }
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }
.nav__link--active { color: var(--gold-deep); }

.nav__cta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  transition: all 0.35s var(--ease-out-quart);
  box-shadow: 0 4px 15px rgba(0, 107, 63, 0.3);
}

.nav__cta:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 107, 63, 0.35);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1002;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

.nav__toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle--active span:nth-child(2) { opacity: 0; }
.nav__toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1001;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__menu--open { opacity: 1; pointer-events: all; }
  .nav__link { font-size: 1.2rem; color: var(--black); }
  .nav__logo-text-wrap { display: none; }
  body.nav-open { overflow: hidden; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all 0.35s var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.35);
}

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

.btn--secondary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 107, 63, 0.3);
}

.btn--ghost {
  color: var(--black);
  border: 2px solid var(--black);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--outline {
  color: var(--gold-deep);
  border: 2px solid var(--gold);
  background: transparent;
}

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

.btn--lg { padding: 1rem 2.5rem; font-size: 0.9rem; }
.btn--full { width: 100%; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Geometric shapes inspired by West African patterns */
.hero__geo {
  position: absolute;
  border-radius: 0;
  opacity: 0.06;
}

.hero__geo--1 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -5%;
  right: -8%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: geoFloat 20s ease-in-out infinite;
}

.hero__geo--2 {
  width: 350px;
  height: 350px;
  background: var(--green);
  bottom: 5%;
  left: -5%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: geoFloat 25s ease-in-out infinite reverse;
}

.hero__geo--3 {
  width: 200px;
  height: 200px;
  background: var(--red);
  top: 30%;
  left: 15%;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation: geoFloat 18s ease-in-out infinite;
}

.hero__kente-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--kente);
  z-index: 2;
}

@keyframes geoFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -15px) rotate(3deg); }
  66% { transform: translate(-15px, 10px) rotate(-2deg); }
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 2rem 5rem;
  color: var(--black);
}

/* Hero logo showcase — the centerpiece */
.hero__logo-showcase {
  margin-bottom: 2rem;
}

.hero__logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px solid var(--gold);
  padding: 4px;
  background: var(--white);
  box-shadow:
    0 0 0 8px rgba(212, 160, 23, 0.12),
    0 0 0 16px rgba(212, 160, 23, 0.06),
    0 20px 60px rgba(212, 160, 23, 0.2);
  animation: logoGlow 4s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from { box-shadow: 0 0 0 8px rgba(212, 160, 23, 0.12), 0 0 0 16px rgba(212, 160, 23, 0.06), 0 20px 60px rgba(212, 160, 23, 0.2); }
  to { box-shadow: 0 0 0 10px rgba(212, 160, 23, 0.18), 0 0 0 20px rgba(212, 160, 23, 0.08), 0 25px 70px rgba(212, 160, 23, 0.25); }
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.hero__title em {
  font-style: italic;
  color: var(--gold-deep);
  position: relative;
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gold);
  opacity: 0.4;
  border-radius: 3px;
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--slate);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 3rem;
  padding: 1.25rem 2rem;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: 16px;
}

.hero__badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-deep);
}

.hero__badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.hero__badge-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ============================================
   3D SHOWCASE CAROUSEL (supahfunk fan-deck)
   ============================================ */
.showcase {
  padding: 5rem 0 4rem;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.showcase::before,
.showcase::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--kente);
}

.showcase::before { top: 0; }
.showcase::after { bottom: 0; }

.showcase .section__eyebrow { color: var(--gold-bright); }
.showcase .section__title { color: var(--white); }

.showcase__header {
  text-align: center;
  margin-bottom: 3rem;
}

.showcase__carousel {
  position: relative;
  z-index: 1;
  height: 70vh;
  max-height: 550px;
  overflow: hidden;
  pointer-events: none;
}

.showcase__item {
  --items: 11;
  --width: clamp(150px, 30vw, 300px);
  --height: clamp(200px, 40vw, 400px);
  --x: calc(var(--active) * 800%);
  --y: calc(var(--active) * 200%);
  --rot: calc(var(--active) * 120deg);
  --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
  overflow: hidden;
  position: absolute;
  z-index: var(--zIndex);
  width: var(--width);
  height: var(--height);
  margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
  border-radius: 10px;
  top: 50%;
  left: 50%;
  user-select: none;
  -webkit-user-select: none;
  transform-origin: 0% 100%;
  box-shadow: 0 10px 50px 10px rgba(0, 0, 0, 0.5);
  background: var(--black);
  pointer-events: all;
  transform: translate(var(--x), var(--y)) rotate(var(--rot));
  transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
}

.showcase__box {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  opacity: var(--opacity);
}

.showcase__box::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
}

.showcase__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.showcase__title {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
}

.showcase__num {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 20px;
  font-family: var(--font-display);
  font-size: clamp(20px, 10vw, 80px);
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
}

.showcase__cta {
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 5;
}

.showcase__cta .btn--outline {
  border-color: var(--gold);
  color: var(--gold);
}

.showcase__cta .btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  padding: 1rem 0;
  overflow: hidden;
  background: var(--black);
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 2rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  white-space: nowrap;
}

.marquee__dot {
  width: 6px !important;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  align-self: center;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 6rem 0; }
.section--cream { background: var(--cloud); }

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--black);
}

.section__desc {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.8;
}

.section__cta { text-align: center; margin-top: 2.5rem; }

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 4rem) 2rem 5rem;
  background: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, var(--gold-pale), transparent 60%);
  opacity: 0.5;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--kente);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--black);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-hero__title em {
  font-style: italic;
  color: var(--gold-deep);
}

.page-hero__sub {
  font-size: 1rem;
  color: var(--slate);
  max-width: 460px;
  margin: 0 auto;
  font-weight: 400;
}

/* ============================================
   SERVICE CARDS (Home)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s var(--ease-out-quart);
  border: 2px solid var(--cloud);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 107, 63, 0.12);
  border-color: var(--green);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover .service-card__icon,
.service-card:hover .service-card__name,
.service-card:hover .service-card__price,
.service-card:hover .service-card__arrow { color: var(--white); position: relative; z-index: 1; }
.service-card:hover .service-card__icon svg { stroke: var(--gold); }

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--gold-deep);
  transition: color 0.4s;
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.service-card__price {
  font-size: 0.85rem;
  color: var(--gold-deep);
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.service-card__arrow {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--charcoal);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: none;
}

/* ============================================
   SERVICES LIST (Services Page)
   ============================================ */
.services-filter, .gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  color: var(--slate);
  border: 2px solid var(--cloud);
  transition: all 0.3s;
}

.filter-btn:hover { border-color: var(--gold); color: var(--black); }
.filter-btn--active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 700;
}

.services-list { max-width: 800px; margin: 0 auto; }

.service-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cloud);
}

.service-row__left { flex-shrink: 0; }

.service-row__category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}

.service-row__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
}

.service-row__line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 2px, transparent 2px, transparent 8px);
  opacity: 0.3;
}

.service-row__right {
  flex-shrink: 0;
  text-align: right;
}

.service-row__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-deep);
  display: block;
}

.service-row__book {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  transition: color 0.3s;
}

.service-row__book:hover { color: var(--green-deep); }

/* ============================================
   ABOUT STRIP (Home)
   ============================================ */
.about-strip {
  padding: 6rem 0;
  background: var(--gold-pale);
  color: var(--black);
  overflow: hidden;
  position: relative;
}

.about-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--kente);
}

.about-strip__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-strip__desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.about-strip .section__eyebrow { color: var(--green); }
.about-strip .btn--outline { border-color: var(--green); color: var(--green); }
.about-strip .btn--outline:hover { background: var(--green); color: var(--white); border-color: var(--green); }

.about-strip__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.about-strip__shape {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold-deep) 100%);
  border: 4px solid var(--gold-deep);
  animation: shapePulse 6s ease-in-out infinite;
  box-shadow: 0 0 0 12px rgba(212, 160, 23, 0.1), 0 0 0 24px rgba(212, 160, 23, 0.05);
}

@keyframes shapePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.about-strip__stat {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  text-align: center;
  bottom: 10%;
  right: 5%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-strip__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-deep);
  line-height: 1;
}

.about-strip__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .about-strip__inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .about-strip__visual { min-height: 220px; }
  .about-strip__shape { width: 200px; height: 200px; }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--cloud);
  transition: all 0.3s var(--ease-out-quart);
  position: relative;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(212, 160, 23, 0.1);
}

.review-card:hover::before { opacity: 1; }

.review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
}

.review-card__stylist {
  font-size: 0.75rem;
  color: var(--slate);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 6rem 2rem;
  background: var(--white);
}

.cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--green-deep);
  color: var(--white);
  padding: 4rem 3rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-section__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green), transparent 60%);
  opacity: 0.3;
}

.cta-section__inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--kente);
}

.cta-section__inner .section__eyebrow { color: var(--gold-bright); position: relative; z-index: 1; }

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section__desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-section__actions .btn--primary { background: var(--gold); color: var(--black); }
.cta-section__actions .btn--primary:hover { background: var(--gold-bright); }
.cta-section__actions .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.4); }
.cta-section__actions .btn--ghost:hover { background: var(--white); color: var(--green-deep); }

/* ============================================
   BOOKING
   ============================================ */
.booking-section { padding-bottom: 6rem; }

.booking-progress { margin-bottom: 3rem; }

.booking-progress__bar {
  height: 4px;
  background: var(--cloud);
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.booking-progress__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.5s var(--ease-out-expo);
  width: 20%;
}

.booking-progress__steps {
  display: flex;
  justify-content: space-between;
}

.booking-step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 0.3s;
}

.booking-step--active { color: var(--slate); }
.booking-step--current { color: var(--gold-deep); }

.booking-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid var(--cloud);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.booking-form__heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.booking-form__sub {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 2rem;
}

/* Service selection */
.booking-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.booking-service-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border: 2px solid var(--cloud);
  border-radius: 12px;
  transition: all 0.3s;
  text-align: left;
}

.booking-service-btn:hover { border-color: var(--gold); }

.booking-service-btn--selected {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.booking-service-btn__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.booking-service-btn__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-deep);
}

.booking-service-btn--selected .booking-service-btn__price { color: var(--gold-bright); }

/* Stylist selection */
.booking-stylists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.booking-stylist-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border: 2px solid var(--cloud);
  border-radius: 16px;
  transition: all 0.3s;
  text-align: center;
}

.booking-stylist-btn:hover { border-color: var(--gold); }

.booking-stylist-btn--selected {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.booking-stylist-btn__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.booking-stylist-btn--selected .booking-stylist-btn__avatar {
  background: var(--green-deep);
  color: var(--gold-bright);
}

.booking-stylist-btn__name {
  font-weight: 700;
  font-size: 0.9rem;
}

.booking-stylist-btn__info {
  font-size: 0.75rem;
  color: var(--slate);
}

.booking-stylist-btn--selected .booking-stylist-btn__info { color: rgba(255,255,255,0.7); }

/* --- Cal.com-style Date & Time Picker --- */

.cal-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  margin: 1.5rem 0;
  border: 1px solid var(--cloud);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  min-height: 380px;
}
@media (max-width: 700px) {
  .cal-layout { grid-template-columns: 1fr; min-height: auto; }
}

/* Left: Month calendar */
.cal-left {
  padding: 1.5rem;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.cal-month-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--cloud);
  border-radius: 8px;
  background: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--charcoal);
}
.cal-nav-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.cal-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-bottom: 0.5rem;
}

.cal-weekday {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mist);
  padding: 0.25rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 500;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}
.cal-day--empty { pointer-events: none; }
.cal-day:hover:not(:disabled):not(.cal-day--empty) {
  background: var(--cloud);
}
.cal-day--today {
  font-weight: 700;
  color: var(--gold-deep);
}
.cal-day--today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-day--selected {
  background: var(--green) !important;
  color: var(--white) !important;
  font-weight: 700;
}
.cal-day--selected::after { display: none; }
.cal-day--disabled {
  color: var(--cloud);
  cursor: not-allowed;
}

/* Right: Time slots panel */
.cal-right {
  border-left: 1px solid var(--cloud);
  background: #FAFAFA;
  display: flex;
  flex-direction: column;
}
@media (max-width: 700px) {
  .cal-right { border-left: none; border-top: 1px solid var(--cloud); }
}

.cal-time-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem 1.25rem;
  text-align: center;
}
.cal-time-empty p {
  color: var(--mist);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cal-time-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cal-time-header {
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--cloud);
}

.cal-time-date {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  display: block;
  margin-bottom: 0.5rem;
}

.cal-time-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 320px;
}
@media (max-width: 700px) {
  .cal-time-list {
    max-height: 240px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}

.cal-time-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.75rem;
  border: 1.5px solid var(--cloud);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.15s;
}
.cal-time-slot:hover:not(:disabled) {
  border-color: var(--green);
  background: var(--green-pale);
}
.cal-time-slot--selected {
  border-color: var(--green) !important;
  background: var(--green) !important;
  color: var(--white) !important;
}
.cal-time-slot--busy {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-time-slot--busy:hover { border-color: var(--cloud); background: var(--white); }

.cal-time-slot__time {
  font-size: 0.85rem;
  font-weight: 600;
  color: inherit;
}

/* Calendar availability notice (reused) */
.booking-calendar-notice {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
}
.booking-calendar-notice--loading { color: var(--slate); background: var(--cloud); }
.booking-calendar-notice--ok { color: var(--green-deep); background: var(--green-pale); }
.booking-calendar-notice--offline { color: var(--slate); background: var(--gold-pale); }
.booking-calendar-notice--full { color: var(--red); background: var(--red-pale); }

/* Existing form fields (used by details step) */
.booking-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.booking-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--cloud);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.3s;
  outline: none;
}

.booking-input:focus { border-color: var(--gold); }

.booking-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.7;
}

/* Form layout */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* Booking nav */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cloud);
}

.booking-nav .btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Summary */
.booking-summary {
  margin: 1.5rem 0;
  background: var(--gold-pale);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--gold);
}

.booking-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.booking-summary__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
}

.booking-summary__value {
  font-weight: 600;
  color: var(--black);
  text-align: right;
}

.booking-summary__price {
  color: var(--gold-deep);
  margin-left: 0.5rem;
}

.booking-summary__divider {
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  margin: 0.5rem 0;
}

/* Success / Error */
.booking-success {
  text-align: center;
  padding: 2rem;
}

.booking-success__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.booking-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.booking-fail {
  text-align: center;
  padding: 2rem;
}
.booking-fail__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.booking-fail h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.booking-fail a {
  color: var(--green);
  text-decoration: underline;
}

.booking-error {
  background: var(--red-pale);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  color: #991b1b;
  margin-top: 1rem;
}

.booking-error a { color: inherit; text-decoration: underline; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-rows: 240px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.gallery-item:hover { border-color: var(--gold); }

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item__img, .gallery-item__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item__placeholder-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  padding: 1rem;
  opacity: 0.8;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.gallery-item__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item--wide { grid-column: span 1; }
}

@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item--tall { grid-row: span 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.lightbox__close:hover { background: rgba(255,255,255,0.1); }

.lightbox__content { max-width: 700px; width: 100%; text-align: center; }

.lightbox__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.lightbox__desc {
  color: var(--gold);
  font-size: 0.95rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.about-story__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.about-story__accent {
  width: 60px;
  height: 4px;
  background: var(--kente);
  border-radius: 3px;
  margin-top: 1.5rem;
}

.about-story__right p {
  margin-bottom: 1.25rem;
  color: var(--slate);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; gap: 2rem; }
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--cloud);
  transition: all 0.3s var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.value-card:hover::after { opacity: 1; }

.value-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.value-card__text {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.8;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card { text-align: center; }

.team-card__photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  padding: 3px;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card__placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__placeholder span {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.team-card__exp {
  font-size: 0.85rem;
  color: var(--slate);
}

.team-card__rating {
  font-size: 0.85rem;
  color: var(--gold-deep);
  margin-top: 0.25rem;
}

/* Location */
.location-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--black);
}

.location-block__address, .location-block__phone {
  margin-bottom: 1rem;
  color: var(--slate);
}

.location-block__phone a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-deep);
  font-weight: 700;
}

.location-block__hours { margin-top: 1.5rem; }
.location-block__hours p { color: var(--slate); font-size: 0.9rem; margin-bottom: 0.25rem; }
.location-block__hours strong { color: var(--black); }

.location-block__map-placeholder {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-pale), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cloud);
}

.location-block__map-placeholder span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

@media (max-width: 768px) {
  .location-block { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.contact-info__text {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: 12px;
  color: var(--gold-deep);
}

.contact-detail__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.15rem;
}

.contact-detail__value {
  color: var(--black);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid var(--cloud);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   PRICING NOTE
   ============================================ */
.pricing-note {
  padding: 4rem 0;
  background: var(--white);
}

.pricing-note__inner {
  background: var(--gold-pale);
  color: var(--black);
  border: 2px solid var(--gold);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-note__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold), transparent 60%);
  opacity: 0.08;
}

.pricing-note__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
}

.pricing-note__text {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  position: relative;
}

.pricing-note .btn--outline { position: relative; border-color: var(--green); color: var(--green); }
.pricing-note .btn--outline:hover { background: var(--green); color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding-top: 0;
}

.footer__kente {
  height: 6px;
  background: var(--kente);
}

.footer__wave {
  margin-top: -1px;
  background: var(--white);
}

.footer__wave svg { width: 100%; height: auto; display: block; }

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo-img {
  width: 95px;
  height: 95px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid var(--gold);
  padding: 2px;
  margin-bottom: 1rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer__address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

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

.footer__link {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.footer__link:hover { color: var(--white); }

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.footer__social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.3s;
}

.footer__social:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* FAQ (GEO-optimized) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.faq-item {
  background: var(--color-cream, #FAF5EC);
  border: 1px solid rgba(44, 24, 16, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(44, 24, 16, 0.25);
  box-shadow: 0 4px 24px rgba(44, 24, 16, 0.06);
}

.faq-item[open] {
  border-color: rgba(139, 105, 20, 0.4);
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: var(--color-brown-dark, #2C1810);
  padding-right: 2rem;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-gold, #8B6914);
  transition: transform 0.3s ease;
  font-weight: 300;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '\2212';
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin-top: 0.9rem;
  color: var(--color-brown-mid, #6B4423);
  line-height: 1.7;
  font-size: 0.98rem;
}

.faq-item a {
  color: var(--color-gold, #8B6914);
  text-decoration: underline;
}

/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ============================================ */

/* Tablets and small laptops */
@media (max-width: 900px) {
  :root { --nav-height: 72px; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
}

/* Phones */
@media (max-width: 640px) {
  :root { --nav-height: 64px; }

  /* Base */
  body { font-size: 15px; line-height: 1.6; }
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .section__header { margin-bottom: 2rem; }
  .section__desc { font-size: 0.92rem; }

  /* Nav */
  .nav { padding: 0 1rem; top: 4px; }
  .nav__logo-img { width: 44px; height: 44px; border-width: 2px; padding: 1px; }
  .nav__toggle span { width: 22px; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 2.5rem; }
  .hero__content { padding: calc(var(--nav-height) + 1.5rem) 1rem 2rem; }
  .hero__logo-img {
    width: 140px;
    height: 140px;
    border-width: 3px;
    box-shadow:
      0 0 0 5px rgba(212, 160, 23, 0.12),
      0 0 0 10px rgba(212, 160, 23, 0.06),
      0 10px 30px rgba(212, 160, 23, 0.2);
  }
  .hero__logo-showcase { margin-bottom: 1.25rem; }
  .hero__eyebrow { font-size: 0.68rem; margin-bottom: 0.75rem; letter-spacing: 0.2em; }
  .hero__title { font-size: clamp(2.4rem, 12vw, 3.6rem); margin-bottom: 1rem; }
  .hero__sub { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.75rem; }
  .hero__actions { gap: 0.6rem; flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__badge { margin-top: 2rem; padding: 0.9rem 1.5rem; }
  .hero__badge-number { font-size: 1.6rem; }
  .hero__geo--1 { width: 280px; height: 280px; }
  .hero__geo--2 { width: 220px; height: 220px; }
  .hero__geo--3 { width: 140px; height: 140px; }

  /* Page hero (sub-pages) */
  .page-hero { padding: calc(var(--nav-height) + 2rem) 1rem 2.5rem; }
  .page-hero__title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .page-hero__sub { font-size: 0.92rem; }

  /* Buttons */
  .btn { padding: 0.85rem 1.5rem; font-size: 0.8rem; }
  .btn--lg { padding: 1rem 1.75rem; font-size: 0.88rem; }

  /* Showcase carousel */
  .showcase { padding: 3rem 0 2.5rem; }
  .showcase__header { margin-bottom: 1.75rem; }
  .showcase__carousel { height: 50vh; max-height: 360px; }
  .showcase__cta { margin-top: 1.5rem; }

  /* Services grid (home) */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .service-card { padding: 1.25rem 1rem; border-radius: 12px; }
  .service-card__icon { width: 40px; height: 40px; margin-bottom: 0.75rem; }
  .service-card__name { font-size: 1rem; margin-bottom: 0.35rem; }
  .service-card__price { font-size: 0.75rem; }
  .service-card__arrow { display: none; }

  /* Services page list */
  .services-filter, .gallery-filter { gap: 0.4rem; margin-bottom: 1.75rem; }
  .filter-btn { padding: 0.4rem 0.9rem; font-size: 0.72rem; }
  .service-row { gap: 0.75rem; padding: 1rem 0; flex-wrap: wrap; }
  .service-row__name { font-size: 1.15rem; }
  .service-row__price { font-size: 1.25rem; }
  .service-row__line { display: none; }
  .booking-service-btn { padding: 0.9rem 1rem; }
  .booking-service-btn__name { font-size: 0.92rem; }

  /* About strip */
  .about-strip { padding: 3.5rem 0; }
  .about-strip__inner { padding: 0 1rem; gap: 1.5rem; }
  .about-strip__title { margin-bottom: 1rem; }
  .about-strip__desc { font-size: 0.92rem; line-height: 1.75; margin-bottom: 1.5rem; }
  .about-strip__visual { min-height: 180px; }
  .about-strip__shape { width: 160px; height: 160px; }
  .about-strip__stat { padding: 0.9rem 1.2rem; bottom: 5%; right: 10%; }
  .about-strip__stat-num { font-size: 2rem; }

  /* Reviews */
  .reviews-carousel { grid-template-columns: 1fr; gap: 1rem; }
  .review-card { padding: 1.5rem 1.25rem; border-radius: 12px; }
  .review-card__text { font-size: 1rem; line-height: 1.55; margin-bottom: 1rem; }

  /* CTA section */
  .cta-section { padding: 3rem 1rem; }
  .cta-section__inner { padding: 2.25rem 1.5rem; border-radius: 18px; }
  .cta-section__title { margin-bottom: 0.75rem; }
  .cta-section__desc { font-size: 0.92rem; margin-bottom: 1.5rem; }
  .cta-section__actions { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .cta-section__actions .btn { width: 100%; }

  /* Marquee */
  .marquee__track { gap: 1.25rem; }
  .marquee__track span { font-size: 0.95rem; }

  /* About page */
  .about-story { gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .value-card { padding: 1.25rem 1.25rem; border-radius: 12px; }
  .value-card__number { font-size: 1.75rem; margin-bottom: 0.5rem; }
  .value-card__title { font-size: 1.15rem; margin-bottom: 0.4rem; }
  .value-card__text { font-size: 0.88rem; line-height: 1.65; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-card__photo { width: 140px; height: 140px; margin-bottom: 1rem; }
  .team-card__placeholder span { font-size: 2.8rem; }
  .team-card__name { font-size: 1.25rem; }

  /* Location */
  .location-block__title { font-size: 1.5rem; }
  .location-block__map { min-height: 220px; }

  /* Contact page */
  .contact-layout { gap: 1.5rem; }
  .contact-info__title { font-size: 1.6rem; }
  .contact-info__text { margin-bottom: 1.5rem; font-size: 0.92rem; }
  .contact-detail { gap: 0.75rem; margin-bottom: 1rem; }
  .contact-detail__icon { width: 38px; height: 38px; border-radius: 10px; }
  .contact-detail__value { font-size: 0.88rem; }
  .contact-form-wrap { padding: 1.5rem 1.25rem; border-radius: 14px; }
  .booking-input { padding: 0.75rem 0.9rem; font-size: 0.95rem; }
  .booking-textarea { min-height: 100px; }

  /* Pricing note */
  .pricing-note { padding: 2.5rem 0; }
  .pricing-note__inner { padding: 1.75rem 1.25rem; border-radius: 14px; }
  .pricing-note__title { font-size: 1.3rem; margin-bottom: 0.5rem; }
  .pricing-note__text { font-size: 0.9rem; margin-bottom: 1rem; }

  /* Footer */
  .footer__inner { padding: 2.5rem 1rem 1.5rem; }
  .footer__grid { gap: 1.75rem; margin-bottom: 2rem; }
  .footer__logo-img { width: 70px; height: 70px; }
  .footer__logo { font-size: 1.25rem; }

  /* Gallery refinements */
  .gallery-item__name { font-size: 1rem; }
  .gallery-item__cat { font-size: 0.62rem; }

  /* Booking */
  .booking-progress { margin-bottom: 2rem; }
  .cal-left { padding: 1rem; }
  .cal-month-label { font-size: 1rem; }
  .cal-day { font-size: 0.8rem; }
  .cal-time-header { padding: 1rem 1rem 0.5rem; }
  .cal-time-list { padding: 0.5rem; grid-template-columns: repeat(2, 1fr); }
  .cal-time-slot { padding: 0.6rem 0.4rem; }
  .cal-time-slot__time { font-size: 0.8rem; }

  /* FAQ */
  .faq-item { padding: 1rem 1.1rem; }
  .faq-item summary { font-size: 0.98rem; padding-right: 1.75rem; }
  .faq-item p { font-size: 0.9rem; line-height: 1.6; }

  /* Disable desktop-only hover transforms that jitter on touch */
  .service-card:hover,
  .review-card:hover,
  .value-card:hover { transform: none; }
}

/* Tiny phones (iPhone SE / small Android) */
@media (max-width: 380px) {
  .hero__title { font-size: 2.2rem; }
  .page-hero__title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero__logo-img { width: 120px; height: 120px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
