/* ------------------------------------------------------------------
   Makkah Barber Shop
   Palette blends Makkah Market (emerald + saffron) with the classic
   barbershop red / white / blue. Roles kept deliberate so five colors
   read as a system, not a circus:
     emerald  → primary actions, brand (ties to the market downstairs)
     navy     → dark sections, footer, structure
     red      → accents, price highlights, the pole
     saffron  → small flourishes (eyebrows, underlines)
     cream    → warm paper backgrounds
------------------------------------------------------------------ */

:root {
  /* Ink + paper */
  --ink:        #17140f;
  --ink-soft:   #3b352c;
  --ink-mute:   #6b6456;
  --paper:      #fbf7ec;
  --cream:      #f3e9d0;
  --cream-deep: #e6d5ac;

  /* Barbershop core — navy leads, red is the single accent.
     Lightened per client: the old navy/red read too dark and dull. */
  --navy:       #21497f;
  --navy-deep:  #16386b;
  --barber:     #d93036;
  --barber-deep:#b2262b;

  /* Brass — a warm metallic for small marks and rules (reads premium,
     not a fourth loud hue) */
  --brass:      #c69a44;
  --brass-deep: #916a22;
  /* Aliases: existing rules reference --saffron; keep them pointing at brass */
  --saffron:    #c69a44;
  --saffron-deep: #916a22;

  /* Emerald — the one green, reserved for "Makkah Market" mentions so it
     reads as a deliberate nod downstairs, not scattered brand color */
  --moss:       #0c7a3f;
  --moss-deep:  #063c20;

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max:    72rem;
  --reading: 60ch;

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Newsreader', 'Iowan Old Style', Georgia, serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; border-radius: 3px; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-weight: 560;
}
em { font-style: italic; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.display { font-weight: 600; }

/* ---------- Barber-pole motif: classic red / white / blue ----------
   The stripes drift slowly, like a real pole turning — enough life to read as a
   barber pole, slow enough not to pull focus. An earlier fast version was
   overwhelming; these cycles are long (7–10s) and freeze entirely under
   prefers-reduced-motion. Fixed side poles run down both viewport edges (drawn
   as body pseudo-elements, no per-page markup) and drop on phones where the
   gutter is too tight. */
.pole-strip {
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--barber) 0 14px,
    #fff 14px 28px,
    var(--navy) 28px 42px,
    #fff 42px 56px
  );
  background-size: 79.2px 6px; /* one full 56px stripe period along the 45° axis */
  animation: pole-travel 7s linear infinite;
}
@keyframes pole-travel { to { background-position: 79.2px 0; } }

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 7px;
  z-index: 45;
  pointer-events: none;
  opacity: .8;
  background: repeating-linear-gradient(
    180deg,
    var(--barber) 0 12px,
    #fff 12px 24px,
    var(--navy) 24px 36px,
    #fff 36px 48px
  );
  background-size: 100% 48px;
  animation: pole-spin 10s linear infinite;
}
body::before { left: 0; }
body::after  { right: 0; }
@keyframes pole-spin { to { background-position: 0 48px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7em 1.25em;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1rem;
  letter-spacing: .01em;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
/* One primary action color across the whole site: red. */
.btn-primary { background: var(--barber); color: #fff; }
.btn-primary:hover { background: var(--barber-deep); }
.btn-red { background: var(--barber); color: #fff; }
.btn-red:hover { background: var(--barber-deep); }
.btn-ghost { border: 1.5px solid var(--navy); color: var(--navy-deep); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }
.btn-call {
  background: var(--saffron);
  color: var(--navy-deep);
  font-size: .95rem;
  padding: .55em 1.1em;
}
.btn-call:hover { background: var(--saffron-deep); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 236, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-deep);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.25rem;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.brand-mark { color: var(--barber); font-size: 1.15em; }
.brand-name em { color: var(--navy); font-weight: 500; }
.site-nav {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
}
.site-nav a { color: var(--ink-soft); padding-bottom: 2px; border-bottom: 2px solid transparent; }
.site-nav a:hover { color: var(--navy-deep); border-color: var(--barber); }
.site-nav a[aria-current="page"] { color: var(--barber); border-color: var(--barber); }
.btn-call { flex-shrink: 0; }

/* ---------- Image placeholders ---------- */
/* Swap each <figure class="ph …"> for <img> once the real photos are in. */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  text-align: center;
  padding: 1.25rem;
  color: var(--navy);
  background:
    repeating-linear-gradient(-45deg, rgba(20,49,94,.04) 0 12px, transparent 12px 24px),
    var(--cream);
  border: 2px dashed var(--navy);
  border-radius: 14px;
}
.ph-icon { font-size: 1.8rem; opacity: .7; }
.ph-label { font-family: var(--font-display); font-weight: 560; font-size: 1.05rem; }
.ph-dim { font-size: .82rem; color: var(--ink-mute); letter-spacing: .03em; text-transform: uppercase; }
.ph-hero    { aspect-ratio: 4 / 5; }
.ph-wide    { aspect-ratio: 16 / 9; }
.ph-square  { aspect-ratio: 1 / 1; }
.ph-portrait{ aspect-ratio: 3 / 4; }
.ph-banner  { aspect-ratio: 21 / 6; min-height: 180px; }

/* ---------- Real photos ----------
   Drop-in replacement for a .ph placeholder: same aspect helper class
   (ph-hero / ph-wide / ph-square / ph-portrait) on an <img class="photo">.
   object-fit: cover crops to the frame so mixed source ratios stay tidy. */
.photo {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  background: var(--cream);
}
.hero-photo.photo { box-shadow: 0 24px 55px -30px rgba(14, 33, 64, .55); }
/* Exterior is a tall storefront shot; bias the crop toward the sign/awning. */
.photo-storefront { object-position: 50% 22%; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy-deep);
  color: var(--paper);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.page-hero .eyebrow { color: var(--saffron); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: .8rem; }
.page-hero p { color: var(--cream-deep); max-width: 52ch; font-size: 1.2rem; }

/* Video hero (About): the shop-tour clip plays muted behind the copy. A navy
   scrim keeps the text readable over the busy footage; if the video can't
   play, the section falls back to the poster, then the plain navy hero. */
.page-hero-video { position: relative; overflow: hidden; }
.page-hero-video .hero-video,
.page-hero-video .hero-video-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-hero-video .hero-video { object-fit: cover; }
.page-hero-video .hero-video-scrim {
  background: linear-gradient(rgba(22, 56, 107, .68), rgba(14, 33, 64, .82));
}
.page-hero-video .hero-video-copy { position: relative; }

/* ---------- Home hero ---------- */
.hero {
  padding-block: clamp(2rem, 5vw, 3.75rem);
  background: radial-gradient(120% 100% at 100% 0%, var(--cream) 0%, transparent 60%), var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

/* Social proof, above the fold */
.hero-rating { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.75rem; }
.hr-stars { color: var(--barber); letter-spacing: .08em; font-size: 1.15rem; }
.hr-text { color: var(--ink-soft); }
.hr-text b { color: var(--navy-deep); font-family: var(--font-display); font-weight: 600; }

.btn-lg { padding: .9em 1.55em; font-size: 1.08rem; }

/* Media: one well-proportioned frame with a price tag, not an empty void */
.hero-media { position: relative; }
.hero-photo { box-shadow: 0 24px 55px -30px rgba(14, 33, 64, .55); }
.price-tag {
  position: absolute;
  left: -16px;
  bottom: 28px;
  background: var(--barber);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 560;
  padding: .55rem 1.15rem;
  border-radius: 11px;
  box-shadow: 0 12px 26px -12px rgba(0, 0, 0, .45);
  font-size: 1.05rem;
}
.price-tag b { font-size: 1.35rem; font-weight: 700; }

/* Stat bar under the hero */
.stat-bar { background: var(--navy-deep); color: var(--paper); }
.stat-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 1.75rem; }
.stat { text-align: center; padding: .35rem 1rem; border-left: 1px solid rgba(255,255,255,.14); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 2.05rem; line-height: 1; color: #fff; }
.stat span { display: block; margin-top: .45rem; color: var(--cream-deep); font-size: .95rem; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--barber);
  margin-bottom: 1.1rem;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); margin-bottom: 1.3rem; }
.lede { font-size: 1.28rem; color: var(--ink-soft); max-width: 42ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1rem; }
.hero-note { color: var(--ink-mute); font-style: italic; }
.hero-media { display: grid; gap: 1rem; }

/* At-a-glance card */
.glance-card {
  background: var(--navy-deep);
  color: var(--paper);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 20px 45px -25px rgba(13, 34, 69, .8);
}
.card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.card-k { color: var(--cream-deep); }
.card-v { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: #fff; }
.card-v.red { color: #ff9a86; }
.card-cta { display: inline-block; margin-top: 1.25rem; font-family: var(--font-display); font-weight: 560; color: var(--saffron); }
.card-cta:hover { color: #fff; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-tint { background: var(--cream); }
.section-head { margin-bottom: 2.5rem; max-width: var(--reading); }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .6rem; }
.section-sub { color: var(--ink-mute); font-size: 1.15rem; }

/* Two-column "teaser" blocks on the home page */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .8rem; }
.split p { color: var(--ink-soft); margin-bottom: 1.4rem; }

/* Peek-inside strip */
.peek-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

/* Auto-rotating carousel: slides stacked and crossfaded on a timer, pure CSS
   so it needs no JS. N slides share one loop; each is visible for its slice
   then fades out. Update --count and the per-slide delay if you add/remove
   slides. Freezes for reduced-motion (first slide stays up). */
.carousel {
  --count: 5;
  --cycle: 15s;        /* total loop = 3s per slide × 5 slides */
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 55px -32px rgba(14, 33, 64, .6);
  aspect-ratio: 16 / 9;
  background: var(--navy-deep);
}
.carousel .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 0;
  animation: carousel-fade var(--cycle) infinite;
}
.carousel .slide:nth-child(1) { animation-delay: calc(var(--cycle) / var(--count) * 0); }
.carousel .slide:nth-child(2) { animation-delay: calc(var(--cycle) / var(--count) * 1); }
.carousel .slide:nth-child(3) { animation-delay: calc(var(--cycle) / var(--count) * 2); }
.carousel .slide:nth-child(4) { animation-delay: calc(var(--cycle) / var(--count) * 3); }
.carousel .slide:nth-child(5) { animation-delay: calc(var(--cycle) / var(--count) * 4); }
/* Hold each slide fully visible for ~1/5 of the loop, with a short crossfade. */
@keyframes carousel-fade {
  0%     { opacity: 0; }
  2%     { opacity: 1; }
  18%    { opacity: 1; }
  22%    { opacity: 0; }
  100%   { opacity: 0; }
}

/* Portrait variant (About page hair-type rotation): 4 slides, so each owns a
   25% slice — the hold/fade percentages differ from the 5-slide keyframes. */
.carousel.carousel-portrait {
  --count: 4;
  --cycle: 12s;        /* 3s per slide × 4 slides */
  aspect-ratio: 3 / 4; /* same tall ratio as the ph-portrait img it replaced */
  height: auto;
}
.carousel-portrait .slide { animation-name: carousel-fade-4; }
@keyframes carousel-fade-4 {
  0%     { opacity: 0; }
  2.5%   { opacity: 1; }
  23%    { opacity: 1; }
  27.5%  { opacity: 0; }
  100%   { opacity: 0; }
}

/* Services as descriptions, not a priced menu. */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
.service-card {
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 12px 30px -26px rgba(14, 33, 64, .6);
}
.service-name { font-size: 1.3rem; color: var(--navy-deep); margin-bottom: .75rem; }
/* Small red rule under each heading — the brand accent, integrated into the
   card instead of a hard top border that fought the rounded corners. */
.service-name::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 3px;
  margin-top: .6rem;
  background: var(--barber);
  border-radius: 2px;
}
.service-card p { color: var(--ink-soft); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.price-cat {
  font-size: 1.35rem;
  color: var(--navy-deep);
  padding-bottom: .6rem;
  margin-bottom: .8rem;
  border-bottom: 2px solid var(--barber);
}
.price-list { list-style: none; }
.price-list li { display: flex; align-items: baseline; gap: .4rem; padding: .55rem 0; }
.p-name { color: var(--ink-soft); }
.p-dots { flex: 1; border-bottom: 1.5px dotted var(--cream-deep); transform: translateY(-3px); }
.p-price { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--barber); }
.price-foot { margin-top: 2.25rem; color: var(--ink-mute); font-style: italic; font-size: 1.05rem; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 4vw, 2.75rem); }
.feature-mark { color: var(--brass); font-size: 1.3rem; display: block; margin-bottom: .5rem; }

