
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&display=swap');

/* ── TOKENS ── */
:root {
  --black:      #0a0e0d;
  --black-2:    #111815;
  --black-3:    #1a2320;
  --black-4:    #223028;

  --teal:       #2a7a6d;
  --teal-dark:  #1d5e54;
  --teal-mid:   #3d9e8d;
  --teal-light: #6bbfb2;
  --teal-pale:  #e0f2ef;
  --teal-subtle:rgba(42,122,109,.12);

  --gold:       #c8923a;
  --gold-light: #e8b05a;

  --white:      #ffffff;
  --off-white:  #f5f7f6;
  --gray-1:     #e8eceb;
  --gray-2:     #b0bab8;
  --gray-3:     #6b7b78;
  --gray-4:     #3a4a47;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  --max-w:    1280px;
  --gutter:   clamp(20px, 5vw, 80px);
  --nav-h:    72px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  --shadow:    0 2px 20px rgba(0,0,0,.25);
  --shadow-md: 0 8px 40px rgba(0,0,0,.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.45);

  /* border shorthands */
  --border:      rgba(255,255,255,.08);
  --border-dark: rgba(42,122,109,.35);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--black);
}
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.05; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section-pad    { padding: 100px var(--gutter); }
.section-pad-sm { padding:  60px var(--gutter); }
.pad-lg { padding: 100px var(--gutter); }
.pad-md { padding:  72px var(--gutter); }
.pad-sm { padding:  48px var(--gutter); }

/* ── TYPOGRAPHY ── */
.sec-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal-light);
  display: block; margin-bottom: 16px;
}

.sec-h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 700; color: var(--white);
  line-height: 1.06; letter-spacing: -.5px;
}
.sec-h2 em    { font-style: italic; color: var(--teal-light); }
.sec-h2 span  { color: var(--teal-light); }

.sec-sub {
  font-size: 17px; line-height: 1.72; color: var(--gray-2);
  max-width: 520px; margin-top: 18px;
}

/* ── PILL / TAG ── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--teal-light);
  background: rgba(42,122,109,.15);
}
.tag-gold {
  color: var(--gold-light);
  background: rgba(200,146,58,.15);
  border-color: rgba(200,146,58,.25);
}
.tag-filled {
  background: var(--teal); color: var(--white);
  border-color: transparent;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: .2px;
  transition: all .22s ease; cursor: pointer;
}
.btn-teal {
  background: var(--teal); color: #fff;
  box-shadow: 0 4px 20px rgba(42,122,109,.35);
}
.btn-teal:hover {
  background: var(--teal-mid); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,122,109,.45);
}
.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }

.btn-outline-teal {
  background: transparent; color: var(--teal-light);
  border: 1.5px solid var(--teal-light);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

.btn-gold {
  background: var(--gold); color: #fff;
  box-shadow: 0 4px 20px rgba(200,146,58,.35);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-white {
  background: #fff; color: var(--black); font-weight: 700;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-dark { background: var(--black-3); color: var(--white); border: 1px solid rgba(255,255,255,.1); }
.btn-dark:hover { border-color: var(--teal-light); color: var(--teal-light); }

.btn-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--teal-light);
  transition: gap .2s;
}
.btn-arrow:hover { gap: 14px; }
.btn-arrow::after { content: '→'; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--teal-light);
  padding: 0; border-radius: 0;
  border-bottom: 1.5px solid transparent; transition: border-color .2s, gap .2s;
}
.btn-ghost:hover { border-color: var(--teal-light); gap: 10px; }

/* ── DIVIDER ── */
.divider { height: 1px; background: rgba(255,255,255,.08); }

/* ── STAT CHIP ── */
.stat-chip { text-align: center; }
.stat-chip .num {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900; color: var(--white); line-height: 1;
}
.stat-chip .num span { color: var(--teal-light); }
.stat-chip .num em   { font-style: normal; color: var(--teal-light); }
.stat-chip .lbl {
  font-size: 13px; font-weight: 500; color: var(--gray-3);
  margin-top: 8px; letter-spacing: .3px; text-transform: uppercase;
}

/* ── CARD ── */
.card-dark {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card-dark:hover {
  border-color: rgba(42,122,109,.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}

/* accent top bar */
.accent-bar { position: relative; overflow: hidden; }
.accent-bar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal-light); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.accent-bar:hover::before { transform: scaleX(1); }

/* ── IMAGE PLACEHOLDER ── */
.img-ph {
  background: linear-gradient(135deg, var(--black-3) 0%, var(--gray-4) 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-3); font-size: 13px; font-weight: 500;
  letter-spacing: .5px; text-transform: uppercase; overflow: hidden;
}
.photo-placeholder {
  background: linear-gradient(135deg, var(--black-3) 0%, #243028 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px; color: var(--teal-light); position: relative; overflow: hidden;
}
.photo-placeholder::after {
  content: 'Add your photo'; position: absolute; bottom: 10px;
  left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--gray-3);
  background: rgba(0,0,0,.4); padding: 4px 10px; border-radius: 6px; white-space: nowrap;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: none; } }
