/* ══════════════════════════════════════
   DESIGN TOKENS / CSS VARIABLES
══════════════════════════════════════ */
:root {
  --yellow: #F5C518;
  --amber: #F0A500;
  --orange: #E8650A;
  --deep-org: #C24E00;
  --crimson: #C0185A;
  --dark: #1C0F00;
  --charcoal: #2E1A00;
  --cream: #FFFCF5;
  --warm-bg: #FFF8EC;
  --muted: #9A7040;
  --white: #FFFFFF;
}


/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}


/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 5vw;
  background: rgba(255, 255, 255);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--yellow);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 4px 32px rgba(200, 80, 0, .12);
}

.nav-logo img {
  height: 82px;
  display: block;
  margin-left: -40px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color .3s;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--deep-org));
  color: var(--white) !important;
  padding: .6rem 1.6rem;
  border-radius: 3px;
  font-weight: 500 !important;
  box-shadow: 0 4px 14px rgba(232, 101, 10, .35);
  transition: transform .2s, box-shadow .3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 101, 10, .45) !important;
}


/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5vw 6rem;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 75% 50%, rgba(245, 197, 24, .18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(232, 101, 10, .22) 0%, transparent 55%),
    linear-gradient(135deg, #1C0F00 0%, #2E1500 100%);
}

.hero-sun-wrap {
  position: absolute;
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(58vw, 720px);
  height: min(58vw, 720px);
  z-index: 1;
}

.sun-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(245, 197, 24, .22) 0%, rgba(232, 101, 10, .1) 40%, transparent 70%);
  animation: breathe 5s ease-in-out infinite;
}

.sun-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.sun-ring-1 {
  inset: 18%;
  border-color: rgba(245, 197, 24, .5);
}

.sun-ring-2 {
  inset: 10%;
  border-color: rgba(245, 197, 24, .2);
}

.sun-ring-3 {
  inset: 2%;
  border-color: rgba(245, 197, 24, .08);
}

.sun-core {
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow) 0%, var(--amber) 60%, var(--orange) 100%);
  box-shadow:
    0 0 80px 30px rgba(245, 197, 24, .35),
    0 0 160px 60px rgba(232, 101, 10, .15);
}

.sun-rays-svg {
  position: absolute;
  inset: 0;
  animation: spin 80s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-eyebrow {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  animation: fadeUp .9s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--yellow);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.6rem;
  animation: fadeUp .9s .15s ease both;
}

.hero h1 .ay {
  color: var(--yellow);
}

.hero h1 .ao {
  color: var(--orange);
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  font-style: italic;
  animation: fadeUp .9s .25s ease both;
}

.hero-desc {
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, .6);
  max-width: 460px;
  margin-bottom: 2.5rem;
  animation: fadeUp .9s .35s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .9s .45s ease both;
}

.btn-sun {
  background: linear-gradient(135deg, var(--yellow), var(--amber));
  color: var(--dark);
  padding: .9rem 2.4rem;
  border: none;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(245, 197, 24, .4);
  transition: transform .2s, box-shadow .3s;
}

.btn-sun:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(245, 197, 24, .5);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: .9rem 2.4rem;
  border: 1.5px solid rgba(255, 255, 255, .25);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .3s, color .3s;
}

.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero-stats {
  position: absolute;
  bottom: 1.7rem;
  left: 5vw;
  right: 5vw;
  z-index: 2;
  display: flex;
  gap: 5rem;
  animation: fadeUp .9s .6s ease both;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-top: .3rem;
}


/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-bar {
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--yellow), var(--amber), var(--orange));
  padding: .85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.m-item {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0 2.5rem;
}


/* ══════════════════════════════════════
   SHARED / UTILITIES
══════════════════════════════════════ */
.section {
  padding: 7rem 5vw;
}

.sec-label {
  font-size: .65rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.sec-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--orange);
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.4rem;
}

