/* MC Dr Akua — premium Afrocentric elegant site */
:root {
  --gold: #c9a227;
  --gold-light: #e8c96a;
  --gold-deep: #9a7b1a;
  --burgundy: #6b1d2a;
  --burgundy-deep: #4a1220;
  --wine: #8b1538;
  --emerald: #0f5c4c;
  --emerald-bright: #1a7a5c;
  --cream: #f8f1e3;
  --cream-warm: #fff8ee;
  --ivory: #faf6ef;
  --black: #0d0d0d;
  --ink: #1a1412;
  --muted: #5c534c;
  --line: rgba(201, 162, 39, 0.35);
  --shadow: 0 18px 50px rgba(13, 13, 13, 0.18);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --topbar-h: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 8px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-warm);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--burgundy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--wine);
}

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.8rem, 7vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: 1.35rem; }

.gold { color: var(--gold-light); }

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-sub {
  color: var(--muted);
  margin: 0.5rem 0 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

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

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { color: var(--black); box-shadow: 0 12px 28px rgba(201, 162, 39, 0.45); }

.btn-burgundy {
  background: linear-gradient(135deg, var(--wine), var(--burgundy-deep));
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(107, 29, 42, 0.35);
}
.btn-burgundy:hover { color: #fff; }

.btn-whatsapp {
  background: #128c7e;
  color: #fff;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.3);
}
.btn-whatsapp:hover { background: #075e54; color: #fff; }

.btn-outline {
  background: transparent;
  border-color: rgba(248, 241, 227, 0.7);
  color: var(--cream);
}
.btn-outline:hover {
  background: rgba(248, 241, 227, 0.12);
  color: #fff;
  border-color: var(--gold-light);
}

/* Top bar */
.topbar {
  background: var(--burgundy-deep);
  color: var(--cream);
  font-size: 0.8rem;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 60;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  padding: 0.45rem 0;
  width: min(1120px, calc(100% - 2.5rem));
}

.topbar-link {
  color: var(--cream);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.92;
}
.topbar-link:hover { color: var(--gold-light); opacity: 1; }

.topbar-cta {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
}
.topbar-cta:hover { background: var(--gold-light); color: var(--black); }

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  transition: box-shadow 0.3s;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream);
}
.logo:hover { color: var(--gold-light); }

.logo-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold-deep));
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo-text em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.primary-nav a {
  color: rgba(248, 241, 227, 0.88);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  position: relative;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #fff;
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-book {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black) !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  font-weight: 700 !important;
}
.nav-book::after { display: none !important; }
.nav-book:hover { filter: brightness(1.08); color: var(--black) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 18%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(13, 13, 13, 0.92) 0%, rgba(74, 18, 32, 0.72) 42%, rgba(13, 13, 13, 0.35) 70%, rgba(13, 13, 13, 0.55) 100%),
    linear-gradient(to top, rgba(13, 13, 13, 0.85) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 10vw, 6rem) 0 clamp(3.5rem, 8vw, 5rem);
  max-width: 640px;
  margin-left: max(calc((100% - 1120px) / 2 + 1.25rem), 1.25rem);
  margin-right: auto;
  width: min(640px, calc(100% - 2.5rem));
}

.hero .eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.35rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  margin: 0 0 1rem;
  line-height: 1.35;
}

.hero-lead {
  color: rgba(248, 241, 227, 0.9);
  margin: 0 0 1.75rem;
  max-width: 36rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-coverage {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(248, 241, 227, 0.7);
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: inline-block;
}

/* About */
.about {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.about-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 15%;
}

.about-accent {
  position: absolute;
  width: 55%;
  height: 55%;
  right: -8%;
  bottom: -8%;
  background:
    linear-gradient(135deg, transparent 40%, rgba(15, 92, 76, 0.35) 40%),
    repeating-linear-gradient(
      -45deg,
      var(--gold) 0 2px,
      transparent 2px 10px
    );
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.55;
}

.about-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.about-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
}

.about-points li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--ink);
  font-size: 0.95rem;
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
}

