/* ==========================================================================
   Alchemy Hair Lab — Main Stylesheet
   Ported from React + Tailwind (Figma Make source) by Stealth Media Marketing.

   Sections:
   1. Tokens / variables
   2. Reset & base
   3. Layout primitives (container, section, grid, eyebrow, divider)
   4. Typography
   5. Buttons
   6. Header / Navigation / Mobile drawer
   7. Footer / FloatingBookButton
   8. Reusable components (cards, accordion, tabs, hero, lightbox, form)
   9. Page-specific tweaks
   ========================================================================== */

/* ----------------------------- 1. Tokens ------------------------------- */
:root {
  --c-bg:        #0D0D0D;
  --c-bg-alt:    #1A1A1A;
  --c-card:      #252525;
  --c-text:      #F5F2EC;
  --c-gold:      #C9A227;
  --c-danger:    #D32F2F;

  --f-display:   'Playfair Display', Georgia, serif;
  --f-caps:      'Oswald', Impact, sans-serif;
  --f-script:    'Pinyon Script', 'Brush Script MT', cursive;
  --f-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:   6px;
  --radius:      10px;
  --radius-full: 9999px;

  --maxw:        1440px;
  --maxw-md:     1200px;
  --maxw-sm:     900px;

  --shadow-gold: 0 0 20px rgba(201, 162, 39, 0.20);
  --shadow-gold-lg: 0 8px 30px rgba(201, 162, 39, 0.25);
  --shadow-nav:  0 4px 24px rgba(0, 0, 0, 0.6);

  --transition:  all 0.3s ease;

  --nav-h:       72px;
}

/* ----------------------------- 2. Reset & base ------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* Screen-reader-only utility (for skip links etc.) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only:focus {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  clip: auto;
  z-index: 200;
  background: var(--c-gold);
  color: var(--c-bg);
  border-radius: var(--radius-sm);
}

/* Focus styles */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}

/* No-scrollbar utility for horizontal scroll containers */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ----------------------------- 3. Layout primitives -------------------- */
.ahl-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1rem; }
.ahl-container--md { max-width: var(--maxw-md); }
.ahl-container--sm { max-width: var(--maxw-sm); }
.ahl-container--xs { max-width: 800px; }

@media (min-width: 768px) {
  .ahl-container, .ahl-container--md, .ahl-container--sm, .ahl-container--xs { padding: 0 2rem; }
}

.ahl-section { padding: 3.5rem 0; }
.ahl-section--lg { padding: 3.5rem 0; }
.ahl-section--xs { padding: 2.5rem 0; }
@media (min-width: 768px) {
  .ahl-section { padding: 6rem 0; }
  .ahl-section--lg { padding: 6rem 0; }
  .ahl-section--xs { padding: 3.5rem 0; }
}

.bg-dark { background: var(--c-bg); }
.bg-dark-alt { background: var(--c-bg-alt); }
.bg-gold { background: var(--c-gold); color: var(--c-bg); }

.ahl-text-center { text-align: center; }

/* Section eyebrow label */
.ahl-eyebrow {
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  font-family: var(--f-sans);
  font-weight: 500;
  margin: 0 0 0.75rem;
}
.ahl-eyebrow--tight { letter-spacing: 0.2em; font-size: 0.75rem; font-weight: 700; }

/* Gold underline divider */
.ahl-divider {
  width: 4rem;
  height: 2px;
  background: var(--c-gold);
  margin: 0 0 1.5rem;
  border: 0;
}
.ahl-divider--center { margin-left: auto; margin-right: auto; }
.ahl-divider--lg { width: 5rem; }
.ahl-divider--xs { width: 2.5rem; height: 1px; margin-bottom: 1rem; }

/* Grid helpers */
.ahl-grid { display: grid; gap: 1.5rem; }
.ahl-grid--2 { grid-template-columns: 1fr; }
.ahl-grid--3 { grid-template-columns: 1fr; }
.ahl-grid--4 { grid-template-columns: 1fr; }
.ahl-grid--5 { grid-template-columns: repeat(2, 1fr); gap: 0; }
@media (min-width: 768px) {
  .ahl-grid--2 { grid-template-columns: 1fr 1fr; }
  .ahl-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .ahl-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ahl-grid--5 { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1024px) {
  .ahl-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Flex utilities */
.ahl-flex { display: flex; }
.ahl-flex-center { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* ----------------------------- 4. Typography --------------------------- */
.ahl-h-display { /* big serif hero h1 — e.g. "Where Craft Meets Character" */
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
  line-height: 1.1;
  margin: 0;
  color: var(--c-text);
}
.ahl-h-display--xl { font-size: clamp(2.75rem, 7vw + 1rem, 6rem); }

.ahl-h-script { /* italic script accent */
  font-family: var(--f-script);
  color: var(--c-gold);
  font-weight: 400;
  font-size: clamp(3.5rem, 8vw + 1rem, 7.5rem);
  line-height: 1;
  display: inline-block;
}
.ahl-h-script--md { font-size: clamp(2.5rem, 5vw + 1rem, 3.75rem); }
.ahl-h-script--sm { font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem); }

.ahl-h-caps { /* Oswald uppercase display headings */
  font-family: var(--f-caps);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  color: var(--c-text);
  margin: 0;
  line-height: 1.1;
}
.ahl-h-section { /* used inside cards / titles */
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  color: var(--c-text);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.ahl-hero-h1 { /* hero h1 wrapper */
  margin: 0 0 1rem;
  color: var(--c-text);
}
.ahl-hero-line {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(2.5rem, 6vw + 0.5rem, 6rem);
  color: var(--c-text);
  display: block;
}

.ahl-prose {
  font-family: var(--f-sans);
  color: rgba(245, 242, 236, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}
.ahl-prose--lg { font-size: 1.0625rem; }
@media (min-width: 768px) {
  .ahl-prose--lg { font-size: 1.125rem; }
}

/* ----------------------------- 5. Buttons ------------------------------ */
.ahl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
}
@media (min-width: 768px) {
  .ahl-btn { padding: 1rem 2.5rem; font-size: 0.875rem; }
}
.ahl-btn--full { width: 100%; }
@media (min-width: 768px) {
  .ahl-btn--md-auto { width: auto; }
}

.ahl-btn--primary { background: var(--c-gold); color: var(--c-bg); }
.ahl-btn--primary:hover { background: rgba(201, 162, 39, 0.9); }

.ahl-btn--ghost {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.ahl-btn--ghost:hover { background: rgba(201, 162, 39, 0.10); }

.ahl-btn--sm { padding: 0.625rem 1.25rem; font-size: 0.75rem; min-height: 44px; }
.ahl-btn--xs { padding: 0.5rem 0.875rem; font-size: 0.6875rem; min-height: 36px; }

.ahl-btn--oswald { font-family: var(--f-caps); letter-spacing: 0.05em; }

/* ----------------------------- 6. Header / Nav ------------------------- */
.ahl-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-bg);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-nav);
}
.ahl-nav__inner {
  height: var(--nav-h);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 768px) {
  .ahl-nav__inner { padding: 0 2rem; }
}

.ahl-nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .ahl-nav__logo { position: relative; left: auto; transform: none; }
}
.ahl-nav__logo img { height: 40px; width: 40px; }
@media (min-width: 768px) {
  .ahl-nav__logo img { height: 64px; width: 64px; }
}

