/* ==========================================================================
   Hafiz Hajj Group — single-page stylesheet (v3 — design enhancement pass)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --c-green-deep:   #1a5f3f;
  --c-green-darker: #0d3624;
  --c-green-deepest:#072014;
  --c-green-soft:   #2c7a52;
  --c-green-glow:   #3f9e6e;
  --c-gold:         #d4a017;
  --c-gold-soft:    #e8c45f;
  --c-gold-deep:    #b88600;
  --c-gold-warm:    #f0d27a;
  --c-cream:        #f5efe0;
  --c-cream-soft:   #faf6ec;
  --c-paper:        #fbfaf6;
  --c-charcoal:     #1a1a1a;
  --c-ink:          #0d0d0d;
  --c-white:        #ffffff;
  --c-muted:        #5b6770;
  --c-line:         rgba(0,0,0,.08);
  --c-line-light:   rgba(0,0,0,.05);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-accent:  'Cinzel', 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container:        1240px;
  --container-narrow: 880px;
  --header-h:         80px;
  --header-h-mobile:  68px;
  --section-pad-y:    clamp(4.5rem, 10vw, 8rem);
  --section-pad-x:    clamp(1rem, 4vw, 2.5rem);

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 8px rgba(13,13,13,.06), 0 1px 2px rgba(13,13,13,.04);
  --shadow-md:  0 8px 28px rgba(13,54,36,.10), 0 2px 6px rgba(13,54,36,.05);
  --shadow-lg:  0 24px 60px rgba(13,54,36,.18), 0 4px 12px rgba(13,54,36,.08);
  --shadow-xl:  0 40px 100px rgba(13,54,36,.22);
  --shadow-gold:0 12px 30px rgba(212,160,23,.32);

  --ease:        cubic-bezier(.2,.7,.2,1);
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);

  --t-fast: .18s;
  --t-base: .3s;
  --t-slow: .6s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
@media (max-width: 1024px) { html { scroll-padding-top: var(--header-h-mobile); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  line-height: 1.65;
  color: var(--c-charcoal);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, picture { max-width: 100%; height: auto; display: block; }
a { color: var(--c-green-deep); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover, a:focus-visible { color: var(--c-gold-deep); }
button { font: inherit; cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 .6em;
  color: var(--c-charcoal);
  letter-spacing: -.015em;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }

/* ---------- A11y ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--c-green-deep); color: var(--c-white);
  padding: .75rem 1rem; border-radius: 0 0 .5rem 0;
}
.skip-link:focus { left: 0; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--section-pad-x);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  position: relative;
  padding-block: var(--section-pad-y);
  scroll-margin-top: var(--header-h);
}

.section-head {
  text-align: center;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  max-width: 760px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-accent);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c-green-deep);
  padding: .4rem 1rem;
  background: rgba(26,95,63,.08);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ""; width: 18px; height: 1.5px; background: var(--c-gold);
}
.h-display {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  line-height: 1.1;
  color: var(--c-charcoal);
  margin: 0 0 1rem;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.section-lead {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--c-muted);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.65;
}
.lead {
  font-size: clamp(1.05rem, 1.65vw, 1.18rem);
  color: var(--c-charcoal);
  line-height: 1.55;
}

/* Decorative section divider — gold dot between two short lines */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  color: var(--c-gold);
  margin: 0 auto 1.5rem;
  width: 100%;
  max-width: 200px;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: .5;
}
.divider__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* Section variants — give each section its own subtle backdrop */
.section--about     { background: var(--c-paper); }
.section--services  {
  background: var(--c-cream-soft);
  position: relative;
  overflow: hidden;
}
.section--services::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 90% 10%, rgba(212,160,23,.06) 0, transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(26,95,63,.04) 0, transparent 30%);
}
.section--services > * { position: relative; z-index: 1; }
.section--why {
  background: linear-gradient(180deg, var(--c-paper) 0%, var(--c-paper) 100%);
  position: relative;
}
.section--why::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(rgba(26,95,63,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  opacity: .8;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}
.section--why > * { position: relative; z-index: 1; }
.section--news      { background: var(--c-cream-soft); }
.section--contact   { background: var(--c-paper); }

/* ==========================================================================
   HEADER — light/white background, dark nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(13,54,36,.06);
  transition: background var(--t-base) var(--ease), padding var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 4px 20px rgba(13,54,36,.08);
  border-bottom-color: rgba(13,54,36,.1);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: .85rem var(--section-pad-x);
  min-height: var(--header-h);
}
.site-header.is-scrolled .site-header__inner { min-height: 70px; padding-block: .65rem; }

.site-brand {
  display: inline-flex; align-items: center;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.site-brand img,
.site-brand picture { display: block; }
.site-brand img {
  height: clamp(46px, 5.5vw, 58px);
  width: auto;
  transition: transform var(--t-base) var(--ease-bounce);
}
.site-brand:hover img { transform: scale(1.04); }
.site-brand:focus-visible { outline-offset: 6px; }

.site-header.is-scrolled .site-brand img {
  height: clamp(40px, 4.8vw, 50px);
}

.site-nav { display: flex; align-items: center; }
.hhg-nav-menu { display: flex; align-items: center; gap: .15rem; }
.hhg-nav-menu li { position: relative; }
.hhg-nav-menu a {
  display: inline-flex; align-items: center; gap: .25rem;
  color: var(--c-charcoal);
  font-size: .92rem; font-weight: 500;
  padding: .55rem .95rem;
  border-radius: 8px;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  position: relative;
}
.hhg-nav-menu a::after {
  content: ""; position: absolute; left: 50%; bottom: 6px;
  width: 6px; height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
  opacity: 0; transform: translate(-50%, 4px) scale(.5);
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease-bounce);
}
.hhg-nav-menu a:hover, .hhg-nav-menu a:focus-visible {
  color: var(--c-green-deep);
  background: rgba(26,95,63,.06);
}
.hhg-nav-menu a.is-active {
  color: var(--c-green-deep);
  font-weight: 600;
}
.hhg-nav-menu a.is-active::after { opacity: 1; transform: translate(-50%, 0) scale(1); }

.site-cta { flex-shrink: 0; padding-block: .65rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: 8px;
}
.nav-toggle:hover { background: rgba(13,54,36,.06); }
.nav-toggle__bar {
  display: block; width: 22px; height: 2px;
  background: var(--c-charcoal); border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ⭐ FIX: hide mobile-actions on desktop (was leaking into the header) */
.mobile-actions { display: none; }

@media (max-width: 1024px) {
  .site-header__inner { min-height: var(--header-h-mobile); padding-block: .5rem; }
  .nav-toggle { display: inline-flex; order: 3; }
  .site-cta { display: none; }
  .site-nav {
    position: fixed;
    inset: var(--header-h-mobile) 0 0 0;
    background: rgba(8,8,8,.98);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform var(--t-base) var(--ease);
    padding: 1.5rem 1.25rem 6rem;
    overflow-y: auto;
    visibility: hidden;
    display: flex;
    flex-direction: column;
  }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .hhg-nav-menu {
    flex-direction: column; align-items: stretch; gap: .25rem;
    width: 100%;
  }
  .hhg-nav-menu li { width: 100%; }
  .hhg-nav-menu a {
    padding: 1.05rem 1.25rem;
    font-size: 1.1rem;
    border-radius: 12px;
    border: 1px solid transparent;
  }
  .hhg-nav-menu a:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
  .hhg-nav-menu a.is-active {
    background: rgba(212,160,23,.1);
    border-color: rgba(212,160,23,.25);
    color: var(--c-gold);
  }
  .hhg-nav-menu a::after { display: none; }

  /* Mobile-only actions (call/email/CTA) inside drawer */
  .mobile-actions {
    display: grid;
    margin-top: 2rem;
    gap: .75rem;
  }
  .mobile-actions a {
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: .9rem 1rem;
    color: var(--c-white);
    display: flex; align-items: center; gap: .65rem;
    font-size: .95rem;
    background: transparent;
    transition: background var(--t-fast) var(--ease);
  }
  .mobile-actions a:hover { background: rgba(255,255,255,.05); color: var(--c-white); }
  .mobile-actions .icon { color: var(--c-gold); display: inline-flex; }
  .mobile-actions .primary {
    background: var(--c-gold);
    color: var(--c-ink);
    border-color: var(--c-gold);
    font-weight: 600;
    justify-content: center;
  }
  .mobile-actions .primary:hover { background: var(--c-gold-soft); color: var(--c-ink); }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  --btn-bg: var(--c-green-deep);
  --btn-fg: var(--c-white);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.65rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bg); border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .015em;
  text-decoration: none;
  min-height: 44px;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  box-shadow: var(--shadow-xs);
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--btn-fg);
}
.btn:active { transform: translateY(0); box-shadow: var(--shadow-xs); }
.btn--primary { --btn-bg: var(--c-green-deep); }
.btn--primary:hover { --btn-bg: var(--c-green-soft); }
.btn--gold    { --btn-bg: var(--c-gold); --btn-fg: var(--c-ink); }
.btn--gold:hover { --btn-bg: var(--c-gold-soft); box-shadow: var(--shadow-gold); }
.btn--ghost {
  background: transparent; color: var(--c-green-deep); border-color: var(--c-green-deep);
}
.btn--ghost:hover { background: var(--c-green-deep); color: var(--c-white); }
.btn--ghost-light {
  background: transparent; color: var(--c-white); border-color: rgba(255,255,255,.55);
}
.btn--ghost-light:hover { background: var(--c-white); color: var(--c-green-darker); border-color: var(--c-white); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn--icon-end svg { transition: transform var(--t-base) var(--ease); }
.btn--icon-end:hover svg { transform: translateX(4px); }

/* ==========================================================================
   HERO — Kaaba photograph layered with gold geometric pattern
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(640px, 95vh, 900px);
  display: flex; align-items: center;
  color: var(--c-white);
  overflow: hidden;
  isolation: isolate;
  background: var(--c-green-deepest);
}

/* Photographic background — slow Ken Burns + dark gradient overlay */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero__bg picture, .hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  animation: heroKenBurns 30s ease-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.18); }
}
/* Dark gradient overlay — keeps text legible across the image */
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(212,160,23,.15) 0, transparent 55%),
    linear-gradient(180deg,
      rgba(7,32,20,.78) 0%,
      rgba(7,32,20,.62) 25%,
      rgba(13,13,13,.65) 60%,
      rgba(13,13,13,.92) 100%);
  pointer-events: none;
}

