@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --black:      #0C0C0C;
  --dark:       #111111;
  --white:      #FFFFFF;
  --off-white:  #F5F5F3;
  --light-grey: #EBEBEB;
  --mid-grey:   #999999;
  --yellow:     #F5C518;
  --yellow-dark:#D4A800;
  --font-head:  'Syne', sans-serif;
  --font-body:  'Manrope', sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-pill:100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--yellow); color: var(--black); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 10px; }

/* ══════════════════════════════
   NAVBAR — pill style like reference
══════════════════════════════ */
.navbar-wrap {
  display: flex;
  justify-content: center;
  padding: 1.5rem 2rem 0;
  position: sticky;
  top: 1rem;
  z-index: 1000;
}

.navbar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--black);
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.55rem 0.55rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  margin-right: 1.2rem;
  letter-spacing: -0.02em;
}

.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.15);
  margin-right: 1.2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.2rem !important;
  display: flex !important;
  align-items: center;
  gap: 0.4rem;
}

.nav-cta:hover {
  background: var(--yellow-dark) !important;
  color: var(--black) !important;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  padding: 5rem 3rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.hero h1 .arrow-icon {
  display: inline-block;
  font-style: normal;
  color: var(--black);
}

.hero .subtext {
  font-size: 1rem;
  color: var(--mid-grey);
  max-width: 420px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(245,197,24,0.4);
}

.hero-cta .cta-arrow {
  width: 28px; height: 28px;
  background: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.3s var(--ease);
}

.hero-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.5);
}

.hero-cta:hover .cta-arrow { transform: rotate(45deg); }

/* ══════════════════════════════
   BENTO CARDS ROW
══════════════════════════════ */
.bento-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 1rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 3rem;
}

/* Services pill card */
.bento-services {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bento-services .bento-label {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-head);
  border: 1.5px solid var(--black);
  color: var(--black);
  background: transparent;
  transition: all 0.25s;
}

.pill.filled {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.pill .pill-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

/* Stats card */
.bento-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  flex: 1;
}

.stat-card .stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-card .stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Testimonial card */
.bento-testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  font-size: 2rem;
  line-height: 1;
  color: var(--black);
  font-family: Georgia, serif;
  margin-bottom: 1rem;
}

.bento-testimonial .quote-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 1.2rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.author-avatars {
  display: flex;
}

.avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--light-grey);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--black);
  overflow: hidden;
}

.avatar:first-child { margin-left: 0; }

.avatar.yellow-av { background: var(--yellow); }
.avatar.dark-av   { background: var(--dark); color: var(--white); }

.author-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid-grey);
}

/* ══════════════════════════════
   WHY CHOOSE US — DARK SECTION
══════════════════════════════ */
.why-section {
  background: var(--black);
  padding: 5rem 3rem;
  margin-top: 4rem;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.why-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.why-item {}

.why-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.why-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-item p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* ══════════════════════════════
   ABOUT SECTION
══════════════════════════════ */
.about-section {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: end;
}

.about-top h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.about-top p {
  font-size: 0.92rem;
  color: var(--mid-grey);
  line-height: 1.8;
}

.about-image-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.about-img-card {
  background: var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 5rem;
  font-family: var(--font-head);
  font-weight: 800;
}

.about-team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-team-card .team-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.about-team-card .team-desc {
  font-size: 0.85rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ══════════════════════════════
   SERVICES PAGE FULL
══════════════════════════════ */
.services-section {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 1rem;
}

.services-section .section-sub {
  font-size: 0.95rem;
  color: var(--mid-grey);
  max-width: 440px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-full-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
}

.service-full-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.service-full-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--light-grey);
}

.service-full-card:hover::after { transform: scaleX(1); }

