@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600;700&display=swap');

/* ==========================================
   CSS VARIABLES & RESET
   ========================================== */
:root {
  --navy: #0B1E3D;
  --navy-deep: #08152B;
  --gold: #D4A94A;
  --coral: #E85D3F;
  --teal: #158A76;
  --violet: #5B4B9E;
  --ink: #141824;
  --ink-soft: #666B75;
  --cream: #FBF8F2;
  --line: #E8E2D4;
  --serif: 'Fraunces', serif;
  --sans: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 6vw;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

nav a {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

nav a:hover {
  color: var(--coral);
}

.print-btn {
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 7px 13px;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.print-btn:hover {
  background: var(--navy);
  color: #fff;
}

/* Hamburger Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 70;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Hamburger Active / 'X' State */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 9vh 0;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  padding: 0 !important;
}

.hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(212, 169, 74, 0.2);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  justify-self: center;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #F5F2E9;
}

.hero h1 em {
  font-style: italic;
  color: var(--coral);
}

.hero-sub {
  margin-top: 18px;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* ==========================================
   GENERIC SECTIONS
   ========================================== */
.section {
  padding: 50px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 18px;
}

.section-tag .ln {
  width: 24px;
  height: 1px;
  background: var(--coral);
}

.section h2.title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  max-width: 22ch;
}

.section-intro {
  color: var(--ink-soft);
  max-width: 58ch;
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.65;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-top: 36px;
}

.about-copy {
  background: var(--navy);
  border-radius: 14px;
  padding: 32px;
  color: rgba(255, 255, 255, 0.85);
}

.about-copy p {
  color: #fff;
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-copy b {
  color: var(--gold);
}

.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fact-card {
  border-radius: 12px;
  padding: 20px 18px;
  color: #fff;
}

.fact-card b {
  display: block;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.fact-card span {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.service-card:nth-child(7n+1)::before { background: var(--coral); }
.service-card:nth-child(7n+2)::before { background: var(--gold); }
.service-card:nth-child(7n+3)::before { background: var(--teal); }
.service-card:nth-child(7n+4)::before { background: var(--violet); }
.service-card:nth-child(7n+5)::before { background: var(--coral); }
.service-card:nth-child(7n+6)::before { background: var(--gold); }
.service-card:nth-child(7n+7)::before { background: var(--teal); }

.service-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ==========================================
   PROJECTS & BRAND HEADER
   ========================================== */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.logo-card {
  aspect-ratio: 1.3;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}

.logo-card:hover {
  border-color: var(--coral);
  box-shadow: 0 8px 24px rgba(11, 30, 61, 0.12);
  transform: translateY(-3px);
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-head {
  padding: 5vh 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand-head .wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-left: 0 !important;
}

.brand-head img {
  max-height: 50px;
}

.brand-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
}

.brand-head span {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   CASE STUDY SECTION
   ========================================== */
.case {
  margin: 5vh 0;
}

.case-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.product-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.product-name em {
  color: var(--coral);
  font-style: italic;
}

.case h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  color: var(--navy);
  max-width: 26ch;
  margin-bottom: 26px;
  line-height: 1.25;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.stat-tile {
  border-radius: 12px;
  padding: 22px 20px;
  color: #fff;
}

.stat-tile b {
  font-family: var(--mono);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 700;
  display: block;
  line-height: 1.1;
}

.stat-tile span {
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* Color Helpers */
.t-coral  { background: var(--coral); }
.t-gold   { background: var(--gold); }
.t-teal   { background: var(--teal); }
.t-navy   { background: var(--navy); }
.t-violet { background: var(--violet); }

.case-copy {
  color: var(--ink-soft);
  max-width: 66ch;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 22px;
}

.case-copy b {
  color: var(--navy);
  font-weight: 700;
}

.proof-strip {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proof-strip.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.proof-strip.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.proof-img {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: #f5f5f5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.proof-img img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.proof-img::after {
  content: "⤢";
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(11, 30, 61, 0.85);
  color: #fff;
  font-size: 0.8rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.proof-img:hover::after {
  opacity: 1;
}

/* Lightbox Modal */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 21, 43, 0.94);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  cursor: zoom-out;
}

#lightbox.open {
  display: flex;
}

#lightbox img {
  max-width: 95vw;
  max-height: 92vh;
  border-radius: 8px;
}

/* ==========================================
   TESTIMONIAL & CONTACT & FOOTER
   ========================================== */
.testimonial {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 6vh 6vw;
  margin: 0 6vw;
}

.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  max-width: 34ch;
  line-height: 1.5;
}

.testimonial .who {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--gold);
}

.contact {
  background: var(--navy-deep);
  color: #fff;
  padding: 12vh 0;
  text-align: center;
}

.contact h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: 18ch;
  margin: 0 auto 22px;
  color: #F5F2E9;
}

.contact p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 44ch;
  margin: 0 auto 32px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.82rem;
}

