/*
 * ═══════════════════════════════════════════════════════════════
 *  ATLASHILL CAPITAL — Customizer Additional CSS
 *  Paste this into: Appearance > Customize > Additional CSS
 * ═══════════════════════════════════════════════════════════════
 */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --ah-teal:        #2D4A52;
  --ah-teal-dark:   #1e3239;
  --ah-teal-mid:    #3a5c66;
  --ah-gold:        #9A7E50;
  --ah-gold-light:  #b89a6a;
  --ah-gold-pale:   #d4b98a;
  --ah-parchment:   #F5F1EB;
  --ah-parchment-2: #EDE8DF;
  --ah-text:        #1a2426;
  --ah-text-muted:  #4a5a60;
  --ah-white:       #ffffff;
  --ah-border:      rgba(45,74,82,0.12);

  --ah-font-head:   'Cormorant Garamond', Georgia, serif;
  --ah-font-body:   'DM Sans', system-ui, sans-serif;

  --ah-radius:      4px;
  --ah-radius-lg:   8px;
  --ah-shadow:      0 4px 24px rgba(45,74,82,0.10);
  --ah-shadow-lg:   0 12px 48px rgba(45,74,82,0.16);

  --ah-transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --ah-max-w:       1200px;
  --ah-gap:         2rem;
}

/* ── GLOBAL RESET & BASE ───────────────────────────────────── */
.ah-app *,
.ah-app *::before,
.ah-app *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ah-app {
  font-family: var(--ah-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ah-text);
  background: var(--ah-parchment);
  overflow-x: hidden;
}

.ah-app a {
  color: inherit;
  text-decoration: none;
}

.ah-app img {
  max-width: 100%;
  height: auto;
}

/* ── SPA VIEW SYSTEM ───────────────────────────────────────── */
.ah-view {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--ah-transition), transform var(--ah-transition);
}

.ah-view--active {
  display: block;
  animation: ah-fadeIn 0.4s var(--ah-transition) forwards;
}

@keyframes ah-fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.ah-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(29, 42, 46, 0.0);
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background var(--ah-transition),
              backdrop-filter var(--ah-transition),
              border-color var(--ah-transition),
              box-shadow var(--ah-transition);
}

.ah-nav--scrolled {
  background: rgba(29, 42, 46, 0.96);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(154,126,80,0.20);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.ah-nav__inner {
  max-width: var(--ah-max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ah-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ah-nav__logo {
  height: 40px;
  width: auto;
}

.ah-nav__wordmark {
  font-family: var(--ah-font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ah-white);
  letter-spacing: 0.02em;
}

.ah-nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.ah-nav__links .ah-nav-link {
  font-family: var(--ah-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,241,235,0.80);
  transition: color var(--ah-transition);
  position: relative;
  cursor: pointer;
}

.ah-nav__links .ah-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--ah-gold);
  transition: right var(--ah-transition);
}

.ah-nav__links .ah-nav-link:hover,
.ah-nav__links .ah-nav-link--active {
  color: var(--ah-white);
}

.ah-nav__links .ah-nav-link:hover::after,
.ah-nav__links .ah-nav-link--active::after {
  right: 0;
}

/* Hamburger */
.ah-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.ah-nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ah-white);
  transition: transform var(--ah-transition), opacity var(--ah-transition);
  transform-origin: center;
}

.ah-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ah-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.ah-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.ah-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--ah-teal-dark);
  overflow: hidden;
}

.ah-hero__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(154,126,80,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(45,74,82,0.6) 0%, transparent 60%),
    linear-gradient(135deg, #1a2f36 0%, #2D4A52 50%, #1e3239 100%);
}

/* Decorative grid overlay */
.ah-hero__bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(154,126,80,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154,126,80,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Decorative arc */
.ah-hero__bg-pattern::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 120px;
  background: var(--ah-parchment);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.ah-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--ah-max-w);
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  max-width: 760px;
  padding-left: max(2rem, calc((100vw - var(--ah-max-w)) / 2 + 2rem));
}

.ah-hero__eyebrow {
  font-family: var(--ah-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ah-gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ah-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--ah-gold);
}

.ah-hero__headline {
  font-family: var(--ah-font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ah-white);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.ah-hero__sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(245,241,235,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.ah-hero__scroll-indicator {
  position: absolute;
  bottom: 9rem;
  left: max(2rem, calc((100vw - var(--ah-max-w)) / 2 + 2rem));
  z-index: 2;
}

.ah-hero__scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(154,126,80,0.8), transparent);
  animation: ah-scroll-pulse 2s ease-in-out infinite;
}