/* Services */
.services {
  background:
    radial-gradient(ellipse at top right, rgba(15, 92, 76, 0.12), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(107, 29, 42, 0.1), transparent 45%),
    var(--cream);
}

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

.service-card {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.5rem;
  box-shadow: 0 10px 30px rgba(74, 18, 32, 0.06);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(74, 18, 32, 0.12);
}

.service-icon {
  color: var(--gold-deep);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--burgundy-deep);
}

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

/* Gallery */
.gallery {
  background: var(--ink);
  color: var(--cream);
}

.gallery .eyebrow { color: var(--gold-light); }
.gallery h2 { color: #fff; }
.gallery .section-sub { color: rgba(248, 241, 227, 0.7); }

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

.gallery-item {
  margin: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: transform 0.6s var(--ease);
}

.gallery-item:nth-child(2) img {
  aspect-ratio: 4/3;
  object-position: center 30%;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.9), transparent);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.gallery-note {
  text-align: center;
  margin: 1.75rem 0 0;
  font-size: 0.85rem;
  color: rgba(248, 241, 227, 0.55);
}
.gallery-note code {
  font-size: 0.8em;
  color: var(--gold-light);
}

/* Videos */
.videos {
  background: linear-gradient(180deg, var(--burgundy-deep), #2a0e16);
  color: var(--cream);
}

.videos .eyebrow { color: var(--gold-light); }
.videos h2 { color: #fff; }
.videos .section-sub { color: rgba(248, 241, 227, 0.72); }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.video-feature {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 600px) {
  .videos-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.showreel {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(720px, 76vh);
  margin: 0 auto;
  background: #080607;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.video-caption {
  margin: 1rem auto 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.3;
}

.video-note {
  margin: 1.5rem 0 0;
  text-align: center;
  color: rgba(248, 241, 227, 0.58);
  font-size: 0.85rem;
}

/* Testimonials */
.testimonials {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* Reuse the vertical showreel treatment while keeping the testimonial light and editorial. */
.testimonial-feature {
  max-width: none;
  margin: 0;
}

.testimonial-video {
  border-color: rgba(107, 29, 42, 0.38);
  box-shadow: 0 20px 50px rgba(74, 18, 32, 0.2);
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.testimonial-caption {
  color: var(--ink);
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* Book */
.book {
  background:
    linear-gradient(135deg, rgba(15, 92, 76, 0.08), transparent 40%),
    var(--ivory);
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.book-intro p {
  color: var(--muted);
}

.book-quick {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
  max-width: 360px;
}

.book-email,
.book-coverage {
  font-size: 0.92rem;
  margin: 0.35rem 0;
}

.book-form {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.book-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.4rem;
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(92, 83, 76, 0.28);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream-warm);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 1rem 0 0;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(248, 241, 227, 0.8);
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-text {
  color: #fff;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.footer-coverage {
  color: var(--gold-light) !important;
  font-size: 0.85rem !important;
  margin-top: 0.75rem !important;
}

.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-contact a,
.footer-social a {
  color: rgba(248, 241, 227, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-contact a:hover,
.footer-social a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 241, 227, 0.12);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(248, 241, 227, 0.5);
}

.footer-bottom p { margin: 0; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 960px) {
  .about-grid,
  .book-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

  .about-accent { display: none; }

  .hero-media img {
    object-position: 70% 15%;
  }

  .hero-overlay {
    background:
      linear-gradient(to top, rgba(13, 13, 13, 0.92) 0%, rgba(74, 18, 32, 0.55) 45%, rgba(13, 13, 13, 0.4) 100%);
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
    width: min(1120px, calc(100% - 2.5rem));
    max-width: none;
  }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    display: none;
  }

  .primary-nav.is-open { display: flex; }

  .primary-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(248, 241, 227, 0.08);
  }

  .nav-book {
    margin-top: 0.75rem;
    text-align: center;
  }

  .services-grid,
  .gallery-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    justify-content: center;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-ctas .btn {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