/* Layered Islamic-inspired SVG pattern — sits ABOVE the photo, BELOW the text */
.hero__pattern {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  color: var(--c-gold);
  opacity: .10;
}
.hero__pattern svg {
  width: 100%; height: 100%;
  display: block;
}
.hero__pattern--center {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(420px, 70vw, 720px);
  height: clamp(420px, 70vw, 720px);
  z-index: 1;
  pointer-events: none;
  color: var(--c-gold);
  opacity: .14;
  animation: heroRotate 90s linear infinite;
}
@keyframes heroRotate {
  from { transform: translate(-50%, -50%) rotate(0); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero__glow {
  position: absolute; left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  width: 120%; height: 80%;
  background: radial-gradient(ellipse, rgba(212,160,23,.14) 0, transparent 55%);
  pointer-events: none; z-index: 1;
  filter: blur(40px);
  animation: heroGlowPulse 6s ease-in-out infinite alternate;
}
@keyframes heroGlowPulse {
  from { opacity: .5; }
  to   { opacity: .9; }
}

.hero__content {
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto;
  text-align: center;
  padding-block: clamp(4rem, 9vw, 6rem);
}
.hero__supervision {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--ff-accent); font-weight: 500;
  font-size: .78rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid rgba(212,160,23,.4);
  background: rgba(212,160,23,.07);
  border-radius: 999px;
  padding: .55rem 1.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 0 1px rgba(212,160,23,.1), 0 4px 14px rgba(0,0,0,.2);
}
.hero__supervision::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(212,160,23,.2);
}
.hero__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7.5vw, 5.75rem);
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--c-white);
}
.hero__title .accent {
  display: block;
  font-size: .32em;
  font-style: italic;
  font-weight: 500;
  font-family: var(--ff-display);
  color: var(--c-gold);
  margin-top: 1em;
  letter-spacing: .005em;
  opacity: .95;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  max-width: 620px; margin: 0 auto 2.5rem;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.75rem, 3vw, 2.5rem);
  margin: clamp(3rem, 6vw, 4rem) auto 0;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: 760px;
}
.hero__stats li {
  display: flex; flex-direction: column; align-items: center;
  gap: .35rem;
  text-align: center;
}
.hero__stats strong {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--c-gold);
  font-weight: 700;
  line-height: 1;
  /* Keep number + plus tightly together — prevents the "+" from drifting */
  display: inline-flex; align-items: baseline; gap: 0;
  letter-spacing: -.01em;
}
.hero__stats span {
  font-size: clamp(.65rem, 1vw, .76rem);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.75rem;
  transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  display: inline-flex; flex-direction: column; align-items: center; gap: .65rem;
  z-index: 2;
  text-decoration: none;
}
.hero__scroll:hover { color: var(--c-gold); }
.hero__scroll-line {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(180deg, currentColor, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.55); transform-origin: top; opacity: .4; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}
@media (max-width: 540px) {
  .hero__scroll { display: none; }
  .hero { min-height: 88vh; }
  .hero__title .accent { font-size: .42em; }
}