@keyframes pulse    { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes heroSlide { from { opacity:0; transform:scale(1.04); } to { opacity:1; transform:scale(1); } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(20px, 4vw, 60px);
  background: rgba(10,14,13,.97);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s, backdrop-filter .3s, border-color .3s;
}
/* Hero pages: transparent until scroll */
.hero-page .nav:not(.scrolled) {
  background: transparent;
  border-color: transparent;
}
.nav.scrolled {
  background: rgba(10,14,13,.94);
  backdrop-filter: blur(20px) saturate(1.4);
  border-color: rgba(255,255,255,.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; margin-right: 48px; text-decoration: none;
}
.nav-logo img {
  width: 40px; height: 40px; object-fit: contain;
  background: rgba(42,122,109,.15); border-radius: 50%; padding: 2px;
}
.nav-logo-text { line-height: 1.15; }
.nav-logo-name {
  font-family: var(--serif); font-size: 17px; font-weight: 700;
  color: var(--white); letter-spacing: .2px; display: block;
}
.nav-logo-sub {
  font-size: 9.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal-light); display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; flex: 1;
}
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--gray-2);
  padding: 8px 14px; border-radius: 8px; transition: all .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-links a.active { color: var(--teal-light); background: rgba(42,122,109,.12); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--black-2); border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 20px clamp(20px, 5vw, 60px) 28px; z-index: 998;
  flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px; font-weight: 500; color: var(--gray-2);
  padding: 12px 16px; border-radius: 8px; transition: all .2s;
}
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-mobile .btn { margin-top: 12px; width: fit-content; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--teal); padding: 11px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex; animation: tickerScroll 36s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 12px; font-weight: 600; letter-spacing: .4px;
  color: rgba(255,255,255,.85); padding: 0 28px;
  display: inline-flex; align-items: center; gap: 8px;
}
.ticker-item::before { content: '●'; font-size: 5px; color: rgba(255,255,255,.35); }

/* ============================================================
   FOOTER
   ============================================================ */
/* ==========================================================================
   ZARIYA MODERN FOOTER COMPONENT
   ========================================================================== */
.footer {
  background: var(--black-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px var(--gutter) 0;
  color: var(--gray-3);
  font-family: system-ui, -apple-system, sans-serif;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 60px;
}

/* Brand Column Styling */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 12px;
  color: var(--teal-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-2);
  max-width: 380px;
}

/* Social Media Button Matrix */
.footer-social-wrap {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-circle:hover {
  background: rgba(42, 122, 109, 0.15);
  border-color: var(--teal-light);
  color: var(--teal-light);
  transform: translateY(-2px);
}

/* Link Columns Structural Adjustments */
.footer-heading {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--gray-3);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--teal-light);
}

/* Metadata List Elements (Get In Touch alignment fields) */
.footer-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.meta-icon {
  font-size: 14px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.meta-text {
  color: var(--gray-3);
}

/* Highlighted Action Callout Link */
.footer-link.highlight {
  color: var(--teal-light);
  font-weight: 600;
}

.footer-link.highlight:hover {
  text-decoration: underline;
  color: var(--white);
}

/* Copyright Row Layout Rules */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px 0;
  margin-top: 20px;
}

.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-txt {
  font-size: 13px;
  color: var(--gray-4);
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (QA Device Matrix)
   ========================================================================== */
@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-desc {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .footer {
    padding: 60px var(--gutter) 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-heading {
    margin-bottom: 16px;
  }
}

/* ============================================================
   SLIDER
   ============================================================ */
.slider-track {
  display: flex; gap: 20px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px; scrollbar-width: none;
  cursor: grab;
}
.slider-track:active { cursor: grabbing; }
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > * { scroll-snap-align: start; flex-shrink: 0; }
.slider-controls { display: flex; align-items: center; gap: 10px; margin-top: 24px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: var(--white); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.slider-btn:hover { background: var(--teal); border-color: var(--teal); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none; cursor: pointer; padding: 0; transition: all .25s;
}
.slider-dot.on { background: var(--teal-light); transform: scale(1.3); }

/* ============================================================
   SLIDESHOW
   ============================================================ */
.slideshow { position: relative; overflow: hidden; }
.slideshow-slides { display: flex; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.slideshow-slide { min-width: 100%; }
.slideshow-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.slideshow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; cursor: pointer; transition: all .3s;
}
.slideshow-dot.active { background: var(--white); width: 24px; border-radius: 4px; }
.slideshow-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.3); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15); color: white;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; transition: background .2s;
}
.slideshow-arrow:hover { background: var(--teal); border-color: var(--teal); }
.slideshow-arrow.prev { left: 16px; }
.slideshow-arrow.next { right: 16px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 100px var(--gutter);
}
.cta-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
}
.cta-band h2 {
  font-family: var(--serif); font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700; line-height: 1.04; color: var(--white);
}
.cta-band h2 em { font-style: italic; color: var(--teal-light); }
.cta-band p { font-size: 16px; color: var(--gray-2); margin-top: 14px; line-height: 1.72; max-width: 500px; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
@media (max-width: 800px) {
  .cta-inner { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: row; flex-wrap: wrap; }
}

/* ============================================================
   IMPACT BAND (stats row)
   ============================================================ */
.impact-band {
  background: var(--black-2);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.impact-band-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.impact-band-item {
  padding: 44px 40px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.impact-band-item:last-child { border-right: none; }
.impact-num {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900; color: var(--teal-light); line-height: 1;
}
.impact-lbl {
  font-size: 12.5px; font-weight: 600; letter-spacing: .8px;
  color: var(--gray-3); margin-top: 10px; text-transform: uppercase;
}
@media (max-width: 800px) {
  .impact-band-inner { grid-template-columns: 1fr 1fr; }
  .impact-band-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
}
@media (max-width: 500px) {
  .impact-band-inner { grid-template-columns: 1fr; }
  .impact-band-item { border-bottom: 1px solid rgba(255,255,255,.07); }
}