@keyframes ah-scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner views)
═══════════════════════════════════════════════════════════ */
.ah-page-hero {
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.ah-page-hero--about,
.ah-page-hero--partners {
  background: linear-gradient(135deg, var(--ah-teal-dark) 0%, var(--ah-teal) 100%);
}

.ah-page-hero--readiness {
  background: linear-gradient(135deg, #1a2f36 0%, var(--ah-teal) 100%);
}

.ah-page-hero--contact {
  background: linear-gradient(135deg, var(--ah-teal-dark) 0%, var(--ah-teal-mid) 100%);
}

.ah-page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 80px;
  background: var(--ah-parchment);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.ah-page-hero--contact::after { background: var(--ah-parchment); }

.ah-page-hero__content {
  max-width: var(--ah-max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ah-page-hero__title {
  font-family: var(--ah-font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--ah-white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.ah-page-hero__sub {
  font-size: 1.05rem;
  color: rgba(245,241,235,0.75);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
.ah-section {
  padding: 6rem 2rem;
  background: var(--ah-parchment);
}

.ah-section--teal {
  background: var(--ah-teal);
}

.ah-section__inner {
  max-width: var(--ah-max-w);
  margin: 0 auto;
}

.ah-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ah-section__header--light .ah-section__title { color: var(--ah-white); }

.ah-section__title {
  font-family: var(--ah-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ah-teal);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.ah-section__rule {
  width: 48px;
  height: 2px;
  background: var(--ah-teal);
  margin: 0 auto 1.5rem;
}

.ah-section__rule--gold { background: var(--ah-gold); }

.ah-section__sub {
  font-size: 1.05rem;
  color: rgba(245,241,235,0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.ah-section__sub--dark {
  color: var(--ah-text-muted);
}

.ah-section__footer {
  text-align: center;
  margin-top: 3rem;
}

/* ═══════════════════════════════════════════════════════════
   GRID SYSTEM
═══════════════════════════════════════════════════════════ */
.ah-grid {
  display: grid;
  gap: var(--ah-gap);
}

.ah-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ah-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ═══════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════ */
.ah-card {
  background: var(--ah-white);
  border-radius: var(--ah-radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--ah-border);
  transition: transform var(--ah-transition), box-shadow var(--ah-transition);
}

.ah-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ah-shadow-lg);
}

.ah-card--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}

.ah-card--service {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ah-card--readiness {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ah-card--readiness:focus {
  outline: 2px solid var(--ah-gold);
  outline-offset: 3px;
}

.ah-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(45,74,82,0.08);
  border-radius: var(--ah-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.ah-card--dark .ah-card__icon {
  background: rgba(154,126,80,0.15);
}

.ah-card__icon .ah-icon {
  width: 22px; height: 22px;
  stroke: var(--ah-teal);
}

.ah-card--dark .ah-card__icon .ah-icon { stroke: var(--ah-gold); }

.ah-card__title {
  font-family: var(--ah-font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ah-teal);
  line-height: 1.2;
}

.ah-card--dark .ah-card__title { color: var(--ah-white); }

.ah-card__body {
  font-size: 0.9rem;
  color: var(--ah-text-muted);
  line-height: 1.7;
  flex-grow: 1;
}

.ah-card--dark .ah-card__body { color: rgba(245,241,235,0.65); }

.ah-card__cta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ah-gold);
  letter-spacing: 0.04em;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--ah-border);
  transition: color var(--ah-transition);
}

.ah-card:hover .ah-card__cta { color: var(--ah-gold-light); }

/* ═══════════════════════════════════════════════════════════
   PARTNER CARDS
═══════════════════════════════════════════════════════════ */
.ah-partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.ah-partners-grid--large {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  justify-content: unset;
}

.ah-partner-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(154,126,80,0.20);
  border-radius: var(--ah-radius-lg);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all var(--ah-transition);
  min-width: 140px;
}

.ah-partner-card:hover {
  background: rgba(154,126,80,0.15);
  border-color: var(--ah-gold);
  transform: translateY(-4px);
}

.ah-partner-card--large {
  background: var(--ah-white);
  border-color: var(--ah-border);
  padding: 2rem 1.25rem;
}

.ah-partner-card--large:hover {
  background: var(--ah-white);
  border-color: var(--ah-gold);
  box-shadow: var(--ah-shadow-lg);
}

.ah-partner-card__icon .ah-icon {
  width: 32px; height: 32px;
  stroke: rgba(245,241,235,0.75);
}

.ah-partner-card--large .ah-partner-card__icon .ah-icon {
  stroke: var(--ah-teal);
}

.ah-partner-card__icon {
  width: 56px; height: 56px;
  background: rgba(154,126,80,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.ah-partner-card--large .ah-partner-card__icon {
  background: rgba(45,74,82,0.08);
}

.ah-partner-card__name {
  font-family: var(--ah-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ah-white);
}

.ah-partner-card--large .ah-partner-card__name {
  font-size: 1.1rem;
  color: var(--ah-teal);
}

.ah-partner-card__industry {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--ah-gold);
  text-transform: uppercase;
}

.ah-partner-card--large .ah-partner-card__industry {
  color: var(--ah-text-muted);
}

.ah-partners-instruction {
  text-align: center;
  color: var(--ah-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   DETAIL / DEEP DIVE VIEWS
═══════════════════════════════════════════════════════════ */
.ah-back-bar {
  background: var(--ah-teal-dark);
  padding: 1rem 2rem;
  padding-top: calc(1rem + 72px);
}

.ah-back-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ah-gold);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color var(--ah-transition);
}

.ah-back-link:hover { color: var(--ah-gold-light); }

.ah-detail-hero {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 4rem 2rem 3.5rem;
  background: linear-gradient(135deg, var(--ah-teal-dark) 0%, var(--ah-teal) 100%);
  position: relative;
  overflow: hidden;
}

.ah-detail-hero--readiness { background: linear-gradient(135deg, #1a2f36 0%, var(--ah-teal) 100%); }

.ah-detail-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--ah-parchment);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.ah-detail-hero__icon {
  width: 80px; height: 80px;
  background: rgba(154,126,80,0.2);
  border: 1px solid rgba(154,126,80,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 2;
  margin-left: max(0px, calc((100vw - var(--ah-max-w)) / 2));
}

.ah-detail-hero__icon .ah-icon { width: 36px; height: 36px; stroke: var(--ah-gold-light); }

.ah-detail-hero__text { position: relative; z-index: 2; }

.ah-detail-hero__title {
  font-family: var(--ah-font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ah-white);
  line-height: 1.15;
  margin-top: 0.25rem;
}

.ah-detail-body {
  max-width: 820px;
}

.ah-detail-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ah-text-muted);
}

.ah-detail-content p { margin-bottom: 1.25rem; }
.ah-detail-content ul { margin: 1rem 0 1.25rem 1.5rem; }
.ah-detail-content li { margin-bottom: 0.5rem; }

.ah-detail-lead {
  font-size: 1.2rem !important;
  font-family: var(--ah-font-head) !important;
  color: var(--ah-teal) !important;
  font-weight: 400;
  line-height: 1.7 !important;
}

.ah-detail-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ah-border);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PILLARS
═══════════════════════════════════════════════════════════ */
.ah-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.ah-about-pillar {
  background: var(--ah-white);
  border-radius: var(--ah-radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--ah-border);
  position: relative;
  overflow: hidden;
}

.ah-about-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--ah-gold);
}

.ah-about-pillar--full {
  grid-column: 1 / -1;
  background: var(--ah-teal);
}

.ah-about-pillar--full::before { background: var(--ah-gold-light); }

.ah-about-pillar__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ah-gold);
  margin-bottom: 0.4rem;
}

.ah-about-pillar--full .ah-about-pillar__label { color: var(--ah-gold-pale); }

.ah-about-pillar__title {
  font-family: var(--ah-font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ah-teal);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ah-about-pillar--full .ah-about-pillar__title { color: var(--ah-white); }

.ah-about-pillar__text {
  font-size: 1rem;
  color: var(--ah-text-muted);
  line-height: 1.8;
}

.ah-about-pillar--full .ah-about-pillar__text { color: rgba(245,241,235,0.80); }

.ah-about-pillar__text--large {
  font-family: var(--ah-font-head);
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════════ */
.ah-cta-strip {
  background: var(--ah-teal-dark);
  padding: 5rem 2rem;
}

.ah-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ah-cta-strip__title {
  font-family: var(--ah-font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--ah-white);
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.ah-btn {
  display: inline-block;
  font-family: var(--ah-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: var(--ah-radius);
  cursor: pointer;
  transition: all var(--ah-transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.ah-btn--gold {
  background: var(--ah-gold);
  color: var(--ah-white);
  border-color: var(--ah-gold);
}

.ah-btn--gold:hover {
  background: var(--ah-gold-light);
  border-color: var(--ah-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(154,126,80,0.35);
}

.ah-btn--outline-gold {
  background: transparent;
  color: var(--ah-gold);
  border-color: var(--ah-gold);
}

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

.ah-btn--full { width: 100%; text-align: center; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.ah-contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.ah-contact-info {
  background: var(--ah-teal);
  border-radius: var(--ah-radius-lg);
  padding: 2.5rem;
  position: sticky;
  top: 100px;
}

.ah-contact-info__title {
  font-family: var(--ah-font-head);
  font-size: 1.6rem;
  color: var(--ah-white);
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(154,126,80,0.25);
}

.ah-contact-info__whatsapp {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(154,126,80,0.15);
  border: 1px solid rgba(154,126,80,0.3);
  border-radius: var(--ah-radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  transition: background var(--ah-transition);
  cursor: pointer;
}

.ah-contact-info__whatsapp:hover { background: rgba(154,126,80,0.25); }

.ah-contact-info__whatsapp-icon {
  width: 40px; height: 40px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ah-contact-info__whatsapp-icon svg {
  width: 20px; height: 20px;
  fill: var(--ah-white);
}

.ah-contact-info__item {
  margin-bottom: 1.25rem;
}

.ah-contact-info__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ah-gold-pale);
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.ah-contact-info__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ah-white);
  line-height: 1.5;
}

.ah-contact-info__value a {
  color: var(--ah-gold-pale);
  transition: color var(--ah-transition);
}

.ah-contact-info__value a:hover { color: var(--ah-white); }

.ah-contact-info__note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(245,241,235,0.5);
  line-height: 1.7;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   FORM
═══════════════════════════════════════════════════════════ */
.ah-form { display: flex; flex-direction: column; gap: 1.25rem; }

.ah-form__row { display: grid; gap: 1.25rem; }
.ah-form__row--half { grid-template-columns: 1fr 1fr; }

.ah-form__group { display: flex; flex-direction: column; gap: 0.4rem; }

.ah-form__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ah-teal);
}

.ah-form__req { color: var(--ah-gold); }

.ah-form__input,
.ah-form__select,
.ah-form__textarea {
  font-family: var(--ah-font-body);
  font-size: 0.95rem;
  color: var(--ah-text);
  background: var(--ah-white);
  border: 1px solid rgba(45,74,82,0.2);
  border-radius: var(--ah-radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--ah-transition), box-shadow var(--ah-transition);
  outline: none;
  width: 100%;
}

.ah-form__input:focus,
.ah-form__select:focus,
.ah-form__textarea:focus {
  border-color: var(--ah-gold);
  box-shadow: 0 0 0 3px rgba(154,126,80,0.12);
}

.ah-form__textarea { resize: vertical; min-height: 120px; }

.ah-form__select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232D4A52' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.ah-form__footer { margin-top: 0.5rem; }

.ah-form__status {
  padding: 0.85rem 1.25rem;
  border-radius: var(--ah-radius);
  font-size: 0.9rem;
  line-height: 1.5;
  display: none;
}

.ah-form__status:not(:empty) { display: block; }

.ah-form__status--success {
  background: rgba(45,74,82,0.08);
  color: var(--ah-teal);
  border-left: 3px solid var(--ah-gold);
}

.ah-form__status--error {
  background: rgba(180,60,60,0.08);
  color: #8b2020;
  border-left: 3px solid #c0392b;
}

/* ═══════════════════════════════════════════════════════════
   VIEW FOOTER NAV
═══════════════════════════════════════════════════════════ */
.ah-view-footer-nav {
  text-align: center;
  padding: 3rem 2rem 5rem;
  background: var(--ah-parchment);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.ah-footer {
  background: var(--ah-teal-dark);
  color: rgba(245,241,235,0.65);
}

.ah-footer__inner {
  max-width: var(--ah-max-w);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.ah-footer__logo { height: 44px; width: auto; margin-bottom: 1rem; }

.ah-footer__wordmark {
  display: block;
  font-family: var(--ah-font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ah-white);
  margin-bottom: 0.75rem;
}

.ah-footer__company {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(245,241,235,0.60);
}

.ah-footer__company small { font-size: 0.8em; }

.ah-footer__disclaimer-text {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(245,241,235,0.40);
}

.ah-footer__base {
  text-align: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: rgba(245,241,235,0.30);
}

/* ═══════════════════════════════════════════════════════════
   ICON SYSTEM
═══════════════════════════════════════════════════════════ */
.ah-icon {
  display: inline-block;
  width: 1em; height: 1em;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ah-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ah-about-grid { grid-template-columns: 1fr; }
  .ah-about-pillar--full { grid-column: unset; }
  .ah-contact-layout { grid-template-columns: 1fr; }
  .ah-contact-info { position: static; }
  .ah-footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ah-cta-strip__inner { flex-direction: column; text-align: center; }
  .ah-detail-hero { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .ah-detail-hero__icon { margin-left: 0; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .ah-nav__hamburger { display: flex; }

  .ah-nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: var(--ah-teal-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--ah-transition);
    z-index: 800;
    box-shadow: -8px 0 40px rgba(0,0,0,0.3);
  }

  .ah-nav__links--open { transform: translateX(0); }

  .ah-nav__links .ah-nav-link {
    font-size: 1rem;
    color: rgba(245,241,235,0.85);
  }

  .ah-grid--3 { grid-template-columns: 1fr; }
  .ah-grid--4 { grid-template-columns: 1fr; }
  .ah-form__row--half { grid-template-columns: 1fr; }
  .ah-hero__content { padding: 7rem 1.5rem 5rem; }
  .ah-page-hero { padding: 8rem 1.5rem 4rem; }
  .ah-section { padding: 4rem 1.5rem; }
  .ah-partners-grid--large { grid-template-columns: repeat(2, 1fr); }
  .ah-cta-strip { padding: 4rem 1.5rem; }
  .ah-detail-hero { padding: 3rem 1.5rem 3rem; }
  .ah-back-bar { padding: 1rem 1.5rem; padding-top: calc(1rem + 72px); }
}

@media (max-width: 480px) {
  .ah-partners-grid--large { grid-template-columns: 1fr; }
  .ah-partner-card { min-width: unset; width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   THEME INTEGRATION — Suppress default WordPress chrome
   inside the app wrapper
═══════════════════════════════════════════════════════════ */
.ah-app + *,
.ah-app ~ .site-footer,
.ah-app ~ footer {
  display: none !important;
}

body:has(.ah-app) .site-header,
body:has(.ah-app) header.site-header {
  display: none !important;
}

body:has(.ah-app) {
  background: var(--ah-parchment) !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════════════ */
@media print {
  .ah-nav, .ah-hero__scroll-indicator,
  .ah-cta-strip, .ah-btn { display: none; }
  .ah-view { display: block !important; break-inside: avoid; }
  .ah-footer { color: #333; background: #fff; }
}
/* ═══════════════════════════════════════════════════════
   PATCH 1 — Nav logo size (original colours kept)
   To adjust size: change the height value below.
   Suggested range: 48px to 80px
═══════════════════════════════════════════════════════ */
.ah-nav__logo {
    height: 64px !important;
    max-height: 64px !important;
    width: auto !important;
    max-width: 240px !important;
    object-fit: contain;
    background: transparent !important;
    mix-blend-mode: multiply;
}

/* ═══════════════════════════════════════════════════════
   PATCH 1b — Footer logo size (original colours kept)
   To adjust size: change the height value below.
   Suggested range: 32px to 56px
═══════════════════════════════════════════════════════ */
.ah-footer__logo {
    height: 75px !important;
    max-height: 75px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain;
    display: inline-block !important;
    vertical-align: middle;
    margin-bottom: 0.4rem;
}

/* ═══════════════════════════════════════════════════════
   PATCH 2 — Force full-width layout
   Overrides the theme's own page/content width constraints
═══════════════════════════════════════════════════════ */

/* Remove theme's max-width on the page content area */
.ah-app,
.ah-app ~ *,
body:has(.ah-app) .entry-content,
body:has(.ah-app) .wp-block-post-content,
body:has(.ah-app) .site-content,
body:has(.ah-app) .content-area,
body:has(.ah-app) .page-content,
body:has(.ah-app) article,
body:has(.ah-app) .wp-block-group,
body:has(.ah-app) main,
body:has(.ah-app) #main,
body:has(.ah-app) #content,
body:has(.ah-app) #primary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Remove the white box / card that the theme wraps pages in */
body:has(.ah-app) .entry-content,
body:has(.ah-app) .wp-block-post-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Neutralise any theme body padding that creates side margins */
body:has(.ah-app) {
    padding: 0 !important;
    overflow-x: hidden;
}

/* Remove the white page-card container some FSE themes add */
body:has(.ah-app) .wp-site-blocks,
body:has(.ah-app) .wp-site-blocks > *:not(#ah-spa-js) {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* Hide the big logo that appears ABOVE the nav (theme's own header logo) */
body:has(.ah-app) .site-logo,
body:has(.ah-app) .wp-block-site-logo,
body:has(.ah-app) .custom-logo-link,
body:has(.ah-app) .site-branding,
body:has(.ah-app) .wp-block-template-part[class*="header"],
body:has(.ah-app) header.wp-block-template-part {
    display: none !important;
}

/* Ensure the ah-app itself stretches edge to edge */
#ah-app {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    position: relative;
}

/* ═══════════════════════════════════════════════════════
   PATCH 3 — Mobile nav: full overlay panel, all links visible
═══════════════════════════════════════════════════════ */

/* Make logo click work, keep original logo background intact */
.ah-nav__brand {
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Nav must sit above everything on the page */
.ah-nav {
    z-index: 9999 !important;
}

@media (max-width: 768px) {

    /* Full-screen dark overlay when menu is open */
    body.ah-menu-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 9990;
    }

    /* Slide-in panel from right */
    .ah-nav__links {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: 280px !important;
        max-width: 80vw !important;
        height: 100vh !important;
        background: #1e3239 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 6rem 2rem 2rem !important;
        gap: 0 !important;
        transform: translateX(110%) !important;
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1) !important;
        z-index: 9995 !important;
        box-shadow: -12px 0 48px rgba(0,0,0,0.5) !important;
        list-style: none !important;
        margin: 0 !important;
        overflow-y: auto !important;
        display: flex !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .ah-nav__links--open {
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .ah-nav__links li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
        list-style: none !important;
    }

    .ah-nav__links .ah-nav-link {
        font-size: 0.9rem !important;
        letter-spacing: 0.15em !important;
        color: rgba(245,241,235,0.85) !important;
        padding: 1.1rem 0 !important;
        width: 100% !important;
        display: block !important;
        text-transform: uppercase !important;
    }

    .ah-nav__links .ah-nav-link:hover,
    .ah-nav__links .ah-nav-link--active {
        color: #9A7E50 !important;
    }

    /* Hamburger stays on top */
    .ah-nav__hamburger {
        z-index: 9999 !important;
        position: relative !important;
        display: flex !important;
    }
}

/* ═══════════════════════════════════════════════════════
   PATCH 4 — Partner card summary & CTA (large grid view)
═══════════════════════════════════════════════════════ */
.ah-partner-card--large {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    align-items: flex-start;
}

.ah-partner-card__summary {
    font-size: 0.82rem;
    color: var(--ah-text-muted);
    line-height: 1.65;
    flex-grow: 1;
    margin-top: 0.25rem;
}

.ah-partner-card__cta {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ah-gold);
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--ah-border);
    width: 100%;
    transition: color 0.25s;
}

.ah-partner-card--large:hover .ah-partner-card__cta {
    color: var(--ah-gold-light);
}

/* ═══════════════════════════════════════════════════════
   PATCH 5 — Hero alignment and headline line control
═══════════════════════════════════════════════════════ */
.ah-hero__content {
    text-align: center !important;
    margin: 0 auto !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    max-width: 900px !important;
}

.ah-hero__eyebrow {
    justify-content: center !important;
}

.ah-hero__headline {
    font-size: clamp(2.8rem, 5vw, 4.2rem) !important;
    white-space: nowrap !important;
    text-align: center !important;
}

.ah-hero__sub {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: nowrap !important;
    max-width: 100% !important;
}

.ah-btn {
    display: inline-block !important;
}

@media (max-width: 768px) {
    .ah-hero__headline {
        white-space: normal !important;
        font-size: clamp(2.2rem, 8vw, 3rem) !important;
    }
    .ah-hero__sub {
        white-space: normal !important;
    }
}

/* ═══════════════════════════════════════════════════════
   PATCH 6 — 5-column services grid
═══════════════════════════════════════════════════════ */
.ah-grid--5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
    .ah-grid--5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .ah-grid--5 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   PATCH 7 — Partners homepage 5-col grid + filter system
═══════════════════════════════════════════════════════ */

/* Homepage partner grid — 5 per row max */
.ah-partners-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 1rem !important;
    justify-content: unset !important;
    flex-wrap: unset !important;
}

@media (max-width: 1024px) {
    .ah-partners-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
    .ah-partners-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Filter bar */
.ah-partners-filters-wrap {
    margin-bottom: 2rem;
}

.ah-partners-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.ah-filter-btn {
    font-family: var(--ah-font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    border: 1px solid rgba(45,74,82,0.25);
    background: transparent;
    color: var(--ah-teal);
    cursor: pointer;
    transition: all 0.22s ease;
}

.ah-filter-btn:hover {
    border-color: var(--ah-gold);
    color: var(--ah-gold);
    background: rgba(154,126,80,0.08);
}

.ah-filter-btn--active {
    background: var(--ah-gold) !important;
    border-color: var(--ah-gold) !important;
    color: var(--ah-white) !important;
}

/* ═══════════════════════════════════════════════════════
   PATCH 8 — Real nav links (multi-page version)
   Styles ah-nav-real-link the same as ah-nav-link was
═══════════════════════════════════════════════════════ */
.ah-nav__links .ah-nav-real-link {
    font-family: var(--ah-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,241,235,0.80);
    transition: color var(--ah-transition);
    position: relative;
    text-decoration: none;
}

.ah-nav__links .ah-nav-real-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 100%;
    height: 1px;
    background: var(--ah-gold);
    transition: right var(--ah-transition);
}

.ah-nav__links .ah-nav-real-link:hover,
.ah-nav__links .ah-nav-real-link.ah-nav-link--active {
    color: var(--ah-white);
}

.ah-nav__links .ah-nav-real-link:hover::after,
.ah-nav__links .ah-nav-real-link.ah-nav-link--active::after {
    right: 0;
}

/* ═══════════════════════════════════════════════════════
   PATCH 9 — Fix nav + page full width on multi-page layout
═══════════════════════════════════════════════════════ */
.ah-nav {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

#ah-app {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden;
}

/* Force theme content wrapper to full width on all pages */
body .entry-content > *,
body .wp-block-post-content > *,
body .wp-block-group {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* ═══════════════════════════════════════════════════════
   PATCH 10 — Multi-page fixes
   Hide theme header/footer, social share, site header
═══════════════════════════════════════════════════════ */

/* Hide theme's own header on all pages with our shortcodes */
body:has(#ah-app) .site-header,
body:has(#ah-app) header.site-header,
body:has(#ah-app) #masthead,
body:has(#ah-app) #site-header,
body:has(#ah-app) .wp-block-template-part[class*="header"],
body:has(#ah-app) header.wp-block-template-part,
body:has(#ah-app) .wp-site-blocks > header {
    display: none !important;
}

/* Hide theme's own footer but NOT our custom footer */
body:has(#ah-app) .site-footer:not(.ah-footer),
body:has(#ah-app) footer.site-footer:not(.ah-footer),
body:has(#ah-app) #colophon,
body:has(#ah-app) #site-footer,
body:has(#ah-app) .wp-block-template-part[class*="footer"],
body:has(#ah-app) footer.wp-block-template-part,
body:has(#ah-app) .wp-site-blocks > footer:not(.ah-footer) {
    display: none !important;
}

/* Always show our custom footer */
.ah-footer,
div.ah-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide Jetpack social share buttons */
body:has(#ah-app) .sharedaddy,
body:has(#ah-app) .sd-sharing,
body:has(#ah-app) .sd-block,
body:has(#ah-app) .jp-relatedposts,
body:has(#ah-app) #jp-post-flair,
body:has(#ah-app) .wpl-likebox,
body:has(#ah-app) .sd-like-widget {
    display: none !important;
}

/* Remove top white gap from theme header */
body:has(#ah-app) {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body:has(#ah-app) .wp-site-blocks,
body:has(#ah-app) .wp-site-blocks > .wp-block-group {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Ensure our nav sits flush at top with no white gap */
body:has(#ah-app) .ah-nav {
    top: 0 !important;
    background: rgba(29, 42, 46, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    border-bottom-color: rgba(154,126,80,0.20) !important;
}

/* LinkedIn icon styles */
.ah-nav__linkedin {
    display: flex !important;
    align-items: center;
    color: rgba(245,241,235,0.80) !important;
    transition: color var(--ah-transition) !important;
    padding: 0 !important;
}

.ah-nav__linkedin:hover {
    color: var(--ah-white) !important;
}

.ah-nav__linkedin::after {
    display: none !important;
}

.ah-footer__base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.78rem;
    color: rgba(245,241,235,0.30);
}

.ah-footer__linkedin {
    color: rgba(245,241,235,0.40);
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
}

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

/* ═══════════════════════════════════════════════════════
   PATCH 11 — Footer spacing and white gap fix
═══════════════════════════════════════════════════════ */

/* Remove white gap between CTA strip and footer */
.ah-cta-strip {
    margin-bottom: 0 !important;
}

.ah-app {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Hide any white space injected by theme between our content and footer */
body:has(#ah-app) .entry-content::after,
body:has(#ah-app) .wp-block-post-content::after,
body:has(#ah-app) .entry-content > div:last-child {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Tighten footer inner spacing */
.ah-footer__inner {
    padding: 3rem 2rem !important;
    gap: 3rem !important;
}

/* Remove excess whitespace in footer brand section */
.ah-footer__brand {
    gap: 0.75rem !important;
}

/* Tighten footer base */
.ah-footer__base {
    padding: 1.25rem 2rem !important;
}

/* Kill the white strip — it's the theme body background showing through */
body:has(#ah-app) {
    background: var(--ah-teal-dark) !important;
}

/* But keep the page content sections their correct colours */
body:has(#ah-app) .ah-section {
    background: var(--ah-parchment);
}

body:has(#ah-app) .ah-section--teal {
    background: var(--ah-teal) !important;
}

body:has(#ah-app) .ah-cta-strip {
    background: var(--ah-teal-dark) !important;
}

/* ═══════════════════════════════════════════════════════
   PATCH 12 — Footer redesign
═══════════════════════════════════════════════════════ */

/* Remove old footer inner styles */
.ah-footer__inner { display: none !important; }

/* New footer top section — two column layout */
.ah-footer__top {
    max-width: var(--ah-max-w);
    margin: 0 auto;
    padding: 3.5rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 4rem;
    align-items: start;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand column */
.ah-footer__brand-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ah-footer__logo {
    height: 52px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.ah-footer__company {
    font-family: var(--ah-font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ah-white);
    margin: 0;
}

.ah-footer__regno {
    font-size: 0.75rem;
    color: rgba(245,241,235,0.45);
    margin: 0;
    line-height: 1.5;
}

/* LinkedIn in footer brand column */
.ah-footer__linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.45rem 1rem;
    border: 1px solid rgba(154,126,80,0.3);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ah-gold) !important;
    transition: all 0.22s ease;
    width: fit-content;
    text-decoration: none !important;
}

.ah-footer__linkedin:hover {
    background: rgba(154,126,80,0.12);
    border-color: var(--ah-gold);
    color: var(--ah-white) !important;
}

/* Disclaimer column */
.ah-footer__disclaimer-col {
    padding-top: 0.25rem;
}

.ah-footer__disclaimer-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ah-gold);
    margin-bottom: 0.75rem;
}

.ah-footer__disclaimer-text {
    font-size: 0.78rem;
    line-height: 1.8;
    color: rgba(245,241,235,0.38);
}

/* Footer base */
.ah-footer__base {
    max-width: var(--ah-max-w);
    margin: 0 auto;
    padding: 1.25rem 2rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: rgba(245,241,235,0.25);
    border-top: none;
}

/* Responsive */
@media (max-width: 768px) {
    .ah-footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem 2rem;
    }
}

/* ═══════════════════════════════════════════════════════
   PATCH 13 — Mobile nav menu item sizing & consistency
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .ah-nav__links {
        gap: 0 !important;
    }

    .ah-nav__links li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
        list-style: none !important;
    }

    /* All nav items — text links AND linkedin — same exact height */
    .ah-nav__links li a,
    .ah-nav__links .ah-nav-real-link,
    .ah-nav__links .ah-nav__linkedin {
        display: flex !important;
        align-items: center !important;
        height: 64px !important;
        min-height: 64px !important;
        padding: 0 !important;
        font-size: 1.15rem !important;
        font-weight: 500 !important;
        letter-spacing: 0.12em !important;
        text-transform: uppercase !important;
        color: rgba(245,241,235,0.85) !important;
        width: 100% !important;
        text-decoration: none !important;
        box-sizing: border-box !important;
    }

    .ah-nav__links .ah-nav-real-link:hover,
    .ah-nav__links .ah-nav-real-link.ah-nav-link--active {
        color: var(--ah-gold) !important;
    }

    .ah-nav__links .ah-nav__linkedin {
        gap: 0.75rem !important;
    }

    .ah-nav__linkedin svg {
        width: 22px !important;
        height: 22px !important;
        flex-shrink: 0;
    }

    /* Remove the underline pseudo-element on mobile */
    .ah-nav__links .ah-nav-real-link::after {
        display: none !important;
    }
}