/*
 * ══════════════════════════════════════════════════════════════
 *  POLEN STUDIOS — Shared Stylesheet
 *  style.css
 *
 *  This file controls the design for every page on the site.
 *  Change a colour, font, or component here and it updates
 *  everywhere — no need to touch individual page files.
 *
 *  Table of Contents:
 *    1.  Reset & Variables
 *    2.  Base / Body
 *    3.  Navigation
 *    4.  Page Hero (inner pages)
 *    5.  Section Utilities
 *    6.  Buttons
 *    7.  Shared Components — Testimonials
 *    8.  Shared Components — Client Logos
 *    9.  Shared Components — CTA Section
 *   10.  Footer
 *   11.  Scroll Reveal Animations
 * ══════════════════════════════════════════════════════════════
 */


/* ─────────────────────────────────────────────
   1. RESET & VARIABLES
───────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette */
  --black:      #0a0a0a;
  --ink:        #111111;
  --charcoal:   #1a1a1a;
  --surface:    #222222;
  --gold:       #f1c40f;
  --gold-dark:  #c9a50d;
  --gold-tint:  rgba(241, 196, 15, 0.07);
  --white:      #f5f5f5;
  --grey:       #888888;
  --grey-light: #555555;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
}


/* ─────────────────────────────────────────────
   2. BASE / BODY
───────────────────────────────────────────── */

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Noise grain overlay — sits above everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

section {
  position: relative;
}


/* ─────────────────────────────────────────────
   3. NAVIGATION
───────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

/* Gold underline on hover / active state */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────
   4. PAGE HERO  (inner pages — about, faqs, etc.)
───────────────────────────────────────────── */

/* The gold grid line pattern used in inner page heroes */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(241, 196, 15, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 196, 15, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* L-shaped gold bracket accent (about / faqs pages) */
.hero-bracket {
  position: absolute;
  top: 110px; right: 60px;
  width: 90px; height: 90px;
  border-top: 1px solid rgba(241, 196, 15, 0.28);
  border-right: 1px solid rgba(241, 196, 15, 0.28);
}

.hero-bracket::after {
  content: '';
  position: absolute;
  bottom: -55px; left: -55px;
  width: 55px; height: 55px;
  border-bottom: 0.5px solid rgba(241, 196, 15, 0.12);
  border-left: 0.5px solid rgba(241, 196, 15, 0.12);
}

/* Standard inner-page hero wrapper */
#page-hero {
  padding-top: 72px;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

/* Two-column layout inside inner page hero */
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 60px 72px;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: flex-end;
  gap: 60px;
}

/* Small gold label above the page title */
.page-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.page-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

/* Inner-page hero headline */
.page-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 130px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* Outlined / ghost variant of page title text */
.page-title .outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  color: transparent;
}

/* Right column italic statement text in inner page heroes */
.hero-right {
  padding-bottom: 10px;
}

.hero-right p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--grey);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

/* Breadcrumb — used on services page */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.breadcrumb a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep    { color: var(--grey-light); }
.breadcrumb .current { color: var(--gold); }

/* Gold pill / badge (about page hero) */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(241, 196, 15, 0.3);
  padding: 8px 16px;
}

.hero-pill::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}


/* ─────────────────────────────────────────────
   5. SECTION UTILITIES
───────────────────────────────────────────── */

/* Max-width wrapper used across most sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Gold labelled section divider — variant A (with trailing line) */
.section-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}

.section-label::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* Same pattern, slightly different usage on services page */
.section-tag {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
}

.section-tag::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}


/* ─────────────────────────────────────────────
   6. BUTTONS
───────────────────────────────────────────── */

/* Gold filled — primary action */
.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* Ghost / text with arrow circle */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--white); }

.btn-ghost .arrow {
  width: 32px; height: 32px;
  border: 0.5px solid var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.btn-ghost:hover .arrow {
  border-color: var(--white);
  transform: translateX(3px);
}

/* Black filled — used on gold CTA backgrounds */
.btn-black {
  display: inline-block;
  padding: 18px 44px;
  background: var(--black);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-black:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

/* Dark filled — alias used on some CTA sections */
.btn-dark {
  display: inline-block;
  padding: 16px 40px;
  background: var(--black);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}


/* ─────────────────────────────────────────────
   7. SHARED COMPONENT — TESTIMONIALS
───────────────────────────────────────────── */

#testimonials {
  padding: 140px 0;
  background: var(--ink);
}

.testimonials-header {
  margin-bottom: 80px;
}

.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  letter-spacing: 0.02em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.testimonial-card {
  background: var(--ink);
  padding: 48px 40px;
  position: relative;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 24px;
  display: block;
}

.testimonial-text {
  font-size: 16px;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(241, 196, 15, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--gold);
  flex-shrink: 0;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.author-company {
  font-size: 12px;
  color: var(--gold);
  margin-top: 2px;
  letter-spacing: 0.06em;
}


/* ─────────────────────────────────────────────
   8. SHARED COMPONENT — CLIENT LOGOS
───────────────────────────────────────────── */

#clients {
  padding: 80px 0;
  background: var(--black);
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.clients-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 48px;
}

.logos-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.logo-item {
  padding: 20px 40px;
  border-right: 0.5px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  opacity: 0.45;
}

.logo-item:last-child { border-right: none; }
.logo-item:hover { opacity: 1; }

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--white);
  white-space: nowrap;
}


/* ─────────────────────────────────────────────
   9. SHARED COMPONENT — CTA SECTION
───────────────────────────────────────────── */