.ahl-nav__call {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--c-gold);
  color: var(--c-bg);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--f-caps);
  font-weight: 700;
  font-size: 0.75rem;
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
  transition: var(--transition);
}
.ahl-nav__call:hover { background: rgba(201, 162, 39, 0.9); }
@media (min-width: 768px) {
  .ahl-nav__call { display: none; }
}

.ahl-nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-family: var(--f-sans);
  font-weight: 600;
}
@media (min-width: 768px) {
  .ahl-nav__links { display: flex; }
}
.ahl-nav__links a { color: var(--c-text); transition: color 0.2s ease; }
.ahl-nav__links a:hover { color: var(--c-gold); }
.ahl-nav__links a.is-active { color: var(--c-gold); }

.ahl-nav__book {
  display: none;
  background: var(--c-gold);
  color: var(--c-bg);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--f-caps);
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}
.ahl-nav__book:hover { background: rgba(201, 162, 39, 0.9); }
@media (min-width: 768px) {
  .ahl-nav__book { display: inline-block; }
}

.ahl-nav__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -0.5rem;
}
@media (min-width: 768px) {
  .ahl-nav__burger { display: none; }
}
.ahl-nav__burger-lines { display: flex; flex-direction: column; gap: 4px; }
.ahl-nav__burger-lines span { display: block; width: 22px; height: 2px; background: var(--c-text); }

/* Mobile drawer — pure fade in/out, scrollable content, sticky top bar
   so the close button is always reachable even on tall content. */
.ahl-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}
.ahl-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms ease, visibility 0s linear 0s;
}
@media (min-width: 768px) {
  .ahl-drawer { display: none !important; }
}
.ahl-drawer__top {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ahl-drawer__body {
  padding: 3rem 2rem;
  padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
}
.ahl-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--c-text);
  margin-right: -0.5rem;
}
.ahl-drawer__link {
  display: flex;
  align-items: center;
  height: 64px;
  font-family: var(--f-caps);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.05em;
  color: var(--c-text);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ahl-drawer__link:hover, .ahl-drawer__link.is-active { color: var(--c-gold); }
.ahl-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 56px;
  background: var(--c-gold);
  color: var(--c-bg);
  border-radius: var(--radius-full);
  font-family: var(--f-caps);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  text-decoration: none;
}
.ahl-drawer__divider { margin: 2rem 0; height: 1px; background: rgba(201, 162, 39, 0.2); }
.ahl-drawer__contact { display: flex; flex-direction: column; gap: 1.125rem; }
.ahl-drawer__contact a, .ahl-drawer__contact p {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(245, 242, 236, 0.85);
  font-family: var(--f-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0;
  text-decoration: none;
  transition: color 0.2s ease;
  min-height: 24px;
}
.ahl-drawer__contact a:hover { color: var(--c-gold); }
.ahl-drawer__contact a svg, .ahl-drawer__contact p svg {
  color: var(--c-gold);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

/* Staggered slide-in for drawer items — only fires when drawer becomes .is-open. */
.ahl-drawer__list li,
.ahl-drawer__contact {
  opacity: 0;
  transform: translateX(-20px);
}
.ahl-drawer.is-open .ahl-drawer__list li,
.ahl-drawer.is-open .ahl-drawer__contact {
  animation: ahl-slideInLeft 300ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.ahl-drawer.is-open .ahl-drawer__list li:nth-child(1) { animation-delay:  60ms; }
.ahl-drawer.is-open .ahl-drawer__list li:nth-child(2) { animation-delay: 100ms; }
.ahl-drawer.is-open .ahl-drawer__list li:nth-child(3) { animation-delay: 140ms; }
.ahl-drawer.is-open .ahl-drawer__list li:nth-child(4) { animation-delay: 180ms; }
.ahl-drawer.is-open .ahl-drawer__list li:nth-child(5) { animation-delay: 220ms; }
.ahl-drawer.is-open .ahl-drawer__list li:nth-child(6) { animation-delay: 260ms; }
.ahl-drawer.is-open .ahl-drawer__list li:nth-child(7) { animation-delay: 300ms; }
.ahl-drawer.is-open .ahl-drawer__contact { animation-delay: 340ms; }

body.ahl-drawer-open { overflow: hidden; }

@keyframes ahl-slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ahl-slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ----------------------------- 7. Footer / FloatingBookButton ---------- */
.ahl-footer {
  background: var(--c-bg);
}
.ahl-footer__top {
  border-top: 1px solid var(--c-gold);
  padding: 3rem 0 2rem;
}
.ahl-footer__container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .ahl-footer__container { padding: 0 2rem; }
}
.ahl-footer__logo {
  height: 80px;
  width: 80px;
  margin: 0 auto 1.5rem;
}
@media (min-width: 768px) {
  .ahl-footer__logo { height: 96px; width: 96px; margin-bottom: 2rem; }
}
.ahl-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
  row-gap: 0.875rem;
  margin: 0 auto 2rem;
  max-width: 22rem;
  font-family: var(--f-sans);
  font-size: 0.875rem;
  color: rgba(245, 242, 236, 0.7);
}
.ahl-footer__links a { transition: color 0.2s ease; }
.ahl-footer__links a:hover { color: var(--c-gold); }
@media (min-width: 768px) {
  .ahl-footer__links {
    gap: 2rem;
    max-width: none;
  }
}
.ahl-footer__bottom {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.ahl-footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.ahl-footer__socials a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  border-radius: var(--radius);
  transition: color 0.2s ease;
}
.ahl-footer__socials a:hover { color: rgba(201, 162, 39, 0.8); }
.ahl-footer__copy { color: rgba(245, 242, 236, 0.6); margin: 0; }
.ahl-footer__sig { color: rgba(245, 242, 236, 0.65); font-style: italic; font-size: 13px; margin: 0; }
.ahl-footer__sig a { transition: color 0.2s ease; }
.ahl-footer__sig a:hover { color: var(--c-gold); text-decoration: underline; }
@media (min-width: 768px) {
  .ahl-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
  }
  .ahl-footer__copy { text-align: left; }
  .ahl-footer__sig { text-align: right; }
}
.ahl-footer__rule { height: 4px; background: var(--c-gold); }