/* ==========================================================================
   ABOUT — split layout with floating badge
   ========================================================================== */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; gap: 3rem; } }
.about-split__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about-split__media picture, .about-split__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.about-split__media:hover img { transform: scale(1.04); }
.about-split__media::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 60%, rgba(13,54,36,.35));
  z-index: 1;
  pointer-events: none;
}
.about-split__badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 2;
  background: var(--c-gold);
  color: var(--c-ink);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  display: flex; align-items: center; gap: .85rem;
  box-shadow: var(--shadow-gold);
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.about-split__badge .big {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
}
.about-split__badge .lbl {
  font-family: var(--ff-accent);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 540px) {
  .about-split__badge { padding: .85rem 1rem; bottom: 1rem; right: 1rem; }
  .about-split__badge .big { font-size: 2rem; }
}

.about-split__body .eyebrow { margin-bottom: 1rem; }
.about-pillars {
  display: grid; gap: .85rem;
  margin-top: 1.75rem;
}
.about-pillars > div {
  position: relative;
  padding: .85rem 1rem .85rem 2.75rem;
  background: var(--c-cream-soft);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--c-gold);
  font-size: .95rem;
  color: var(--c-charcoal);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.about-pillars > div::before {
  content: "✓";
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px;
  background: var(--c-green-deep); color: var(--c-gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
}
.about-pillars > div:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.about-pillars strong { color: var(--c-green-deep); font-weight: 700; }

/* ==========================================================================
   SERVICES — REDESIGNED (no title duplication, cropped images, side-by-side)
   ========================================================================== */
.services-grid--two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 860px) { .services-grid--two { grid-template-columns: 1fr; } }