/* Gold CTA — used on homepage and about */
#cta {
  padding: 140px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: 'BEYOND';
  position: absolute;
  bottom: -60px; right: -40px;
  font-family: var(--font-display);
  font-size: 280px;
  color: rgba(0, 0, 0, 0.06);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.cta-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: rgba(0, 0, 0, 0.35);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.95;
  color: var(--black);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.cta-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: rgba(0, 0, 0);
  max-width: 360px;
  line-height: 1.7;
}

.cta-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.cta-contact {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.5);
}

.cta-contact a {
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.cta-contact a:hover {
  border-color: var(--black);
}

/* Bottom CTA strip — used on services and work pages */
#bottom-cta {
  padding: 100px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

#bottom-cta::before {
  content: 'WORK';
  position: absolute;
  bottom: -60px; right: -20px;
  font-family: var(--font-display);
  font-size: 260px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
  user-select: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--black);
}

.cta-sub-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  max-width: 320px;
  line-height: 1.7;
  margin-top: 18px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

/* Reusing .cta-contact styles for the phone number on the services page CTA 
.cta-phone {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}

.cta-phone a {
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
*/

/* ─────────────────────────────────────────────
   10. FOOTER
───────────────────────────────────────────── */

footer {
  background: var(--black);
  padding: 60px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--white);
}

.footer-logo span {
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--grey);
  margin-top: 8px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-contact {
  text-align: right;
}

.footer-contact a {
  display: block;
  font-size: 13px;
  color: var(--grey);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 12px;
}


/* ─────────────────────────────────────────────
   11. SCROLL REVEAL ANIMATIONS
───────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ── DROPDOWN PARENT ── */
  .nav-dropdown {
    position: relative;
  }

  /* Trigger label */
  .nav-dropdown-trigger {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: color 0.2s;
    user-select: none;
    padding: 4px 0;            /* gives a little vertical hit-area */
  }

  .nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: #f1c40f;
    transition: width 0.25s ease;
  }

  .nav-dropdown-trigger .chevron {
    display: inline-block;
    width: 7px; height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease, border-color 0.2s;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* Trigger open/hover states */
  .nav-dropdown:hover .nav-dropdown-trigger,
  .nav-dropdown.open .nav-dropdown-trigger {
    color: #f5f5f5;
  }

  .nav-dropdown:hover .nav-dropdown-trigger::after,
  .nav-dropdown.open .nav-dropdown-trigger::after {
    width: 100%;
  }

  .nav-dropdown:hover .chevron,
  .nav-dropdown.open .chevron {
    transform: rotate(225deg) translateY(0);
    border-color: #f1c40f;
  }

  /* ── DROPDOWN PANEL ── */
  .nav-dropdown-panel {
    position: absolute;
    top: 100%;                 /* flush to the bottom of the li */
    left: 50%;
    transform: translateX(-50%) translateY(-4px);

    /* 
      KEY FIX: padding-top creates the visual gap while keeping
      the hover zone unbroken — the mouse never leaves the element.
      The panel background starts below the transparent padding.
    */
    padding-top: 18px;
    width: 240px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.22s ease, visibility 0.2s;
  }

  /* Open — triggered by hover on .nav-dropdown OR by .open class */
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown.open .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  /* The visible card inside the panel */
  .nav-dropdown-inner {
    background: rgba(10,10,10,0.97);
    border: 0.5px solid rgba(255,255,255,0.1);
    border-top: 2px solid #f1c40f;
    position: relative;
  }

  /* Gold triangle pointer */
  .nav-dropdown-inner::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #f1c40f;
  }

  /* ── DROPDOWN ITEMS ── */
  .nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    text-decoration: none;
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .nav-dropdown-item:last-child { border-bottom: none; }

  /* Gold sweep background */
  .nav-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: rgba(241,196,15,0.06);
    transition: width 0.28s ease;
    pointer-events: none;
  }

  .nav-dropdown-item:hover::before { width: 100%; }

  /* Gold left bar */
  .nav-dropdown-item::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: #f1c40f;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.22s ease;
    pointer-events: none;
  }

  .nav-dropdown-item:hover::after { transform: scaleY(1); }

  .item-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(241,196,15,0.35);
    flex-shrink: 0;
    width: 18px;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
  }

  .nav-dropdown-item:hover .item-num { color: #f1c40f; }

  .item-body {
    position: relative;
    z-index: 1;
    flex: 1;
  }

  .item-name {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #f5f5f5;
    display: block;
    line-height: 1.2;
    transition: color 0.2s;
  }

  .nav-dropdown-item:hover .item-name { color: #f1c40f; }

  .item-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #555;
    display: block;
    margin-top: 2px;
    transition: color 0.2s;
  }

  .nav-dropdown-item:hover .item-desc { color: #888; }

  .item-arrow {
    margin-left: auto;
    font-size: 12px;
    color: #333;
    position: relative;
    z-index: 1;
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .nav-dropdown-item:hover .item-arrow {
    color: #f1c40f;
    transform: translateX(3px);
  }

  
   /* ─── PROCESS STEPS (services page variant) ─── */
  .process-section { padding: 0 0 100px; }
  .process-title { font-family: var(--font-display); font-size: 44px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 48px; }
  .process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
  .step { background: var(--surface); padding: 36px 28px; position: relative; transition: background 0.25s; }
  .step:hover { background: #2a2a2a; }
  .step-num { font-family: var(--font-display); font-size: 56px; color: rgba(241,196,15,0.15); line-height: 1; margin-bottom: 16px; }
  .step-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.06em; color: var(--white); margin-bottom: 10px; }
  .step-desc { font-size: 13px; color: var(--grey); line-height: 1.7; }
  .step-arrow { position: absolute; top: 36px; right: 28px; font-size: 18px; color: rgba(241,196,15,0.3); }