/* Floating Book Now button — gold pill that follows the user.
   Mobile: full-width bar across the bottom with "Book Your Appointment".
   Desktop: compact pill in the bottom-right corner saying "Book Now". */
.ahl-floating-book {
  display: flex;
  position: fixed;
  /* iOS safe-area: push the button up rather than padding it from inside,
     so its label stays centered when the iOS toolbar collapses on scroll. */
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  left: 1rem;
  right: 1rem;
  height: 52px;
  background: var(--c-gold);
  color: var(--c-bg);
  border-radius: var(--radius-full);
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--f-caps);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  z-index: 90;
  text-decoration: none;
  box-shadow: 0 -4px 24px rgba(201, 162, 39, 0.25);
  opacity: 0;
  transform: translateY(6rem);
  transition: opacity 300ms ease, transform 300ms ease, background 0.2s ease;
  pointer-events: none;
}
.ahl-floating-book:hover { background: rgba(201, 162, 39, 0.9); }
.ahl-floating-book.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 768px) {
  .ahl-floating-book {
    /* Desktop: chunkier gold pill, bottom-right corner. Bumped up so it
       stands out clearly against the page (previously felt undersized). */
    left: auto;
    right: 1.75rem;
    bottom: 1.75rem;
    height: 64px;
    padding: 0 2.25rem;
    font-size: 15px;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.4);
  }
  .ahl-floating-book__mobile { display: none; }
}
@media (max-width: 767px) {
  .ahl-floating-book__desktop { display: none; }
}

/* Squire renders its auto-injected "BOOK NOW" floater inside a Shadow DOM
   attached to #squire_booking_widget_root. We ship our own gold floater,
   so hide the host element — the actual booking panel iframe is a
   separate element that's still triggered by our .book_botton clicks. */
#squire_booking_widget_root { display: none !important; }

/* ----------------------------- 8. Components --------------------------- */

/* Hero w/ background image, dark gradient overlay, logo watermark */
.ahl-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ahl-hero--lg { min-height: 600px; }
@media (min-width: 768px) {
  .ahl-hero { height: 60vh; min-height: 460px; }
  .ahl-hero--lg { height: 100vh; min-height: 700px; }
  .ahl-hero--md { height: 70vh; min-height: 520px; }
  .ahl-hero--sm { height: 55vh; min-height: 400px; }
}
.ahl-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ahl-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.5), rgba(13,13,13,0.75), var(--c-bg));
}
.ahl-hero__bg--strong::after {
  background: linear-gradient(to bottom, rgba(13,13,13,0.7), rgba(13,13,13,0.85), var(--c-bg));
}
.ahl-hero__bg--soft::after {
  background: linear-gradient(to bottom, transparent, rgba(13,13,13,0.6), var(--c-bg));
}
.ahl-hero__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ahl-hero__watermark img {
  width: 260px;
  opacity: 0.05;
}
@media (min-width: 768px) {
  .ahl-hero__watermark img { width: 400px; }
}
.ahl-hero__watermark--xl img { width: 280px; opacity: 0.03; }
@media (min-width: 768px) {
  .ahl-hero__watermark--xl img { width: 600px; }
}
.ahl-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 56rem;
  padding: 3rem 1rem 2.5rem;
}
@media (min-width: 768px) {
  .ahl-hero__content { padding: 0 2rem; }
}

/* Card — used across reviews, services, FAQ, etc. */
.ahl-card {
  background: var(--c-card);
  border: 1px solid rgba(201, 162, 39, 0.20);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
@media (min-width: 768px) {
  .ahl-card { padding: 2rem; }
}
.ahl-card:hover {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-gold);
}
.ahl-card--accent {
  background: var(--c-card);
  border-top: 3px solid var(--c-gold);
  border-radius: var(--radius);
  overflow: hidden;
}
.ahl-card--accent:hover {
  box-shadow: var(--shadow-gold-lg);
}
.ahl-card--soft {
  background: var(--c-bg-alt);
  border: 1px solid rgba(201, 162, 39, 0.20);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
@media (min-width: 768px) {
  .ahl-card--soft { padding: 2rem; }
}
.ahl-card--soft:hover {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-gold);
}

/* Google reviews carousel — desktop shows 3 cards per view, mobile shows 1.
   Uses scroll-snap so JS just calls scrollBy() for prev/next. */
.ahl-greview-carousel {
  position: relative;
  padding: 0;
}
.ahl-greview-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding: 0;
  padding-bottom: 0.5rem;
  /* Hide native scrollbar — arrows + dots are the affordance. */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ahl-greview-strip::-webkit-scrollbar { display: none; }
.ahl-greview-strip > .ahl-greview { scroll-snap-align: start; }

@media (min-width: 768px) {
  .ahl-greview-strip {
    grid-auto-columns: calc((100% - 3rem) / 3); /* 3 visible with 1.5rem gaps */
  }
}

.ahl-greview-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--c-card);
  color: var(--c-gold);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: background 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}
.ahl-greview-arrow:hover:not(:disabled) {
  background: var(--c-gold);
  color: var(--c-bg);
  border-color: var(--c-gold);
}
.ahl-greview-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.ahl-greview-arrow--prev { left: -22px; }
.ahl-greview-arrow--next { right: -22px; }
@media (min-width: 768px) {
  .ahl-greview-arrow { display: inline-flex; }
}