.sec-title em {
  font-style: italic;
  color: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-body p {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.9;
  color: #6b4e20;
  margin-bottom: 1rem;
}

.about-card {
  background: var(--dark);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 24, .15);
}

.about-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, .2) 0%, transparent 70%);
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 10, .15) 0%, transparent 70%);
}

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

.qmark {
  font-size: 4rem;
  line-height: 0;
  color: var(--yellow);
  opacity: .5;
  vertical-align: -.8rem;
  margin-right: .2rem;
}

.about-author {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  position: relative;
  z-index: 1;
}

.about-author-role {
  font-size: .7rem;
  color: rgba(255, 255, 255, .35);
  margin-top: .2rem;
}


/* ══════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════ */
.services-wrap {
  background: var(--warm-bg);
}

.svc-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(240, 165, 0, .18);
  position: relative;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
  cursor: pointer;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(232, 101, 10, .15);
}

.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(205, 160, 114, 0.875);
  position: absolute;
  top: .5rem;
  right: 1rem;
  line-height: 1;
}

.svc-icon-bg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(240, 165, 0, .1);
  border: 1px solid rgba(240, 165, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background .35s;
}

.svc-icon {
  stroke: var(--orange);
  fill: none;
}

.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .6rem;
}

.svc-desc {
  font-size: .83rem;
  font-weight: 300;
  line-height: 1.8;
  color: #7a5e30;
  margin-bottom: 1.4rem;
}

.svc-learn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  transition: gap .2s;
}

.svc-learn:hover {
  gap: .7rem;
}

.svc-learn-arrow {
  font-size: .9rem;
}


/* ══════════════════════════════════════
   SERVICE MODAL / DRAWER
══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(28, 15, 0, .7);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-drawer {
  width: min(680px, 95vw);
  height: 100vh;
  overflow-y: auto;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.22, .68, 0, 1.2);
  display: flex;
  flex-direction: column;
}

.modal-overlay.open .modal-drawer {
  transform: translateX(0);
}

.modal-top-bar {
  background: linear-gradient(135deg, var(--yellow), var(--amber), var(--orange));
  padding: 2rem 2.5rem 1.8rem;
  position: relative;
  flex-shrink: 0;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .2);
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.modal-close:hover {
  background: rgba(0, 0, 0, .4);
}

.modal-svc-num {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(28, 15, 0, .6);
  margin-bottom: .4rem;
}

.modal-svc-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.modal-svc-tag {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(28, 15, 0, .55);
  margin-top: .5rem;
}

.modal-body {
  padding: 2.5rem;
  flex: 1;
}

.modal-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.modal-section-title::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--orange);
}

.modal-para {
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.9;
  color: #5a4020;
  margin-bottom: 1.8rem;
}

.modal-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
  margin: 2rem 0;
}


/* ── Case Study Card (inside modal) ── */
.case-card {
  background: var(--dark);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--yellow);
}

.case-label {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .5rem;
}

.case-org {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.case-block-label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: .3rem;
}

.case-block-text {
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, .7);
}

.case-outcome {
  background: rgba(245, 197, 24, .08);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(245, 197, 24, .15);
  margin-top: .5rem;
}

.case-outcome-label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .5rem;
}

.case-outcome-text {
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, .75);
}


/* ══════════════════════════════════════
   APPROACH SECTION
══════════════════════════════════════ */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.approach-sticky {
  position: sticky;
  top: 7rem;
}

.pillar {
  display: flex;
  gap: 1.4rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(240, 165, 0, .2);
}

.pillar:first-child {
  border-top: 1px solid rgba(240, 165, 0, .2);
}

.pillar-n {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 2.2rem;
}

.pillar-t {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: .4rem;
}

.pillar-d {
  font-size: .83rem;
  font-weight: 300;
  line-height: 1.8;
  color: #7a5e30;
}