.service-feature {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--c-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none; color: var(--c-charcoal);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  isolation: isolate;
  border: 1px solid var(--c-line-light);
}
.service-feature:hover, .service-feature:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  color: var(--c-charcoal);
}
.service-feature__media {
  /* ⭐ Smaller, focused on architecture; crops out the "HAJJ PACKAGES" text in the source image */
  aspect-ratio: 16 / 7;
  overflow: hidden;
  position: relative;
  background: var(--c-green-darker);
}
.service-feature__media picture, .service-feature__media img {
  width: 100%; height: 100%; object-fit: cover;
  /* ⭐ object-position: bottom = focus on Kaaba/Madinah architecture, hide the title text in the upper portion */
  object-position: center bottom;
  transition: transform .8s var(--ease);
}
.service-feature:hover .service-feature__media img { transform: scale(1.06); }
.service-feature__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,54,36,.45) 0%, transparent 30%, rgba(13,54,36,.6) 100%);
}
.service-feature__media-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  font-family: var(--ff-accent);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-gold);
  background: rgba(13,13,13,.65);
  border: 1px solid rgba(212,160,23,.4);
  padding: .35rem .75rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.service-feature__body {
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex; flex-direction: column; flex: 1;
}
.service-feature__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin: 0 0 .75rem;
  color: var(--c-charcoal);
  letter-spacing: -.015em;
}
.service-feature__desc {
  color: var(--c-muted);
  font-size: 1rem;
  margin: 0 0 1.5rem;
  line-height: 1.65;
}
.service-feature__bullets {
  display: grid; gap: .65rem;
  margin: 0 0 1.75rem;
  padding: 1.25rem;
  background: var(--c-cream-soft);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--c-gold);
}
.service-feature__bullets li {
  position: relative;
  padding-left: 1.65rem;
  font-size: .92rem;
  color: var(--c-charcoal);
  font-weight: 500;
}
.service-feature__bullets li::before {
  content: "";
  position: absolute; left: 0; top: .55rem;
  width: 12px; height: 7px;
  border-left: 2px solid var(--c-green-deep);
  border-bottom: 2px solid var(--c-green-deep);
  transform: rotate(-45deg) translateY(-3px);
}
.service-feature__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 600; font-size: .95rem;
  color: var(--c-green-deep);
  letter-spacing: .015em;
}
.service-feature__cta span {
  display: inline-block;
  transition: transform var(--t-base) var(--ease);
}
.service-feature:hover .service-feature__cta span { transform: translateX(6px); }