.contact-links a {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  color: #fff;
}

.contact-links a:hover {
  color: var(--gold);
}

footer {
  padding: 4vh 0;
  text-align: center;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.7rem;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Header & Slide-down Mobile Nav */
  header .header-inner {
    position: relative;
    padding: 15px 0;
  }

  .menu-toggle {
    display: flex;
  }

  nav.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(251, 248, 242, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 24px 0;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  nav.nav-menu.active {
    display: flex;
  }

  nav.nav-menu a:not(.print-btn) {
    display: block;
    font-size: 0.85rem;
  }

  .wrap,
  .brand-head .wrap {
    padding: 40px 20px !important;
  }

  .about-grid, 
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .proof-strip.two-col,
  .proof-strip.three-col {
    grid-template-columns: 1fr;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .testimonial {
    margin: 0 3vw;
    padding: 30px 20px;
  }

  .contact-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
  header,
  .print-btn,
  .logo-grid,
  .menu-toggle {
    display: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  #lightbox {
    display: none !important;
  }
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faqs-section {
  background: var(--cream);
}

.faq-accordion {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(11, 30, 61, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-family: var(--mono);
  font-size: 1.4rem;
  color: var(--coral);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================
   CTA STRIP
   ========================================== */
.cta-strip {
  background: var(--coral);
  color: #fff;
  padding: 60px 0;
  margin: 60px 0;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-content h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 8px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  max-width: 52ch;
}

.cta-btn {
  background: var(--navy);
  color: #fff;
  white-space: nowrap;
  display: inline-block;
}

.cta-btn:hover {
  background: var(--navy-deep);
  color: #fff;
}

/* ==========================================
   TESTIMONIALS GRID
   ========================================== */
.testimonials-section {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -15px;
  opacity: 0.6;
}

.testimonial-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author b {
  display: block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-author span {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ==========================================
   CONTACT SECTION EXTENSIONS
   ========================================== */
.contact-header {
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
  align-self: flex-start;
  cursor: pointer;
  border: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-block h3,
.social-block h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.info-block p {
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 0 6px 0 !important;
  max-width: none !important;
  font-size: 0.92rem;
}

.info-block a {
  color: #fff;
  border-bottom: 1px solid var(--gold);
}

.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.78rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

/* RESPONSIVE UPDATES FOR NEW SECTIONS */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cta-wrap {
    flex-direction: column;
    text-align: center;
  }

  .cta-content p {
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .submit-btn {
    width: 100%;
  }

  .social-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .social-links {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   HERO & METRICS
   ========================================== */
.hero-section {
  padding: 80px 0 60px 0;
  background: var(--cream);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--navy);
  line-height: 1.15;
  margin: 16px 0 20px 0;
  max-width: 22ch;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.metric-card .metric-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}

.metric-card .metric-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
  display: block;
}

/* ==========================================
   BRAND TICKER / BANNER
   ========================================== */
.brand-ticker-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.ticker-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--ink-soft);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: center;
}

.brand-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand-item {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.6;
}

/* ==========================================
   ABOUT / STRATEGIST
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: url(../images/others/self.jpeg);
  background-size: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.about-content p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}

.about-meta {
  display: flex;
  gap: 30px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.meta-item b {
  display: block;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1rem;
}

.meta-item span {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--coral);
}

/* ==========================================
   SERVICES GRID
   ========================================== */
.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.service-icon {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}

.service-list li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* ==========================================
   CASE STUDIES
   ========================================== */
.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 30px;
}

.case-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.case-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.case-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.case-stats {
  display: flex;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.case-stats b {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
}

.case-stats span {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* ==========================================
   4-STEP PROCESS
   ========================================== */
.process-section {
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 20px;
}

.step-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--coral);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ==========================================
   LEAD MAGNET / AUDIT OFFER
   ========================================== */
.audit-section {
  margin: 60px 0;
}

.audit-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  color: #fff;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.audit-content h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
}

.audit-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audit-form input {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.audit-form input:focus {
  border-color: var(--gold);
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 992px) {
  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .audit-card,
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .metrics-grid,
  .services-grid,
  .process-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .audit-card {
    padding: 30px 20px;
  }
}