.ahl-greview-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.ahl-greview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 242, 236, 0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ahl-greview-dot.is-active { background: var(--c-gold); transform: scale(1.25); }
.ahl-greview-dot:hover:not(.is-active) { background: rgba(245, 242, 236, 0.5); }

/* Google-branded review card — mirrors the look of an actual Google Reviews
   widget so visitors immediately recognise reviews as authentic Google posts. */
.ahl-greview-grid { align-items: stretch; }
.ahl-greview {
  background: var(--c-card);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: var(--transition);
}
@media (min-width: 768px) { .ahl-greview { padding: 1.5rem; } }
.ahl-greview:hover { border-color: var(--c-gold); box-shadow: var(--shadow-gold); }
.ahl-greview__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.ahl-greview__author { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.ahl-greview__avatar,
.ahl-greview__avatar-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ahl-greview__avatar { object-fit: cover; }
.ahl-greview__avatar-fallback {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 1rem;
}
.ahl-greview__author-info { min-width: 0; }
.ahl-greview__name {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--c-text);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ahl-greview__time {
  color: rgba(245, 242, 236, 0.55);
  font-size: 0.75rem;
  font-family: var(--f-sans);
  margin-top: 2px;
}
.ahl-greview__google {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ahl-greview__stars {
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.ahl-greview__text {
  color: rgba(245, 242, 236, 0.92);
  font-family: var(--f-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  /* Trim very long reviews to keep card heights even — overflow is OK,
     full review is one click away on Google. */
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ahl-greview__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  color: rgba(245, 242, 236, 0.6);
  font-family: var(--f-sans);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  text-decoration: none;
  align-self: flex-start;
}
.ahl-greview__badge:hover { color: var(--c-gold); }

/* Variant: review card with a companion work photo at the top (used on the
   Gallery page's "Chair Doesn't Lie" section). */
.ahl-greview--with-photo {
  padding: 0;
  overflow: hidden;
}
.ahl-greview--with-photo .ahl-greview__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.ahl-greview--with-photo .ahl-greview__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ahl-greview--with-photo .ahl-greview__head,
.ahl-greview--with-photo .ahl-greview__stars,
.ahl-greview--with-photo .ahl-greview__text,
.ahl-greview--with-photo .ahl-greview__badge {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.ahl-greview--with-photo .ahl-greview__head { padding-top: 1.25rem; }
.ahl-greview--with-photo .ahl-greview__badge { padding-bottom: 1.25rem; }
.ahl-greview--with-photo .ahl-greview__text {
  /* Allow a touch more room since the card already has a companion image. */
  -webkit-line-clamp: 5;
}

/* Review card (used on Home, Services, Gallery) */
.ahl-review {
  background: var(--c-card);
  border: 1px solid rgba(201, 162, 39, 0.30);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
@media (min-width: 768px) { .ahl-review { padding: 2rem; } }
.ahl-review:hover { border-color: var(--c-gold); box-shadow: var(--shadow-gold); }
.ahl-review__stars { display: flex; gap: 4px; color: var(--c-gold); margin-bottom: 1rem; }
.ahl-review__text {
  color: rgba(245, 242, 236, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.ahl-review__name { color: var(--c-gold); font-weight: 600; font-size: 14px; margin: 0; }

/* Star rating helper */
.ahl-stars { color: var(--c-gold); display: inline-flex; gap: 2px; }

/* Service card (cuts/grooming) */
.ahl-service { position: relative; }
.ahl-service__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.ahl-service__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.ahl-service:hover .ahl-service__img-wrap img { transform: scale(1.05); }
.ahl-service__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(201, 162, 39, 0);
  transition: background 0.3s ease;
}
.ahl-service:hover .ahl-service__img-wrap::after { background: rgba(201, 162, 39, 0.4); }
.ahl-service__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--c-gold);
  color: var(--c-bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--f-sans);
  font-weight: 700;
  z-index: 2;
}
.ahl-service__body {
  background: var(--c-card);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding: 1.25rem;
  transition: var(--transition);
}
@media (min-width: 768px) {
  .ahl-service__body { padding: 1.75rem; }
}
.ahl-service:hover .ahl-service__body {
  border-color: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-lg);
}
.ahl-service__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1875rem;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .ahl-service__title { font-size: 1.375rem; margin-bottom: 0.75rem; }
}
.ahl-service__desc {
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.ahl-service__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.ahl-service__price {
  font-family: var(--f-caps);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--c-gold);
}
.ahl-service__duration {
  color: rgba(245, 242, 236, 0.6);
  font-size: 0.875rem;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Package card */
.ahl-package__head {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .ahl-package__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
}
.ahl-package__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.375rem;
  margin: 0;
}
@media (min-width: 768px) {
  .ahl-package__title { font-size: 1.75rem; }
}
.ahl-package__list { display: flex; flex-direction: column; gap: 0.75rem; margin: 0 0 2rem; }
.ahl-package__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-sans);
  font-size: 15px;
  color: var(--c-text);
}
.ahl-package__list li svg { color: var(--c-gold); flex-shrink: 0; }
.ahl-package__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.ahl-package__price {
  font-family: var(--f-caps);
  font-weight: 700;
  font-size: 2rem;
  color: var(--c-gold);
}
@media (min-width: 768px) { .ahl-package__price { font-size: 2.25rem; } }

/* Badge / pill */
.ahl-pill {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-bg);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--f-sans);
  font-weight: 700;
  align-self: flex-start;
  /* Prevent flex containers from squeezing the pill — its width should
     always hug the label text on one line, not wrap awkwardly. */
  flex-shrink: 0;
  white-space: nowrap;
  width: max-content;
}
.ahl-pill--outline {
  background: rgba(201, 162, 39, 0.10);
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
}

/* Category tabs (horizontal-scroll pills) */
.ahl-tabs {
  background: var(--c-bg-alt);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  transition: var(--transition);
  position: relative;
}
.ahl-tabs.is-sticky {
  position: sticky;
  top: var(--nav-h);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.15);
  z-index: 40;
}
.ahl-tabs__inner {
  max-width: var(--maxw-md);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .ahl-tabs__inner { padding: 0 2rem; } }