/* ==========================================================================
   WHY US — REDESIGNED with depth + gradient corners
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.why-card {
  position: relative;
  text-align: center;
  padding: clamp(1.75rem, 3vw, 2.5rem) 1.5rem;
  background: var(--c-white);
  border: 1px solid var(--c-line-light);
  border-radius: var(--radius-lg);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.why-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green-deep), var(--c-gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.why-card::after {
  content: ""; position: absolute; right: -40px; bottom: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  z-index: -1;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26,95,63,.18);
  box-shadow: var(--shadow-md);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover::after { opacity: 1; }
.why-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(26,95,63,.08), rgba(212,160,23,.14));
  color: var(--c-green-deep);
  transition: transform var(--t-base) var(--ease-bounce), background var(--t-base) var(--ease);
  position: relative;
}
.why-card:hover .why-card__icon {
  transform: rotate(-8deg) scale(1.06);
  background: linear-gradient(135deg, rgba(26,95,63,.14), rgba(212,160,23,.22));
}
.why-card__title {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  font-weight: 700;
}
.why-card__desc {
  color: var(--c-muted);
  font-size: .92rem;
  margin: 0;
}

/* ==========================================================================
   NEWS — REDESIGNED with big numbered cards
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.news-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-line-light);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.65rem 1.65rem;
  text-decoration: none; color: var(--c-charcoal);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  isolation: isolate;
}
.news-card::before {
  /* Big faded number in the corner */
  content: attr(data-num);
  position: absolute; right: 1rem; top: .2rem;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 5rem;
  line-height: 1;
  color: var(--c-cream);
  z-index: 0;
  transition: color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
  pointer-events: none;
}
.news-card::after {
  content: ""; position: absolute; left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--c-gold), var(--c-green-deep));
  transform: scaleY(0); transform-origin: top;
  transition: transform var(--t-base) var(--ease);
}
.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26,95,63,.2);
  box-shadow: var(--shadow-md);
  color: var(--c-charcoal);
}
.news-card:hover::before {
  color: rgba(212,160,23,.18);
  transform: translateY(-4px) scale(1.05);
}
.news-card:hover::after { transform: scaleY(1); }
.news-card > * { position: relative; z-index: 1; }
.news-card__date {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-accent);
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-gold-deep); margin-bottom: 1rem;
  font-weight: 700;
}
.news-card__date::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,.2);
}
.news-card__title {
  font-size: 1.2rem; line-height: 1.3; margin-bottom: .65rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.news-card__excerpt {
  color: var(--c-muted); font-size: .92rem; margin-bottom: 1.25rem;
  flex: 1;
}
.news-card__cta {
  font-weight: 600; font-size: .9rem;
  color: var(--c-green-deep);
  letter-spacing: .015em;
  display: inline-flex; align-items: center; gap: .35rem;
}
.news-card__cta::after {
  content: "→";
  display: inline-block;
  transition: transform var(--t-base) var(--ease);
}
.news-card:hover .news-card__cta::after { transform: translateX(4px); }

/* ==========================================================================
   CONTACT — info aside + form, then map + careers
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-aside {
  display: grid; gap: 1rem;
}
.contact-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.65rem;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--c-line-light);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(26,95,63,.18);
  box-shadow: var(--shadow-md);
}
.contact-card__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-green-deep), var(--c-green-soft));
  color: var(--c-gold);
  border-radius: 14px;
  flex-shrink: 0;
}
.contact-card__title {
  font-family: var(--ff-accent);
  font-size: .76rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-green-deep);
  margin: 0 0 .35rem;
  font-weight: 700;
}
.contact-card__body {
  margin: 0;
  color: var(--c-charcoal);
  line-height: 1.5;
  font-size: .95rem;
}
.contact-card__body a {
  color: var(--c-charcoal);
  font-weight: 500;
  display: inline-block;
}
.contact-card__body a:hover { color: var(--c-green-deep); }
.contact-card__list { display: grid; gap: .35rem; margin-top: .25rem; }
.contact-card__list a { color: var(--c-charcoal); font-weight: 500; font-size: .95rem; }
.contact-card__list a:hover { color: var(--c-green-deep); }
.contact-card__cta {
  display: inline-block; margin-top: .55rem;
  font-size: .82rem; font-weight: 600;
  color: var(--c-gold-deep);
  letter-spacing: .015em;
}
.contact-card__cta:hover { color: var(--c-green-deep); }

/* Contact form */
.contact-form-wrap {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line-light);
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field {
  display: flex; flex-direction: column; gap: .4rem;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .82rem; font-weight: 600; color: var(--c-charcoal);
  letter-spacing: .015em;
}
.field label .req { color: var(--c-gold-deep); }
.field input, .field textarea, .field select {
  font: inherit;
  padding: .9rem 1rem;
  background: var(--c-cream-soft);
  border: 1.5px solid transparent;
  border-radius: 12px;
  color: var(--c-charcoal);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  min-height: 44px;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-green-deep);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(26,95,63,.12);
}
.field [aria-invalid="true"] {
  border-color: var(--c-gold-deep);
  background: rgba(212,160,23,.05);
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.field--honeypot {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.field--consent {
  flex-direction: row; align-items: flex-start; gap: .75rem;
}
.field--consent input { width: 18px; height: 18px; margin-top: 4px; min-height: auto; }
.field--consent label { font-size: .85rem; font-weight: 400; color: var(--c-muted); line-height: 1.5; }
.form-submit { margin-top: 1.5rem; text-align: center; }
.form-message {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: .92rem;
  animation: msgSlide .4s var(--ease-out);
}
@keyframes msgSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-message--success { background: rgba(26,95,63,.08); color: var(--c-green-darker); border-left: 4px solid var(--c-green-deep); }
.form-message--error   { background: rgba(212,160,23,.12); color: #6e4a00;            border-left: 4px solid var(--c-gold-deep); }

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line-light);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }
@media (max-width: 540px) { .map-wrap iframe { height: 280px; } }

/* Careers */
.careers {
  margin-top: 3rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: linear-gradient(135deg, rgba(26,95,63,.05), rgba(212,160,23,.06));
  border-radius: var(--radius-xl);
  border: 1px dashed rgba(26,95,63,.2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 700px) {
  .careers { grid-template-columns: 1fr; text-align: center; }
}
.careers__title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  margin: 0 0 .35rem;
  color: var(--c-green-darker);
}
.careers p { margin: 0; color: var(--c-muted); }

/* ==========================================================================
   FULL CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  background: var(--c-ink);
  color: var(--c-white);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(212,160,23,.22) 0, transparent 60%),
    radial-gradient(circle at 15% 30%, rgba(26,95,63,.18) 0, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(26,95,63,.18) 0, transparent 40%),
    var(--c-ink);
}
.cta-banner__inner {
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
  max-width: 800px; margin: 0 auto;
}
.cta-banner__eyebrow {
  font-family: var(--ff-accent); color: var(--c-gold);
  letter-spacing: .35em; text-transform: uppercase; font-size: .78rem;
  margin-bottom: 1rem; display: block;
}
.cta-banner__title {
  font-family: var(--ff-accent); font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--c-gold);
  margin: 0 0 1rem;
  letter-spacing: .03em;
  line-height: 1;
}
.cta-banner__sub {
  font-size: 1.1rem; color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}

/* ==========================================================================
   VISA NOTICE BAR
   ========================================================================== */
.site-cta-banner {
  background: linear-gradient(90deg, #2a1f08, #4a3812);
  color: var(--c-cream);
}
.site-cta-banner__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem var(--section-pad-x);
}
.site-cta-banner p {
  margin: 0; font-family: var(--ff-accent); letter-spacing: .15em;
  font-size: clamp(.78rem, 1.3vw, .9rem);
}
.site-cta-banner__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-gold); color: var(--c-ink);
  transition: transform var(--t-base) var(--ease-bounce);
  flex-shrink: 0;
}
.site-cta-banner__icon:hover { transform: rotate(-8deg) scale(1.05); color: var(--c-ink); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--c-green-deep);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 90% 10%, rgba(212,160,23,.12) 0, transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.05) 0, transparent 30%);
}
.site-footer__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--section-pad-x) 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 900px) { .site-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer__inner { grid-template-columns: 1fr; } }
.footer-brand {
  display: inline-flex;
  background: var(--c-cream-soft);
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform var(--t-base) var(--ease-bounce), box-shadow var(--t-base) var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.footer-brand:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.footer-brand img { display: block; height: 52px; width: auto; }
.footer-tagline { color: rgba(245,239,224,.75); font-size: .95rem; max-width: 28ch; margin-top: 1rem; }
.footer-heading {
  color: var(--c-gold);
  font-family: var(--ff-accent); font-weight: 700;
  font-size: .8rem; letter-spacing: .25em; text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.footer-blurb { font-size: .92rem; color: rgba(245,239,224,.85); margin-bottom: 1.25rem; }
.footer-links li, .footer-contact li { margin-bottom: .75rem; }
.footer-links a, .footer-contact a {
  color: rgba(245,239,224,.85); font-size: .92rem;
  transition: color var(--t-fast) var(--ease);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--c-gold); }
.footer-contact li { display: grid; grid-template-columns: 70px 1fr; gap: .5rem; align-items: start; }
.footer-contact__label {
  font-family: var(--ff-accent); color: var(--c-gold);
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; padding-top: 2px;
}

.site-footer__bottom {
  position: relative;
  border-top: 1px solid rgba(245,239,224,.12);
  padding: 1.25rem var(--section-pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .82rem; color: rgba(245,239,224,.7);
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
}
.site-footer__bottom a { color: rgba(245,239,224,.85); }
.site-footer__bottom a:hover { color: var(--c-gold); }
.footer-legal { display: flex; gap: 1.25rem; }

/* ==========================================================================
   MOBILE QUICK ACTIONS — bottom bar (mobile only)
   ========================================================================== */
.mobile-quick {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: .55rem .65rem calc(.55rem + env(safe-area-inset-bottom, 0));
  gap: .5rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform var(--t-base) var(--ease);
}
.mobile-quick.is-visible { transform: translateY(0); }
.mobile-quick a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem;
  padding: .85rem .5rem;
  border-radius: 12px;
  font-size: .85rem; font-weight: 600;
  background: rgba(255,255,255,.08);
  color: var(--c-white);
  text-decoration: none;
  min-height: 44px;
}
.mobile-quick a:hover, .mobile-quick a:focus-visible { background: rgba(255,255,255,.14); color: var(--c-white); }
.mobile-quick a.primary { background: var(--c-gold); color: var(--c-ink); }
.mobile-quick a.primary:hover { background: var(--c-gold-soft); color: var(--c-ink); }
.mobile-quick svg { flex-shrink: 0; }
@media (max-width: 720px) {
  .mobile-quick { display: flex; }
  body { padding-bottom: 76px; }
}

/* ==========================================================================
   SECTION-SPECIFIC ANIMATION ENHANCEMENTS (v3.1)
   All effects respect prefers-reduced-motion via the global rule at the top.
   ========================================================================== */

/* ----- 1. Card "shine sweep" — gold light streak on hover -----
   Used by: .service-feature, .why-card, .news-card  */
.service-feature, .why-card, .news-card { position: relative; }
.service-feature .shine, .why-card .shine, .news-card .shine,
.service-feature::before:has(+ *) { /* unused, prevents accidental conflict */ }

/* Shine layer is appended via a pseudo-element on each card type so we don't
   have to touch the markup. We add it as ::after only where there's no existing
   conflict, and add a wrapper rule that uses .shine class for the rest. */
.service-feature .shine,
.why-card .shine,
.news-card .shine {
  position: absolute; top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0) 25%,
    rgba(212,160,23,.18) 50%,
    rgba(255,255,255,0) 75%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 3;
  transition: left .9s var(--ease-out);
  border-radius: inherit;
}
.service-feature:hover .shine,
.why-card:hover .shine,
.news-card:hover .shine,
.service-feature:focus-within .shine,
.why-card:focus-within .shine {
  left: 130%;
}