.service-full-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.svc-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.svc-icon {
  width: 48px; height: 48px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.service-full-card:hover .svc-icon {
  background: var(--yellow);
}

.service-full-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.service-full-card p {
  font-size: 0.85rem;
  color: var(--mid-grey);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-features li {
  font-size: 0.8rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════ */
.page-header {
  padding: 5rem 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header .page-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 1.2rem;
}

.page-header .page-sub {
  font-size: 1rem;
  color: var(--mid-grey);
  max-width: 440px;
  line-height: 1.7;
}

/* ══════════════════════════════
   CTA BAND
══════════════════════════════ */
.cta-band {
  background: var(--black);
  margin: 4rem 3rem;
  border-radius: var(--radius);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cta-band p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.6rem;
}

/* ══════════════════════════════
   CONTACT PAGE
══════════════════════════════ */
.contact-section {
  padding: 4rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.contact-card .cc-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-card h4 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.6rem;
}

.contact-card p, .contact-card a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  line-height: 1.5;
}

.contact-card a:hover { color: var(--yellow-dark); }

.contact-btns-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  border: 2px solid var(--black);
  color: var(--black);
  background: transparent;
}

.contact-btn:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-btn.email-btn    { background: var(--black); color: var(--white); }
.contact-btn.email-btn:hover { background: #222; }
.contact-btn.whatsapp-btn-alt { border-color: #25D366; color: #25D366; }
.contact-btn.whatsapp-btn-alt:hover { background: #25D366; color: white; }
.contact-btn.call-btn     { border-color: var(--yellow); color: var(--black); }
.contact-btn.call-btn:hover { background: var(--yellow); }
.contact-btn.instagram-btn-contact { border-color: #E1306C; color: #E1306C; }
.contact-btn.instagram-btn-contact:hover { background: #E1306C; color: white; }

.btn-icon { font-size: 1rem; }

/* ══════════════════════════════
   OUR WORK / VIDEO
══════════════════════════════ */
.work-section {
  padding: 4rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  background: var(--black);
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius);
  max-width: 860px;
  margin: 0 auto;
}

.video-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  z-index: 10;
}

.video-frame video {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none; user-select: none;
}

.video-overlay { position: absolute; inset: 0; z-index: 5; cursor: pointer; }

.custom-controls {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
  padding: 2.5rem 1.5rem 1.2rem;
  z-index: 6; display: flex; align-items: center; gap: 1rem;
  opacity: 0; transition: opacity 0.3s;
}

.video-frame:hover .custom-controls { opacity: 1; }

.ctrl-btn {
  background: none; border: none; color: white; cursor: pointer;
  padding: 0.2rem; display: flex; align-items: center;
  transition: transform 0.2s, color 0.2s; flex-shrink: 0;
}

.ctrl-btn:hover { transform: scale(1.15); color: var(--yellow); }

.progress-bar-wrap {
  flex: 1; height: 3px;
  background: rgba(255,255,255,0.2);
  cursor: pointer; position: relative; border-radius: 3px;
}

.progress-fill {
  height: 100%; background: var(--yellow);
  width: 0%; transition: width 0.1s linear;
  pointer-events: none; border-radius: 3px;
}

.time-display {
  color: rgba(255,255,255,0.55); font-size: 0.72rem;
  font-family: var(--font-body); white-space: nowrap; flex-shrink: 0;
}

.vol-wrap { display: flex; align-items: center; gap: 0.4rem; }

.vol-slider {
  -webkit-appearance: none; width: 64px; height: 3px;
  background: rgba(255,255,255,0.2); outline: none; cursor: pointer; border-radius: 3px;
}

.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 11px; height: 11px;
  border-radius: 50%; background: var(--yellow); cursor: pointer;
}

.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 7; pointer-events: none; transition: opacity 0.3s;
}

.play-circle {
  width: 72px; height: 72px;
  background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(245,197,24,0.5);
  transition: transform 0.3s var(--ease);
}

.play-circle svg { width: 26px; height: 26px; fill: var(--black); margin-left: 4px; }
.video-frame:hover .play-circle { transform: scale(1.08); }
.video-frame.playing .play-overlay { opacity: 0; }

.video-meta {
  max-width: 860px; margin: 1.5rem auto 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.5rem 0;
  border-top: 1px solid var(--light-grey);
}

.video-meta h3 {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.3rem;
}

.video-meta p { font-size: 0.83rem; color: var(--mid-grey); line-height: 1.6; }

.video-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  padding: 0.45rem 1rem; border-radius: var(--radius-pill); white-space: nowrap;
}

/* Process */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 4rem;
}

.process-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.8rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }

.process-num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
  color: var(--yellow); line-height: 1; margin-bottom: 1rem; letter-spacing: -0.04em;
}

.process-card h4 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.6rem;
}

.process-card p { font-size: 0.82rem; color: var(--mid-grey); line-height: 1.7; }

/* ══════════════════════════════
   ABOUT PAGE FULL
══════════════════════════════ */
.about-pillars {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 3rem;
}

.pillar-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 3px solid transparent;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-bottom-color: var(--yellow);
}

.pillar-icon {
  width: 44px; height: 44px; background: var(--yellow);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; margin-bottom: 1.2rem;
}

.pillar-card h3 {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.5rem;
}

.pillar-card p { font-size: 0.85rem; color: var(--mid-grey); line-height: 1.75; }

/* ══════════════════════════════
   SECTION LABEL
══════════════════════════════ */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
}

.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-p {
  font-size: 0.92rem;
  color: var(--mid-grey);
  line-height: 1.75;
  max-width: 460px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.contact-footer {
  background: var(--black);
  padding: 5rem 3rem 2.5rem;
  margin-top: 4rem;
}

.footer-content { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 800;
  color: var(--white); margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.footer-logo span { color: var(--yellow); }

.footer-description {
  font-size: 0.83rem; color: rgba(255,255,255,0.3);
  line-height: 1.8; max-width: 280px;
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 1.5rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.25s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact { list-style: none; }
.footer-contact li {
  margin-bottom: 0.9rem; font-size: 0.83rem;
  color: rgba(255,255,255,0.35); display: flex; gap: 0.5rem;
}
.footer-contact a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.25s; }
.footer-contact a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.2);
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero > * { animation: fadeUp 0.8s var(--ease) both; }
.hero > *:nth-child(1) { animation-delay: 0.05s; }
.hero > *:nth-child(2) { animation-delay: 0.15s; }
.hero > *:nth-child(3) { animation-delay: 0.25s; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .bento-row { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-top { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-row { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .cta-band { flex-direction: column; text-align: center; }
  .about-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .navbar-wrap { padding: 1rem 1rem 0; }
  .navbar { padding: 0.5rem 0.5rem 0.5rem 1rem; }
  .nav-menu li:not(:last-child) { display: none; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .bento-row, .services-section, .about-section,
  .work-section, .contact-section, .page-header,
  .why-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .cta-band { margin: 2rem 1.5rem; padding: 2.5rem 2rem; }
}