/* ══════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════ */
.testi-wrap {
  background: linear-gradient(160deg, var(--dark) 0%, #2E1000 100%);
}

.testi-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testi-header .sec-title {
  color: var(--white);
}

.testi-header .sec-label {
  justify-content: center;
  color: var(--yellow);
}

.testi-header .sec-label::before {
  background: var(--yellow);
}

.testi-grid {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.testi-carousel-track {
  position: relative;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  gap: 1.5rem;
}

.testi-card {
  flex: 0 0 88%;
  width: 88%;
  box-sizing: border-box;
  opacity: 0.9;
  transition: opacity 0.35s ease;
}

.testi-card.active {
  opacity: 1;
}

.testi-content {
  max-width: 760px;
  margin: 0 auto;
  box-sizing: border-box;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(245, 197, 24, .12);
  border-radius: 8px;
  padding: 2.2rem;
  transition: border-color .3s, background .3s;
}

.testi-content:hover {
  border-color: rgba(240, 165, 0, .4);
  background: rgba(255, 255, 255, .07);
}

.testi-nav-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(245, 197, 24, .3);
  color: var(--yellow);
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .3s, border-color .3s, transform .2s;
}

.testi-nav-btn:hover {
  background: rgba(245, 197, 24, .15);
  border-color: rgba(245, 197, 24, .6);
  transform: scale(1.08);
}

.testi-stars {
  color: var(--yellow);
  font-size: .85rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.testi-q {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, .82);
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.testi-name {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.testi-org {
  font-size: .68rem;
  color: rgba(255, 255, 255, .3);
  margin-top: .2rem;
}


/* ══════════════════════════════════════
   TEAM SECTION
══════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.team-carousel-track {
  display: contents;
}
.team-img {
  aspect-ratio: 3/4;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-ini {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-ini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
}

.team-role {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: .2rem;
}


/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--amber) 50%, var(--orange) 100%);
  padding: 5.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  max-width: 500px;
  line-height: 1.2;
}

.btn-dark {
  background: var(--dark);
  color: var(--yellow);
  padding: 1.3rem 5rem;
  border: none;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transition: transform .2s, box-shadow .3s;
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .35);
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
  margin-right: 0 !important;
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 4rem 5vw 2rem;
  color: rgba(255, 255, 255, .45);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo img {
  height: 48px;
  margin-bottom: 1rem;
}

.footer-tagline2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .9rem;
  color: rgba(255, 255, 255, .35);
}

.footer-desc {
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 260px;
  margin-top: .8rem;
}

.footer-col-t {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.footer-ul {
  list-style: none;
}

.footer-ul li {
  margin-bottom: .6rem;
}

.footer-ul a {
  text-decoration: none;
  font-size: .8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .4);
  transition: color .3s;
}

.footer-ul a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: .68rem;
  flex-wrap: wrap;
  gap: .8rem;
}


/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
    opacity: .8;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}


/* ══════════════════════════════════════
   HAMBURGER MENU (hidden on desktop)
══════════════════════════════════════ */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 1200;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 900px) {

  /* Nav → hamburger + mobile overlay */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 78vw;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.2rem 1.8rem 2.5rem;
    gap: 0;
    z-index: 1050;
    box-shadow: 6px 0 32px rgba(0,0,0,0.15);
    transform: translateX(-110%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-sizing: border-box;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    list-style: none;
    border-bottom: none;
  }

  /* push all links below the X */
  .nav-links li:first-child {
    margin-top: 3.2rem;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1.25rem;
    letter-spacing: 0.01em;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.3;
  }

  .nav-links a:hover {
    color: var(--orange);
  }

  .nav-links .nav-cta-item {
    border-bottom: none;
    display: flex;
    justify-content: center;
    margin-top: 1.8rem;
    width: 100%;
  }

  .nav-links .nav-cta {
    background: var(--charcoal);
    color: var(--white) !important;
    padding: 0.7rem 0;
    border-radius: 4px;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .25);
    display: block;
    width: 95%;
    text-align: center;
  }

  .nav-links .nav-cta:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(232, 101, 10, .45) !important;
  }

  /* Dark backdrop behind the drawer */
  .nav-links.open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.45);
    z-index: -2;
  }

  /* Hero */
  .hero {
    padding: 7rem 5vw 4rem;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-sun-wrap {
    width: min(80vw, 400px);
    height: min(80vw, 400px);
    right: -15vw;
    opacity: .5;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
  }

  /* About */
  .about-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .approach-sticky {
    position: static;
  }

  /* Services */
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Testimonials */
  .testi-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* CTA */
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 4rem 5vw;
  }

  .cta-buttons {
    align-items: center;
  }

  /* Case study */
  .case-grid {
    grid-template-columns: 1fr;
  }

  /* Modal */
  .modal-drawer {
    width: 100vw;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-desc {
    max-width: 100%;
  }
}