/* ----- 2. Animated underline on title hover ----- */
.service-feature__title,
.news-card__title {
  background-image: linear-gradient(90deg, var(--c-gold), var(--c-gold));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .55s var(--ease-out);
  padding-bottom: .15em;
}
.service-feature:hover .service-feature__title,
.news-card:hover .news-card__title {
  background-size: 100% 2px;
}

/* ----- 3. News card big number — gentle continuous float + reveal pop ----- */
@keyframes newsNumberFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.news-card::before {
  /* Override the static positioning with float animation */
  animation: newsNumberFloat 5s ease-in-out infinite;
}
.news-card:nth-child(2)::before { animation-delay: -1.6s; }
.news-card:nth-child(3)::before { animation-delay: -3.2s; }

/* When a news card scrolls in, the number scales up from below */
@keyframes newsNumberPop {
  from { opacity: 0; transform: translateY(20px) scale(.7); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.news-card.fade-up.is-visible::before {
  animation:
    newsNumberPop .9s var(--ease-bounce) both,
    newsNumberFloat 5s ease-in-out 1s infinite;
}
.news-card.fade-up.is-visible:nth-child(2)::before { animation-delay: .15s, 1.15s; }
.news-card.fade-up.is-visible:nth-child(3)::before { animation-delay: .3s, 1.3s; }

/* ----- 4. Why Us card icons — pop-in scale animation on first reveal ----- */
@keyframes whyIconPop {
  0%   { opacity: 0; transform: scale(.4) rotate(-25deg); }
  60%  { opacity: 1; transform: scale(1.12) rotate(8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.why-card.fade-up .why-card__icon {
  opacity: 0;
}
.why-card.fade-up.is-visible .why-card__icon {
  animation: whyIconPop .9s var(--ease-out) .15s both;
}
.why-card.fade-up.is-visible:nth-of-type(2) .why-card__icon { animation-delay: .25s; }
.why-card.fade-up.is-visible:nth-of-type(3) .why-card__icon { animation-delay: .35s; }
.why-card.fade-up.is-visible:nth-of-type(4) .why-card__icon { animation-delay: .45s; }

/* Persistent gentle "breath" on Why Us icons — very subtle, runs after pop-in */
@keyframes whyIconBreath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.why-card.fade-up.is-visible .why-card__icon {
  /* Re-declare with both animations to chain pop-in then breath */
  animation:
    whyIconPop .9s var(--ease-out) .15s both,
    whyIconBreath 4s ease-in-out 1.2s infinite;
}
.why-card.fade-up.is-visible:nth-of-type(2) .why-card__icon { animation-delay: .25s, 1.3s; }
.why-card.fade-up.is-visible:nth-of-type(3) .why-card__icon { animation-delay: .35s, 1.4s; }
.why-card.fade-up.is-visible:nth-of-type(4) .why-card__icon { animation-delay: .45s, 1.5s; }

/* ----- 5. About image — clip-path reveal + slow zoom on first view ----- */
@keyframes aboutImageReveal {
  from { clip-path: inset(0 100% 0 0); transform: scale(1.08); }
  to   { clip-path: inset(0 0 0 0);    transform: scale(1); }
}
.about-split__media.fade-up img,
.about-split__media.fade-up picture {
  /* Default state before reveal */
  transform: scale(1.08);
  transition: transform 1s var(--ease-out);
}
.about-split__media.fade-up.is-visible {
  /* Use clip-path on the container for the reveal effect */
  animation: aboutImageReveal 1.4s var(--ease-out) both;
}
.about-split__media.fade-up.is-visible img,
.about-split__media.fade-up.is-visible picture {
  transform: scale(1);
}

/* Slow zoom-in on hover (overrides the existing .04 scale to be more dramatic) */
.about-split__media:hover img { transform: scale(1.06); }

/* ----- 6. About badge — emphasize the float with a subtle gold shadow pulse ----- */
@keyframes badgeShadowPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(212,160,23,.32); }
  50%      { box-shadow: 0 18px 44px rgba(212,160,23,.46); }
}
.about-split__badge {
  animation:
    badgeFloat 4s ease-in-out infinite,
    badgeShadowPulse 4s ease-in-out infinite;
}

/* ----- 7. About pillar items — staggered slide-in from left ----- */
@keyframes pillarSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.about-pillars.fade-up > div { opacity: 0; }
.about-pillars.fade-up.is-visible > div {
  animation: pillarSlide .65s var(--ease-out) both;
}
.about-pillars.fade-up.is-visible > div:nth-child(1) { animation-delay: .1s; }
.about-pillars.fade-up.is-visible > div:nth-child(2) { animation-delay: .25s; }
.about-pillars.fade-up.is-visible > div:nth-child(3) { animation-delay: .4s; }

/* ----- 8. Service feature image — slow zoom while idle, then accelerate on hover ----- */
@keyframes serviceImageDrift {
  0%, 100% { transform: scale(1.02) translate(0, 0); }
  50%      { transform: scale(1.06) translate(-1%, -1%); }
}
.service-feature__media img {
  animation: serviceImageDrift 18s ease-in-out infinite;
}
.service-feature:hover .service-feature__media img {
  transform: scale(1.08);
  animation: none; /* let the hover transform take over */
}

/* ----- 9. Service media tag — pop-in on hover ----- */
.service-feature__media-tag {
  transition: transform var(--t-base) var(--ease-bounce), background var(--t-fast) var(--ease);
}
.service-feature:hover .service-feature__media-tag {
  transform: scale(1.05) translateY(-2px);
  background: rgba(13,13,13,.85);
}

/* ----- 10. Service feature CTA arrow — bouncing ellipsis effect ----- */
.service-feature__cta { position: relative; }
.service-feature__cta::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--c-gold);
  transition: width .45s var(--ease-out);
}
.service-feature:hover .service-feature__cta::after { width: 100%; }

/* ==========================================================================
   reCAPTCHA — hide the floating badge (legal text below form covers attribution)
   ========================================================================== */
.grecaptcha-badge { visibility: hidden !important; }

/* ==========================================================================
   FADE-UP animation
   ========================================================================== */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .08s; }
.fade-up.delay-2 { transition-delay: .16s; }
.fade-up.delay-3 { transition-delay: .24s; }
.fade-up.delay-4 { transition-delay: .32s; }

/* ==========================================================================
   UTILITY
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.display-2 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(3rem, 9vw, 6rem); color: var(--c-green-deep); }

/* Print */
@media print {
  .site-header, .site-footer, .nav-toggle, .site-cta-banner, .mobile-quick, .hero__scroll { display: none; }
  body { color: #000; background: #fff; padding-bottom: 0; }
  .section { padding-block: 1.5rem; page-break-inside: avoid; }
}