.ahl-tabs__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 1rem;
  scroll-behavior: smooth;
}
@media (min-width: 768px) {
  .ahl-tabs__row { justify-content: center; gap: 1rem; scroll-padding: 0 2rem; }
}
.ahl-tabs__row::-webkit-scrollbar { display: none; }
.ahl-tabs__row { -ms-overflow-style: none; scrollbar-width: none; }

/* "Still have questions" help cards on FAQ — center the icon above the title
   so the layout is balanced rather than left-aligned. */
.ahl-help-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ahl-help-card__icon {
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.ahl-help-card__title {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-text);
  margin: 0 0 0.5rem;
}
.ahl-help-card__desc {
  color: rgba(245, 242, 236, 0.7);
  font-size: 14px;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

/* Wrap variant — used on the Gallery page where 8 category pills wouldn't
   fit on a single line on desktop. On mobile they still scroll horizontally
   with extra side padding so neither end pill is flush with the viewport edge. */
.ahl-tabs__row--wrap {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .ahl-tabs__row--wrap {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-left: 0;
    padding-right: 0;
  }
}
.ahl-tab {
  white-space: nowrap;
  padding: 0.625rem 1rem;
  font-size: 12px;
  border-radius: var(--radius-full);
  background: var(--c-card);
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  font-family: var(--f-sans);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  scroll-snap-align: center;
  transition: var(--transition);
  cursor: pointer;
}
@media (min-width: 768px) {
  .ahl-tab { padding: 0.75rem 1.5rem; font-size: 13px; }
}
.ahl-tab.is-active { background: var(--c-gold); color: var(--c-bg); }

/* Tabs that have an inline icon next to the label (gallery category pills). */
.ahl-tab--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.ahl-tab--with-icon svg { width: 14px; height: 14px; flex-shrink: 0; }
.ahl-tabs__fade {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3rem;
  pointer-events: none;
  background: linear-gradient(to left, var(--c-bg-alt), transparent);
}
@media (min-width: 768px) { .ahl-tabs__fade { display: none; } }
.ahl-tabs--on-dark { background: var(--c-bg); }
.ahl-tabs--on-dark .ahl-tabs__fade { background: linear-gradient(to left, var(--c-bg), transparent); }

/* Bar of "what's included" pills */
.ahl-included {
  background: var(--c-gold);
  padding: 2rem 0;
}
@media (min-width: 768px) { .ahl-included { padding: 3rem 0; } }
.ahl-included__title {
  font-family: var(--f-caps);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--c-bg);
  text-align: center;
  margin: 0 0 1.25rem;
}
@media (min-width: 768px) { .ahl-included__title { font-size: 20px; margin-bottom: 2rem; } }
/* Mobile: stack pills full-width, one per row — uniform size, no orphan.
   Desktop: flex-wrap centered, pills size to content. */
.ahl-included__row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .ahl-included__row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}
.ahl-included__pill {
  background: var(--c-bg);
  color: var(--c-text);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  width: 100%;
}
.ahl-included__pill svg { color: var(--c-gold); flex-shrink: 0; }
@media (min-width: 768px) {
  .ahl-included__pill {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    width: auto;
  }
}

/* FAQ accordion */
.ahl-faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.ahl-faq {
  background: var(--c-card);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  transition: var(--transition);
  scroll-margin-top: 8rem;
}
.ahl-faq:hover { border-color: rgba(201, 162, 39, 0.5); box-shadow: 0 4px 20px rgba(201, 162, 39, 0.10); }
.ahl-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
  color: var(--c-text);
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 16px;
}
@media (min-width: 768px) {
  .ahl-faq__trigger { padding: 1.5rem; font-size: 18px; }
}
.ahl-faq__trigger svg { transition: transform 0.3s ease; flex-shrink: 0; color: var(--c-gold); }
.ahl-faq[open] .ahl-faq__trigger svg,
.ahl-faq.is-open .ahl-faq__trigger svg { transform: rotate(180deg); }
.ahl-faq__content {
  padding: 0 1.25rem 1.25rem;
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 242, 236, 0.9);
}
@media (min-width: 768px) { .ahl-faq__content { padding: 0 1.5rem 1.5rem; font-size: 16px; } }
.ahl-faq__content a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 2px; }
.ahl-faq__content a:hover { color: rgba(201, 162, 39, 0.8); }
.ahl-faq[hidden] { display: none; }

/* Lightbox */
.ahl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ahl-lightbox.is-open { display: flex; }
.ahl-lightbox__close,
.ahl-lightbox__nav {
  position: absolute;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  z-index: 5;
  border-radius: var(--radius-full);
}
.ahl-lightbox__close { top: 1rem; right: 1rem; }
.ahl-lightbox__close:hover { color: var(--c-gold); }
.ahl-lightbox__nav { display: none; top: 50%; transform: translateY(-50%); color: var(--c-gold); }
.ahl-lightbox__nav--prev { left: 1rem; }
.ahl-lightbox__nav--next { right: 1rem; }
.ahl-lightbox__nav:disabled, .ahl-lightbox__nav[hidden] { display: none; }
@media (min-width: 768px) {
  .ahl-lightbox__nav { display: inline-flex; }
}
.ahl-lightbox__stage {
  width: 100%;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.ahl-lightbox__img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
}
@media (min-width: 768px) {
  .ahl-lightbox__img { max-height: 80vh; }
}
.ahl-lightbox__caption {
  background: var(--c-bg-alt);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius);
  padding: 1rem;
  max-width: 42rem;
  width: 100%;
}
@media (min-width: 768px) { .ahl-lightbox__caption { padding: 1.5rem; } }
.ahl-lightbox__counter { color: rgba(245, 242, 236, 0.6); font-size: 14px; margin: 0; }
.ahl-lightbox__mobile-nav { display: flex; gap: 0.75rem; width: 100%; max-width: 42rem; margin-top: 0.5rem; }
.ahl-lightbox__mobile-nav button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  border: 2px solid var(--c-gold);
}
.ahl-lightbox__mobile-nav button:first-child { background: transparent; color: var(--c-gold); }
.ahl-lightbox__mobile-nav button:last-child { background: var(--c-gold); color: var(--c-bg); }
.ahl-lightbox__mobile-nav button:disabled { opacity: 0.3; cursor: not-allowed; }
@media (min-width: 768px) { .ahl-lightbox__mobile-nav { display: none; } }