/* The one green: "Makkah Market" mentions on light backgrounds. */
.mm { color: var(--moss); font-weight: 560; }
.feature h3 { font-size: 1.45rem; color: var(--navy-deep); margin-bottom: .5rem; }
.feature p { color: var(--ink-soft); max-width: 46ch; }

/* ---------- Hours ---------- */
.hours-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hours-copy h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .6rem; }
.hours-copy .section-sub { margin-bottom: 1.5rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 1.15rem; }
.hours-table th, .hours-table td { padding: .85rem .25rem; border-bottom: 1px solid var(--cream-deep); }
.hours-table th { font-family: var(--font-display); font-weight: 560; color: var(--navy-deep); text-align: left; }
.hours-table td { color: var(--ink-soft); text-align: right; font-variant-numeric: tabular-nums; }
.hours-note { color: var(--ink-mute); font-style: italic; font-size: .95rem; }

/* ---------- Reviews ---------- */
.reviews-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 2.25rem;
}
.reviews-score {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  font-family: var(--font-display);
}
.reviews-score b { font-size: 2.4rem; font-weight: 600; color: var(--navy-deep); line-height: 1; }
.reviews-stars { color: var(--barber); letter-spacing: .1em; font-size: 1.15rem; }
.reviews-count { color: var(--ink-mute); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 12px 30px -22px rgba(14, 33, 64, .6);
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.review-card .stars { color: var(--barber); letter-spacing: .1em; font-size: 1.05rem; }
.review-text { color: var(--ink-soft); font-size: 1.08rem; }
.review-by { margin-top: auto; font-family: var(--font-display); font-weight: 560; color: var(--navy-deep); }
.review-by span { display: block; font-family: var(--font-body); font-weight: 400; font-size: .92rem; color: var(--ink-mute); }
.btn-yelp { background: #d32323; color: #fff; }
.btn-yelp:hover { background: #af1d1d; }
.btn-google { background: #4285f4; color: #fff; }
.btn-google:hover { background: #2f6bd6; }
.reviews-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

/* The one fresh Google review, spotlighted as a full-width featured card above
   the three-up grid so the section reads as one balanced block (was a lone
   fourth card dangling under a row of three). No hard colored bar — the Google
   source reads as a small pill instead. */
.review-recent {
  margin-bottom: 1.75rem;
  background: #fff;
  border: 1px solid var(--cream-deep);
}
.review-recent .review-text { font-size: 1.18rem; }
.review-source {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: .4rem;
  background: rgba(66, 133, 244, .1);
  color: #2f6bd6;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: .74rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-note {
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-left: 4px solid var(--saffron);
  border-radius: 0 10px 10px 0;
  color: var(--ink-soft);
}

/* ---------- Visit ---------- */
.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cream-deep);
  box-shadow: 0 20px 45px -30px rgba(14, 33, 64, .6);
}
.map-embed iframe { display: block; width: 100%; height: clamp(320px, 45vw, 460px); border: 0; }
.section-dark { background: var(--navy-deep); color: var(--paper); }
.visit-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.section-dark h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.section-dark h3 { color: var(--saffron); font-size: 1.3rem; margin-bottom: 1rem; }
.visit-address { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: #fff; margin-bottom: 1rem; }
.visit-detail { color: var(--cream-deep); max-width: 40ch; margin-bottom: 1.75rem; }
.visit-detail strong { color: #fff; }
.visit-detail a { border-bottom: 1px solid rgba(255,255,255,.45); }
.visit-detail a:hover { border-color: var(--saffron); }
.visit-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.visit-hours { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 1.75rem; }
.visit-hours p { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.12); color: var(--cream-deep); }
.visit-hours p span:last-child { color: #fff; font-family: var(--font-display); font-weight: 560; }
.visit-walkin { border-bottom: 0 !important; color: var(--saffron) !important; font-style: italic; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding-block: 2.5rem; }
.footer-inner { display: grid; gap: 1.25rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: baseline; }
.footer-brand { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.footer-brand em { color: var(--saffron); font-weight: 500; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; font-family: var(--font-display); }
.footer-nav a { color: var(--cream-deep); }
.footer-nav a:hover { color: #fff; }
.footer-meta { color: var(--cream-deep); }
.footer-fine { color: var(--ink-mute); font-size: .95rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; }
.footer-fine a { color: var(--brass); border-bottom: 1px solid rgba(198,154,68,.5); }
.footer-fine a:hover { color: #fff; border-color: #fff; }
/* Makkah Market links keep the emerald tie on light backgrounds */
a.mm { border-bottom: 1px solid rgba(12,122,63,.4); }
a.mm:hover { border-color: var(--moss); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid, .hours-wrap, .visit-grid, .split { grid-template-columns: 1fr; }
  .price-grid, .feature-grid, .peek-grid, .gallery-grid, .reviews-grid, .service-grid { grid-template-columns: 1fr 1fr; }

  /* Header becomes two rows: brand + call on top, a full-width nav strip below,
     so the site stays navigable on a phone (no hamburger needed). */
  .header-inner { flex-wrap: wrap; min-height: 0; padding-block: .6rem; column-gap: 1rem; }
  .brand { margin-right: auto; }
  .site-nav {
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: .4rem 1.2rem;
    margin-top: .55rem;
    padding-top: .55rem;
    border-top: 1px solid var(--cream-deep);
    font-size: .98rem;
  }

  /* Hero: copy leads on mobile (was showing the empty photo frame first).
     The frame drops below the CTAs as a modest, shorter band. */
  .hero { padding-top: 1.25rem; }
  .hero-media { max-width: 22rem; margin: .5rem auto 0; width: 100%; }
  .hero-photo { aspect-ratio: 4 / 3; }
  .price-tag { left: 12px; bottom: 14px; }

  .stat-bar-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .stat { border-left: 0; }
}
@media (max-width: 560px) {
  /* Text-heavy grids go single-column; image grids stay 2-up so photos
     don't blow up to full-width squares on a phone. */
  .price-grid, .feature-grid, .reviews-grid, .service-grid { grid-template-columns: 1fr; }
  .header-inner { gap: .75rem; }
  .btn-call { font-size: .82rem; padding: .5em .8em; }
  .brand { font-size: 1.15rem; }
  body { font-size: 1.08rem; }
}
/* Fixed side poles need edge room; below this the gutter is too tight, so drop them. */
@media (max-width: 720px) {
  body::before, body::after { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .pole-strip, body::before, body::after { animation: none; }
  .page-hero-video .hero-video { display: none; } /* plain navy hero instead */
  .carousel .slide { animation: none; }
  .carousel .slide:first-child { opacity: 1; } /* show a stable first frame */
}