/* ── Mobile ── */
@media (max-width: 580px) {

  /* Sections padding */
  .section {
    padding: 4rem 4vw;
  }

  /* Hero */
  .hero {
    padding: 6.5rem 4vw 3rem;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-tagline {
    font-size: .9rem;
  }

  .hero-desc {
    font-size: .85rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    flex-direction: column;
    gap: .8rem;
    align-items: stretch;
  }

  .hero-btns .btn-sun,
  .hero-btns .btn-ghost {
    width: 100%;
    text-align: center;
  }

  /* Stats — 2×2 grid instead of single column */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-top: 2.5rem;
    text-align: center;
  }

  .stat-num {
    font-size: 2rem;
  }

  .hero-sun-wrap {
    display: none;
  }

  /* Services */
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    padding: 2rem 1.5rem;
  }

  /* About */
  .about-card {
    padding: 2rem 1.5rem;
  }

  .about-quote {
    font-size: 1.2rem;
  }

  /* Approach */
  .pillar {
    flex-direction: column;
    gap: .8rem;
  }

  /* Testimonials — swipe only on mobile, buttons hidden */
  .testi-nav-btn {
    display: none;
  }

  .testi-grid {
    gap: 0;
  }

  .testi-carousel-track {
    gap: 1rem;
  }

  .testi-card {
    flex: 0 0 90%;
    width: 90%;
  }

  .testi-content {
    padding: 1.8rem 1.5rem;
    max-width: 100%;
  }

  /* Team — infinite horizontal carousel */
  .team-grid {
    display: block;
    overflow: hidden;
  }

  .team-carousel-track {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: hidden;
    padding: 1rem 0 1.5rem;
    scrollbar-width: none;
    align-items: center;
  }

  .team-carousel-track::-webkit-scrollbar {
    display: none;
  }

  .team-card {
    flex: 0 0 72vw;
    max-width: 280px;
    transform: scale(0.88);
    opacity: 0.55;
    transform-origin: center center;
    transition: transform 0.35s ease, opacity 0.35s ease;
    will-change: transform, opacity;
  }

  .team-img {
    aspect-ratio: 3/4;
    border-radius: 12px;
  }

  .team-name {
    font-size: 1rem;
    margin-top: .75rem;
  }

  .team-role {
    font-size: .62rem;
    margin-top: .2rem;
  }

  /* CTA */
  .cta-band {
    padding: 3.5rem 4vw;
  }

  .cta-h {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-right: 0 !important;
    width: 100%;
  }

  .btn-dark {
    padding: 1rem 2rem;
    font-size: .85rem;
    flex: 1 1 140px;
    text-align: center;
  }

  /* Footer */
  footer {
    padding: 3rem 4vw 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Modal */
  .modal-top-bar {
    padding: 1.5rem;
  }

  .modal-svc-title {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  /* Nav logo */
  .nav-logo img {
    height: 55px;
    margin-left: -15px;
  }
}