/* Form */
.ahl-form {
  background: var(--c-card);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .ahl-form { padding: 2.5rem; gap: 1.5rem; }
}
.ahl-form__field { display: flex; flex-direction: column; gap: 0.5rem; }
.ahl-form__label { color: var(--c-text); font-size: 14px; font-weight: 500; }
.ahl-form__label .req { color: var(--c-gold); }
.ahl-form__label .opt { color: rgba(245, 242, 236, 0.5); font-size: 12px; margin-left: 0.25rem; }
.ahl-form__input, .ahl-form__select, .ahl-form__textarea {
  background: var(--c-bg);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--c-text);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--f-sans);
  font-size: 16px;
  width: 100%;
  height: 48px;
  transition: border-color 0.2s ease;
}
.ahl-form__textarea { height: auto; min-height: 140px; resize: vertical; }
.ahl-form__input:focus, .ahl-form__select:focus, .ahl-form__textarea:focus {
  border-color: var(--c-gold);
  outline: none;
}
.ahl-form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) {
  .ahl-form__row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.ahl-form__help { color: rgba(245, 242, 236, 0.5); font-size: 12px; margin: 0; }
.ahl-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.ahl-form__consent input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  accent-color: var(--c-gold);
  flex-shrink: 0;
}
.ahl-form__consent label {
  color: rgba(245, 242, 236, 0.7);
  font-size: 13px;
  line-height: 1.6;
}
.ahl-form__honeypot { display: none !important; }
.ahl-form__error {
  background: rgba(211, 47, 47, 0.10);
  border: 1px solid rgba(211, 47, 47, 0.40);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
}
.ahl-form__error.is-visible { display: flex; }
.ahl-form__error svg { color: var(--c-danger); flex-shrink: 0; margin-top: 2px; }
.ahl-form__error p { margin: 0; font-size: 13px; color: rgba(245, 242, 236, 0.8); }
.ahl-form__error strong { color: var(--c-text); display: block; margin-bottom: 0.25rem; font-size: 14px; }
.ahl-form__error a { color: var(--c-gold); text-decoration: underline; }
.ahl-form__success {
  background: var(--c-card);
  border: 2px solid var(--c-gold);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  display: none;
}
@media (min-width: 768px) { .ahl-form__success { padding: 3rem; } }
.ahl-form__success.is-visible { display: block; }
.ahl-form__success svg { color: var(--c-gold); margin: 0 auto 1rem; }

/* Section wrappers / overlap helpers */
.ahl-overlap {
  position: relative;
  overflow: hidden;
}
.ahl-overlap__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.05;
  pointer-events: none;
}
.ahl-overlap__watermark img { width: 280px; }
@media (min-width: 768px) { .ahl-overlap__watermark img { width: 500px; } }
.ahl-overlap__content { position: relative; z-index: 2; }

/* Quote/script blocks */
.ahl-quote {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  line-height: 1.3;
  color: var(--c-text);
  margin: 0;
}

/* Gallery thumbs */
.ahl-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .ahl-thumb-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 1024px) {
  .ahl-thumb-grid { grid-template-columns: repeat(4, 1fr); }
}
.ahl-thumb-grid--5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  .ahl-thumb-grid--5 { grid-template-columns: repeat(5, 1fr); }
}
.ahl-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  width: 100%;
  display: block;
}
.ahl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.ahl-thumb:hover img { transform: scale(1.05); }
.ahl-thumb__overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 162, 39, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.ahl-thumb:hover .ahl-thumb__overlay { background: rgba(201, 162, 39, 0.5); }
.ahl-thumb__overlay svg {
  color: var(--c-text);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ahl-thumb:hover .ahl-thumb__overlay svg { opacity: 1; }
.ahl-thumb__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(13,13,13,0.9), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ahl-thumb:hover .ahl-thumb__caption { opacity: 1; }
.ahl-thumb__caption-cat {
  color: var(--c-gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.ahl-thumb__caption-name { color: var(--c-text); font-size: 14px; }

/* Featured (large) gallery item — only enlarged on tablet+ */
@media (min-width: 768px) {
  .ahl-thumb--feature {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.ahl-thumb[hidden], .is-hidden-by-limit { display: none !important; }

/* Gallery grid with explicit row heights to honor the feature item */
.ahl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  grid-auto-rows: 200px;
}
@media (min-width: 768px) {
  .ahl-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; grid-auto-rows: 260px; }
}
@media (min-width: 1024px) {
  .ahl-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Featured cut layout — 5-column on desktop */
.ahl-feature-cut {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 64rem;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ahl-feature-cut { grid-template-columns: 3fr 2fr; }
}
.ahl-feature-cut__img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.ahl-feature-cut__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.ahl-feature-cut__img:hover img { transform: scale(1.03); }
.ahl-feature-cut__info {
  background: var(--c-bg-alt);
  border-top: 3px solid var(--c-gold);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .ahl-feature-cut__info { border-top: 0; border-left: 3px solid var(--c-gold); padding: 2rem; }
}
.ahl-feature-cut__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.2);
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* Filter row for gallery (barber names, desktop-only text links) */
.ahl-filter-row {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .ahl-filter-row { display: flex; flex-wrap: wrap; } }
.ahl-filter-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 242, 236, 0.6);
  font-family: var(--f-sans);
  font-weight: 600;
  background: transparent;
  border: 0;
  padding: 0.25rem 0.5rem;
}
.ahl-filter-text:hover { color: var(--c-text); }
.ahl-filter-text.is-active { color: var(--c-gold); text-decoration: underline; text-underline-offset: 4px; }

/* Team grid (Home) */
.ahl-team {
  position: relative;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ahl-team { gap: 3rem; grid-template-columns: repeat(3, 1fr); }
}
.ahl-team::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(201, 162, 39, 0.3);
  transform: translateY(-50%);
  display: none;
}
@media (min-width: 768px) { .ahl-team::before { display: block; } }
.ahl-team__member { text-align: center; background: var(--c-bg); position: relative; z-index: 2; }
.ahl-team__avatar-wrap {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  border: 3px solid var(--c-gold);
  overflow: hidden;
  margin: 0 auto 1rem;
}
@media (min-width: 768px) {
  .ahl-team__avatar-wrap { width: 192px; height: 192px; margin-bottom: 1.5rem; }
}
.ahl-team__avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ahl-team__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-text);
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) { .ahl-team__name { font-size: 24px; } }
.ahl-team__title {
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.ahl-team__spec { color: rgba(245, 242, 236, 0.7); font-size: 14px; margin: 0 0 1.5rem; }

/* Iconed feature block (used in "The Alchemy Difference", "Our Core Values", etc.) */
.ahl-feature { text-align: center; }
.ahl-feature__icon {
  color: var(--c-gold);
  margin: 0 0 1rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) { .ahl-feature__icon { margin-bottom: 1.5rem; } }
.ahl-feature__title {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-text);
  margin: 0 0 0.75rem;
}
.ahl-feature__desc { color: rgba(245, 242, 236, 0.7); font-size: 14px; line-height: 1.7; margin: 0; }

/* Process step (Who We Are) */
.ahl-step { text-align: center; }
.ahl-step__num {
  font-family: var(--f-caps);
  font-weight: 700;
  font-size: 40px;
  color: var(--c-gold);
  opacity: 0.3;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) { .ahl-step__num { font-size: 48px; margin-bottom: 1rem; } }
.ahl-step__title { font-family: var(--f-sans); font-weight: 700; font-size: 20px; color: var(--c-text); margin: 0 0 1rem; }
.ahl-step__desc { color: rgba(245, 242, 236, 0.7); font-size: 14px; line-height: 1.7; margin: 0; }

/* Image strip (Home about, Who We Are origin) */
.ahl-split { display: grid; grid-template-columns: 1fr; max-width: var(--maxw); margin: 0 auto; }
@media (min-width: 768px) {
  .ahl-split { grid-template-columns: 1fr 1fr; }
}
.ahl-split__img {
  background-size: cover;
  background-position: center;
  min-height: 280px;
}
@media (min-width: 768px) { .ahl-split__img { min-height: 600px; } }
.ahl-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .ahl-split__body { padding: 5rem 4rem; }
}

/* Map iframe wrapper */
.ahl-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.3);
}
.ahl-map iframe { width: 100%; border: 0; display: block; }
.ahl-map--sm iframe { aspect-ratio: 16 / 10; }
@media (min-width: 768px) { .ahl-map--sm iframe { aspect-ratio: auto; height: 200px; } }
.ahl-map--lg iframe { aspect-ratio: 16 / 10; }
@media (min-width: 768px) { .ahl-map--lg iframe { aspect-ratio: 21 / 9; } }

/* Hours table */
.ahl-hours { display: flex; flex-direction: column; gap: 0.4rem; color: var(--c-text); font-family: var(--f-sans); font-size: 14px; }
.ahl-hours__row { display: flex; justify-content: space-between; }
.ahl-hours__day { color: rgba(245, 242, 236, 0.7); }

/* "Say hello" contact column */
.ahl-contact-list { display: flex; flex-direction: column; gap: 0.5rem; }
.ahl-contact-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--c-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ahl-contact-list a:hover { color: var(--c-gold); }
.ahl-contact-list a svg { color: var(--c-gold); flex-shrink: 0; }

/* Two-column include/exclude (Contact page) */
.ahl-list-check { display: flex; flex-direction: column; gap: 0.625rem; }
.ahl-list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 242, 236, 0.8);
}
@media (min-width: 768px) { .ahl-list-check li { font-size: 15px; } }
.ahl-list-check li::before {
  content: "•";
  color: var(--c-gold);
  flex-shrink: 0;
}
.ahl-list-check--muted li { color: rgba(245, 242, 236, 0.7); }
.ahl-list-check--muted li::before { color: rgba(245, 242, 236, 0.4); }
.ahl-list-check a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 2px; }

/* Before/after card */
.ahl-ba {
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 2px solid rgba(201, 162, 39, 0.4);
  transition: var(--transition);
}
.ahl-ba:hover { border-color: var(--c-gold); box-shadow: var(--shadow-gold-lg); }
.ahl-ba__imgs { display: grid; grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) { .ahl-ba__imgs { grid-template-columns: 1fr; } }
.ahl-ba__img { position: relative; aspect-ratio: 1 / 1; }
@media (min-width: 768px) { .ahl-ba__img { aspect-ratio: 4 / 5; } }
.ahl-ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ahl-ba__img--after { border-left: 2px solid var(--c-gold); }
@media (min-width: 768px) {
  .ahl-ba__img--after { border-left: 0; border-top: 2px solid var(--c-gold); }
}
.ahl-ba__label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--f-sans);
  font-weight: 700;
}
@media (min-width: 768px) { .ahl-ba__label { top: 1rem; left: 1rem; padding: 0.25rem 0.75rem; font-size: 12px; } }
.ahl-ba__label--before { background: rgba(13, 13, 13, 0.8); color: var(--c-text); }
.ahl-ba__label--after { background: var(--c-gold); color: var(--c-bg); }

/* Discount card (Services) */
.ahl-discount {
  background: var(--c-card);
  border: 1px solid var(--c-gold);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
@media (min-width: 768px) { .ahl-discount { padding: 1.5rem; } }
.ahl-discount svg { color: var(--c-gold); margin: 0 auto 1rem; }
.ahl-discount__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--c-text);
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) { .ahl-discount__name { font-size: 1.375rem; } }
.ahl-discount__amount {
  font-family: var(--f-caps);
  font-weight: 700;
  font-size: 28px;
  color: var(--c-gold);
  margin: 0 0 1rem;
}
@media (min-width: 768px) { .ahl-discount__amount { font-size: 32px; } }
.ahl-discount__cond { color: rgba(245, 242, 236, 0.6); font-size: 14px; margin: 0; }

/* Add-on card (Services) */
.ahl-addon {
  background: var(--c-card);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.ahl-addon:hover { border-color: var(--c-gold); box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15); }
.ahl-addon svg { color: var(--c-gold); margin: 0 auto 1rem; }
.ahl-addon__name { font-family: var(--f-sans); font-weight: 700; font-size: 16px; color: var(--c-text); margin: 0 0 0.5rem; }
.ahl-addon__dur { color: rgba(245, 242, 236, 0.5); font-size: 12px; margin: 0 0 0.75rem; }
.ahl-addon__price { font-family: var(--f-caps); font-weight: 700; font-size: 24px; color: var(--c-gold); margin: 0 0 1rem; }

/* CTA section variants */
.ahl-cta { text-align: center; max-width: 50rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .ahl-cta { padding: 0 2rem; } }

/* Color helpers */
.text-gold { color: var(--c-gold); }
.text-muted { color: rgba(245, 242, 236, 0.7); }
.text-faint { color: rgba(245, 242, 236, 0.6); }
.text-italic { font-style: italic; }
.fw-700 { font-weight: 700; }

/* Pill cluster for service categories text "pillrow" */
.ahl-pillrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--c-gold);
  font-family: var(--f-sans);
  font-size: 14px;
}
@media (min-width: 768px) { .ahl-pillrow { flex-direction: row; gap: 1.5rem; } }
.ahl-pillrow span { display: inline-flex; align-items: center; gap: 0.5rem; }
.ahl-pillrow .sep { display: none; color: rgba(201, 162, 39, 0.4); }
@media (min-width: 768px) { .ahl-pillrow .sep { display: inline; } }

/* Spacing helpers */
.mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; } .mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; } .mb-16 { margin-bottom: 4rem; }

/* Button group on hero / CTA */
.ahl-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 768px) { .ahl-btn-group { flex-direction: row; gap: 1rem; } }

/* Inline body text helpers in card content */
.ahl-body-prose { color: rgba(245, 242, 236, 0.8); line-height: 1.7; }
.ahl-body-prose strong { color: var(--c-text); }

/* Hero supplement text (eyebrow above heading on hero variant) */
.ahl-hero__tagline {
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  font-family: var(--f-sans);
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.ahl-hero__sub {
  color: var(--c-text);
  font-size: 1rem;
  margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
  .ahl-hero__sub { font-size: 1.125rem; margin-bottom: 2rem; }
}
.ahl-hero__sub--muted { color: rgba(245, 242, 236, 0.8); }

/* Google rating chip (used in hero trust strip) — two-line vertical stack. */
.ahl-google-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  font-family: var(--f-sans);
  font-size: 0.875rem;
  color: var(--c-text);
  line-height: 1.2;
}
.ahl-google-chip__main {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}
.ahl-google-chip__logo { width: 16px; height: 16px; flex-shrink: 0; display: inline-block; }
.ahl-google-chip__logo svg { display: block; }
.ahl-google-chip__stars { color: var(--c-gold); display: inline-flex; align-items: center; }
.ahl-google-chip__rating { font-weight: 700; }
.ahl-google-chip__count {
  color: rgba(245, 242, 236, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Smash Balloon Instagram feed wrapper — kill the plugin's default outer
   spacing so it slots cleanly into the section grid we already have. */
.ahl-instagram-feed { line-height: 0; }
.ahl-instagram-feed .sbi_photo_wrap, .ahl-instagram-feed .sb_instagram_header { line-height: normal; }
#sb_instagram .sbi_header_text h3,
#sb_instagram .sb_instagram_header { display: none !important; }
#sb_instagram .sbi_photo { aspect-ratio: 1 / 1; overflow: hidden; }
#sb_instagram .sbi_load { margin-top: 1.5rem !important; }
#sb_instagram #sbi_load .sbi_load_btn { display: none !important; }

/* ---------------------------------------------------------------------------
   Sitemap page (page-sitemap.php) — human-readable site index
   --------------------------------------------------------------------------- */
.ahl-sitemap__header {
  padding-top: clamp(5rem, 10vw, 7rem);
  padding-bottom: clamp(2.5rem, 4vw, 3rem);
}
.ahl-sitemap__lead {
  font-family: var(--f-sans);
  color: rgba(245, 242, 236, 0.8);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .ahl-sitemap__lead { font-size: 1.125rem; }
}
.ahl-sitemap__crawler-note {
  color: rgba(245, 242, 236, 0.5);
  font-family: var(--f-sans);
  font-style: italic;
  font-size: 13px;
  max-width: 36rem;
  margin: 1rem auto 0;
}
.ahl-sitemap__xml-link {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ahl-sitemap__body {
  padding-top: 0;
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
}
.ahl-sitemap__group {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.ahl-sitemap__group--first {
  margin-top: 0;
}
.ahl-sitemap__group-heading {
  font-size: clamp(1.5rem, 2vw + 0.75rem, 2rem);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.ahl-sitemap__group-rule {
  width: 3rem;
  margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
  .ahl-sitemap__group-rule { margin-bottom: 2rem; }
}
.ahl-sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .ahl-sitemap__list { gap: 1rem; }
}
.ahl-sitemap__item {
  background: #252525;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-sm, 8px);
  padding: 1rem;
  transition: border-color 0.2s ease;
}
@media (min-width: 768px) {
  .ahl-sitemap__item { padding: 1.25rem; }
}
.ahl-sitemap__item:hover {
  border-color: rgba(201, 162, 39, 0.4);
}
.ahl-sitemap__link {
  display: block;
  color: var(--c-text);
  text-decoration: none;
}
.ahl-sitemap__link:hover,
.ahl-sitemap__link:hover .ahl-sitemap__label {
  color: var(--c-gold);
}
.ahl-sitemap__label-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.ahl-sitemap__label {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(201, 162, 39, 0.4);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.ahl-sitemap__link:hover .ahl-sitemap__label {
  text-decoration-color: var(--c-gold);
}
@media (min-width: 768px) {
  .ahl-sitemap__label { font-size: 17px; }
}
.ahl-sitemap__href {
  font-family: var(--f-sans);
  color: rgba(245, 242, 236, 0.4);
  font-size: 12px;
  word-break: break-all;
}
.ahl-sitemap__ext {
  font-family: var(--f-sans);
  color: rgba(201, 162, 39, 0.75);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ahl-sitemap__desc {
  color: rgba(245, 242, 236, 0.6);
  font-family: var(--f-sans);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  .ahl-sitemap__desc { font-size: 14px; }
}
.ahl-sitemap__cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.ahl-sitemap__cta-row .ahl-btn {
  width: 100%;
  max-width: 22rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .ahl-sitemap__cta-row {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  .ahl-sitemap__cta-row .ahl-btn { width: auto; max-width: none; }
}
