/* =============================================
   MY HELPING HAND — DESIGN SYSTEM
   Typography: Inter (body + headings) / Cinzel (logo only)
   Palette: Apple-style grey & black
   Style: Clean Professional Minimalism
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;1,14..32,300;1,14..32,400&family=Cinzel:wght@400;500;600;700&display=swap');

/* ======= DESIGN TOKENS ======= */
:root {
  --color-bg:          #F5F5F7;   /* Apple light grey */
  --color-bg-alt:      #FFFFFF;   /* pure white surface */
  --color-dark:        #1D1D1F;   /* Apple near-black */
  --color-dark-2:      #111111;   /* footer bg */
  --color-mid:         #6E6E73;   /* Apple body grey */
  --color-accent:      #1D1D1F;   /* primary accent — dark */
  --color-accent-2:    #424245;   /* secondary accent */
  --color-gold:        #1D1D1F;   /* mapped to dark for gold references */
  --color-gold-light:  #424245;   /* mapped to dark-2 for gold-light refs */
  --color-white:       #FFFFFF;
  --color-border:      rgba(0,0,0,0.08);

  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:         64px;
  --radius-lg:     18px;
  --radius-md:     12px;
  --radius-sm:     8px;
  --radius-pill:   999px;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur:    220ms;
  --dur-md: 380ms;
  --dur-lg: 600ms;

  --shadow-card:  0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
}

/* ======= RESET & BASE ======= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ======= UTILS ======= */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 5rem);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-dark);
}

.section-body {
  color: var(--color-mid);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 52ch;
  font-weight: 400;
}

.gold-line {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--color-mid);
  margin-block: 1.5rem;
  opacity: 0.4;
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  border-radius: 10px;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
  border: 1.5px solid transparent;
}
.btn-dark:hover {
  background: #333336;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-outline {
  background: rgba(0,0,0,0.05);
  color: var(--color-dark);
  border: 1.5px solid rgba(0,0,0,0.18);
}
.btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-1px);
}
.btn-outline-light {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
}
/* White button — for dark section backgrounds */
.btn-white {
  background: var(--color-white);
  color: var(--color-dark);
  border: 1.5px solid transparent;
}
.btn-white:hover {
  background: #F0F0F0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}
.btn-gold {
  background: var(--color-dark);
  color: var(--color-white);
  border: 1.5px solid transparent;
  font-weight: 600;
}
.btn-gold:hover {
  background: #333336;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Arrow icon inside button */
.btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.btn:hover svg { transform: translate(3px, -3px); }

/* ======= NAVBAR ======= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-md) var(--ease),
              border-color var(--dur-md) var(--ease),
              box-shadow var(--dur-md) var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.88);
  border-bottom-color: rgba(0,0,0,0.06);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  transform: scale(1.55);
  transform-origin: center;
  flex-shrink: 0;
}

.nav-logo-icon--dark {
  display: none;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--color-white);
  text-transform: lowercase;
  transition: color var(--dur) var(--ease);
}

.navbar.scrolled .nav-logo-icon--light { display: none; }
.navbar.scrolled .nav-logo-icon--dark { display: block; }
.navbar.scrolled .nav-logo-text { color: var(--color-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-white);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-white);
  transition: width var(--dur) var(--ease);
}
.nav-link:hover { color: rgba(255,255,255,0.9); }
.nav-link:hover::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--color-dark); font-weight: 400; }
.navbar.scrolled .nav-link:hover { color: var(--color-accent-2); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta {
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  background: rgba(255,255,255,0.1) !important;
  color: var(--color-white) !important;
  border-color: rgba(255,255,255,0.45) !important;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: rgba(255,255,255,0.75) !important;
  transform: translateY(-1px);
}
.navbar.scrolled .nav-cta {
  background: var(--color-dark) !important;
  color: var(--color-white) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.navbar.scrolled .nav-cta:hover {
  background: #333336 !important;
  transform: translateY(-1px);
}

/* Phone icon button in navbar */
.nav-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  flex-shrink: 0;
  transition: border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.nav-phone-icon svg {
  width: 15px;
  height: 15px;
}
.nav-phone-icon:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}
.navbar.scrolled .nav-phone-icon {
  border-color: var(--color-dark);
  color: var(--color-mid);
}
.navbar.scrolled .nav-phone-icon:hover {
  border-color: var(--color-accent);
  color: var(--color-dark);
  background: rgba(0,0,0,0.08);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--color-dark); }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 1rem 0 2rem;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-height: calc(100svh - var(--nav-h));
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-dark);
  padding: 0.75rem 2rem;
  width: 100%;
  text-align: center;
  transition: color var(--dur) var(--ease);
}
.mobile-menu a:hover { color: var(--color-accent-2); }
/* CTA inside mobile menu — override the dark link color */
.mobile-menu a.btn {
  color: var(--color-white) !important;
  margin: 1rem 2rem 0;
  width: calc(100% - 4rem);
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}
.mobile-menu a.btn:hover { opacity: 0.9; }

/* ======= SCROLL REVEAL ======= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-lg) var(--ease), transform var(--dur-lg) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 350ms; }

/* =============================================
   SECTION 1 — HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 640px;
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  animation: heroZoom 18s ease-out both;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.65) 50%, rgba(5,5,5,0.35) 100%),
    linear-gradient(to top, rgba(5,5,5,0.6) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(1.5rem, 4vh, 3.5rem);
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}

/* LEFT column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.08);
  width: fit-content;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--color-white);
}

.hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 300;
  max-width: 42ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Inline stats row */
.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
}

/* ---- Hero inquiry card (RIGHT column) ---- */
.hero-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 3;
}

.hero-card-header {
  margin-bottom: 0.25rem;
}
.hero-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1D1D1F;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.hero-card-sub {
  font-size: 0.8rem;
  color: #6E6E73;
  line-height: 1.5;
}

.hero-card-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-card-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6E6E73;
}

.hero-card-input,
.hero-card-select {
  padding: 0.75rem 0.9rem;
  background: #F5F5F7;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #1D1D1F;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
  outline: none;
}
.hero-card-input:focus,
.hero-card-select:focus {
  border-color: #1D1D1F;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
  background: #fff;
}
.hero-card-input::placeholder { color: #AEAEB2; }
.hero-card-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236E6E73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.hero-card-btn {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 0.25rem;
}

.hero-card-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #AEAEB2;
  text-align: center;
  justify-content: center;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1rem;
  margin-top: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* =============================================
   SECTION — MEET A DESIGNER
   ============================================= */
.meet-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.meet-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.meet-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  /* Neutralise warm wood tones; pair with black overlay for grey/black brand */
  filter: brightness(0.72) saturate(0.72);
}

.meet-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.58) 55%, rgba(5, 5, 5, 0.26) 100%),
    linear-gradient(to top, rgba(5, 5, 5, 0.42) 0%, transparent 48%);
}

.meet-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(4rem, 7vw, 7rem);
  width: 100%;
}

/* --- Left --- */
.meet-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.meet-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.08);
  width: fit-content;
}
.meet-badge::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
}

.meet-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--color-white);
}

.meet-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.meet-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.meet-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.meet-stat-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* --- Right: floating card --- */
.meet-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.meet-card-header { margin-bottom: 0.1rem; }
.meet-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1D1D1F;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.meet-card-sub {
  font-size: 0.8rem;
  color: #6E6E73;
  line-height: 1.5;
}

.meet-card-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.meet-field { display: flex; flex-direction: column; }

.meet-input,
.meet-select {
  padding: 0.78rem 0.9rem;
  background: #F5F5F7;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #1D1D1F;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
  outline: none;
}
.meet-input:focus,
.meet-select:focus {
  border-color: #1D1D1F;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.07);
  background: #fff;
}
.meet-input::placeholder { color: #AEAEB2; }
.meet-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236E6E73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.meet-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  background: #1D1D1F;
  color: #fff;
  border: none;
  margin-top: 0.15rem;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.meet-submit-btn:hover {
  background: #333336;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.meet-submit-btn svg {
  width: 16px; height: 16px;
  transition: transform 200ms ease;
}
.meet-submit-btn:hover svg { transform: translateX(3px); }

.meet-card-note {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: #AEAEB2;
  line-height: 1.5;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1rem;
  margin-top: 0;
}

/* Responsive */
@media (max-width: 860px) {
  .meet-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .meet-left { text-align: center; align-items: center; }
  .meet-stats { justify-content: center; }
  .meet-badge { align-self: center; }
}

/* =============================================
   SECTION 2 — WHAT CAN WE OFFER
   ============================================= */
.offer-section {
  padding-block: clamp(5rem, 8vw, 8rem);
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.offer-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.offer-header .section-heading {
  margin-top: 0.5rem;
}

/* 3-column icon-box grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.offer-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-md) var(--ease), transform var(--dur-md) var(--ease), border-color var(--dur-md) var(--ease);
  position: relative;
  overflow: hidden;
}
.offer-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-md) var(--ease);
  z-index: 2;
}
.offer-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.12);
}
.offer-card:hover::after {
  transform: scaleX(1);
}

.offer-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--dur-lg) var(--ease);
}
.offer-card:hover .offer-card-img {
  transform: scale(1.05);
}

.offer-card-body {
  padding: 1.75rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  background: var(--color-white);
  position: relative;
  z-index: 1;
}
.offer-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.offer-card-desc {
  color: var(--color-mid);
  font-size: 0.93rem;
  line-height: 1.65;
  flex: 1;
}
.offer-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--color-mid);
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
  margin-top: auto;
}
.offer-card-link svg {
  width: 13px;
  height: 13px;
  transition: transform var(--dur) var(--ease);
}
.offer-card-link:hover {
  color: var(--color-dark);
  gap: 0.7rem;
}
.offer-card-link:hover svg {
  transform: translate(3px, -3px);
}

/* ---- Stats counter row ---- */
.offer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.offer-stat {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  padding: 3.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform var(--dur-md) var(--ease), box-shadow var(--dur-md) var(--ease);
  position: relative;
  overflow: hidden;
}

.offer-stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-md) var(--ease);
}

.offer-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.offer-stat:hover::after {
  transform: scaleX(1);
}

/* Number + suffix container */
.offer-stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.offer-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
  letter-spacing: -0.04em;
}

.offer-stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 600;
  color: rgba(0,0,0,0.25);
  line-height: 1;
  margin-left: 4px;
}

.offer-stat-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-top: 0.75rem;
}

.offer-stat-divider {
  display: none;
}

/* Responsive */
@media (max-width: 900px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

}
@media (max-width: 640px) {
  .offer-grid { gap: 1.25rem; }
  .offer-card { padding: 2rem 1.5rem; }
  .offer-stats {
    flex-wrap: wrap;
    padding: 2rem 1.25rem;
    gap: 1.5rem 0;
  }
  .offer-stat { min-width: calc(50% - 1px); }
  .offer-stat-divider { display: none; }
}

/* =============================================
   SECTION 3 — PROJECTS / PORTFOLIO
   ============================================= */
.projects-section {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(14rem, 20vw, 24rem);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}



/* Bento / Masonry Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 1.25rem;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-dark);
  cursor: pointer;
}
.bento-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-lg) var(--ease), filter var(--dur-lg) var(--ease);
  filter: brightness(0.85);
}
.bento-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.65);
}
.bento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,24,0.85) 0%, transparent 50%);
  pointer-events: none;
}
.bento-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.bento-card-meta { flex: 1; }
.bento-card-cat {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
}
.bento-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.bento-card-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.bento-card-btn svg { width: 15px; height: 15px; }
.bento-card:hover .bento-card-btn {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-dark);
}

/* Grid spans — all rows must sum to 12 columns */
/* Row 1: col-8 + col-4 (tall) = 12 */
/* Row 2: col-4 + col-4 + col-4 (Lakeside cont.) = 12 */
/* Row 3: col-12 = 12 */
.bento-card.col-8  { grid-column: span 8; }
.bento-card.col-4  { grid-column: span 4; }
.bento-card.col-12 { grid-column: span 12; height: 380px; }
.bento-card.tall   { grid-row: span 2; }

/* =============================================
   SECTION 3 — SERVICES
   ============================================= */
.services-section {
  padding-block: clamp(5rem, 8vw, 8rem);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.services-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 580px;
}
.services-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.services-image-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}
.services-image-badge-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
.services-image-badge p {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.35rem;
}


.services-list { margin-top: 2.5rem; }
.service-item {
  border-top: 1px solid var(--color-border);
  padding: 1.75rem 0;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: background var(--dur) var(--ease);
}
.service-item:last-child { border-bottom: 1px solid var(--color-border); }
.service-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-mid);
  padding-top: 0.15rem;
  opacity: 0.6;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.service-desc {
  color: var(--color-mid);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =============================================
   SECTION 4 — FOUNDER / VISION
   ============================================= */
.founder-section {
  padding-block: clamp(5rem, 10vw, 10rem);
  background: var(--color-dark);
  overflow: hidden;
  position: relative;
}

/* Subtle grain texture overlay */
.founder-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* Labels, body text and dividers on dark backgrounds */
.founder-section .section-label {
  color: rgba(255,255,255,0.45);
}
.founder-section .section-body {
  color: rgba(255,255,255,0.55);
}
.founder-section .gold-line {
  background: rgba(255,255,255,0.2);
}
.testimonials-section .section-label {
  color: rgba(255,255,255,0.45);
}
.press-section .section-label {
  color: rgba(255,255,255,0.45);
}
.logos-section--dark .section-label {
  color: rgba(255,255,255,0.45);
}

.founder-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(3.5rem, 7vw, 7rem);
  align-items: center;
}

/* Portrait */
.founder-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  flex-shrink: 0;
}
.founder-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%) contrast(1.05);
  transition: filter var(--dur-lg) var(--ease), transform var(--dur-lg) var(--ease);
}
.founder-image-wrap:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}

/* Gold corner accent */
.founder-image-wrap::after {
  content: '';
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  border-top: 1.5px solid rgba(255,255,255,0.2);
  border-right: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 0 var(--radius-sm) 0 0;
  pointer-events: none;
}

/* Name tag on portrait */
.founder-image-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(to top, rgba(10,8,6,0.92) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.founder-image-tag-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.02em;
}
.founder-image-tag-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Content side */
.founder-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.founder-content > .section-label {
  margin-bottom: 2rem;
}

/* The quote text — " floats as a pseudo-element behind it */
.founder-quote {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.45;
  letter-spacing: -0.01em;
  max-width: 28ch;
  border: none;
  padding: 0;
  margin-bottom: 2rem;
}
.founder-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: clamp(5rem, 10vw, 8rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  opacity: 1;
  position: absolute;
  top: -0.45em;
  left: -0.05em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.founder-quote > * { position: relative; z-index: 1; }

/* Name / title block below the gold line */
.founder-name-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.founder-name-block strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.04em;
}
.founder-name-block span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Responsive */
@media (max-width: 900px) {
  .founder-layout {
    grid-template-columns: 1fr;
  }
  .founder-image-wrap {
    height: 420px;
  }
  .founder-quote {
    max-width: 100%;
  }
}

/* =============================================
   SECTION 5 — TESTIMONIALS (ANIMATED)
   ============================================= */
.testimonials-modern {
  padding-block: clamp(6rem, 10vw, 8rem);
  /* Match "Our Expertise" (.services-section) — Apple grey #F5F5F7 */
  background: var(--color-bg);
  overflow: hidden;
  position: relative;
}

.tm-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tm-subtext {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-mid);
  margin-top: 1rem;
}

.tm-columns-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  height: 700px;
  overflow: hidden;
  /* Top/bottom gradient mask for smooth fade in/out */
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.tm-column {
  flex: 1;
  max-width: 380px;
  display: flex;
  flex-direction: column;
}

.tm-column-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: scrollVertical var(--duration) linear infinite;
  will-change: transform;
}

@keyframes scrollVertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.tm-column:hover .tm-column-inner {
  animation-play-state: paused;
}

.tm-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.tm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.tm-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-dark);
}

.tm-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tm-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(0,0,0,0.05);
}

.tm-info {
  display: flex;
  flex-direction: column;
}

.tm-info span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
}

.tm-info small {
  font-size: 0.75rem;
  color: var(--color-mid);
}

@media (max-width: 1024px) {
  .hide-tablet { display: none; }
  .tm-column { max-width: 450px; }
}

@media (max-width: 640px) {
  .hide-mobile { display: none; }
  .tm-columns-wrapper { height: 500px; }
}

/* =============================================
   SECTION 5 — CONTACT
   ============================================= */
.contact-section {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--color-bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info {}
.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--color-dark); }
.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid);
}
.contact-detail-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-top: 2px;
}

.contact-form-wrap {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid);
}
.form-input, .form-select, .form-textarea {
  padding: 0.9rem 1.1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-dark);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: #b0a99f; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 130px; }

.form-consent {
  font-size: 0.78rem;
  color: var(--color-mid);
  line-height: 1.6;
  margin-top: -0.25rem;
}

.form-consent a,
.hero-card-note a,
.meet-card-note a,
.chat-consent a {
  color: var(--color-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent a:hover,
.hero-card-note a:hover,
.meet-card-note a:hover,
.chat-consent a:hover {
  opacity: 0.8;
}

/* =============================================
   SECTION 6 — FOOTER
   ============================================= */
.footer {
  background: var(--color-dark-2);
  color: rgba(255,255,255,0.55);
}

.footer-top {
  padding-block: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 28ch;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--dur) var(--ease);
}
.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: var(--color-white);
}
.footer-social svg { width: 14px; height: 14px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--dur) var(--ease);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
.footer-legal { display: flex; gap: 1.5rem; }

/* =============================================
   RESPONSIVE — 1100px (large tablets / small laptops)
   ============================================= */
@media (max-width: 1100px) {
  /* Bento – collapse to 2 columns */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
  }
  .bento-card.col-8,
  .bento-card.col-4  { grid-column: span 1; }
  .bento-card.col-12 { grid-column: span 2; height: auto; min-height: 280px; }
  .bento-card.tall   { grid-row: span 1; }

  /* Footer – 2 columns */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* =============================================
   RESPONSIVE — 900px (tablets portrait)
   ============================================= */
@media (max-width: 900px) {
  /* Navbar – show hamburger, hide links + actions */
  .nav-links, .nav-actions, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero — stack to single column on tablet */
  .hero { height: auto; min-height: 100svh; padding-top: var(--nav-h); align-items: center; }
  .hero-content { padding-block: 2rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-card {
    max-width: 480px;
  }
  .hero-stats  { display: none; }

  /* Bento – collapse to single column at 900px to prevent any overlap */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
    gap: 1rem;
  }
  .bento-card.col-8,
  .bento-card.col-4,
  .bento-card.col-12 { grid-column: span 1; }
  .bento-card.tall   { grid-row: span 1; }

  /* Sections – single column */
  .services-layout  { grid-template-columns: 1fr; }
  .contact-layout   { grid-template-columns: 1fr; }
  .services-image-wrap { height: 380px; }

  /* Testimonials – 2 per view */
  .testimonial-card { flex: 0 0 calc(50% - 0.75rem); }

  /* Projects header stacks */
  .projects-header { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

/* =============================================
   RESPONSIVE — 640px (large phones)
   ============================================= */
@media (max-width: 640px) {
  /* Container padding */
  .container { padding-inline: 1.25rem; }

  /* Navbar height */
  :root { --nav-h: 64px; }

  /* Hero */
  .hero { height: auto; min-height: 100svh; padding-top: var(--nav-h); align-items: center; }
  .hero-content { padding-bottom: 2.5rem; padding-top: 1rem; }
  .hero-inner { gap: 1.25rem; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero-subtitle { font-size: 0.95rem; max-width: 100%; margin-bottom: 0.5rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: fit-content; }
  .scroll-indicator { display: none; }

  /* Section headings */
  .section-heading { font-size: clamp(1.9rem, 7vw, 2.6rem); }

  /* Bento – full width single column, reset tall */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 1rem;
  }
  .bento-card.col-8,
  .bento-card.col-4,
  .bento-card.col-12 { grid-column: span 1; }
  .bento-card.tall { grid-row: span 1; }

  /* Services image shorter on phone */
  .services-image-wrap { height: 280px; }
  .services-list { margin-top: 1.5rem; }
  .service-item { padding: 1.25rem 0; gap: 1rem; }

  /* Testimonials – 1 per view */
  .testimonial-card { flex: 0 0 calc(100%); padding: 1.75rem; }
  .testimonial-quote { font-size: 1rem; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-details { gap: 1.25rem; }

  /* Footer – single column */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer-legal { justify-content: center; }

  /* Buttons */
  .btn { padding: 0.8rem 1.6rem; font-size: 0.75rem; }
}

/* =============================================
   RESPONSIVE — 400px (small phones / iPhone SE)
   ============================================= */
@media (max-width: 400px) {
  .hero-title { font-size: 2.2rem; }
  .hero-badge { font-size: 0.62rem; padding: 0.35rem 0.9rem; }
  .bento-grid { grid-auto-rows: 220px; }
  .testimonial-card { padding: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-top { gap: 1.75rem; }
}

/* =============================================
   ACCESSIBILITY — reduce motion
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================================
   CHAT WIDGET
   =================================================== */
.chat-widget-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  pointer-events: none;
}

.chat-toggle-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s, box-shadow 0.2s;
  pointer-events: auto;
}
.chat-toggle-btn:hover {
  transform: scale(1.08);
  background: #F0F0F0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.chat-toggle-btn svg {
  width: 28px;
  height: 28px;
}

.chat-window {
  width: 340px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  border: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transform-origin: bottom right;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.chat-window.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  animation: bounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes bounceIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
  background: var(--color-dark);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat-avatar {
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  padding: 2px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.chat-avatar.small {
  width: 30px;
  height: 30px;
}
.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.chat-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}
.chat-close-btn {
  color: rgba(255,255,255,0.6);
  opacity: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.chat-close-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
}
.chat-close-btn svg {
  width: 18px;
  height: 18px;
}

.chat-body {
  padding: 1.25rem;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.chat-bubble-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.chat-bubble {
  background: var(--color-bg);
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border-top-left-radius: 0;
  font-size: 0.85rem;
  color: var(--color-dark);
  line-height: 1.5;
}

.chat-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.chat-input, .chat-textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--color-bg);
  color: var(--color-dark);
  transition: border-color var(--dur) var(--ease);
}
.chat-input:focus, .chat-textarea:focus {
  outline: none;
  border-color: var(--color-dark);
}
.chat-textarea {
  resize: vertical;
  min-height: 60px;
}

.chat-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.65rem;
  color: var(--color-mid);
  line-height: 1.35;
  margin-block: 0.25rem;
  cursor: pointer;
}
.chat-consent input {
  margin-top: 2px;
  accent-color: var(--color-dark);
}

.chat-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 0.6rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.chat-footer {
  text-align: center;
  padding: 0.75rem;
  font-size: 0.6rem;
  color: var(--color-mid);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.chat-footer span {
  color: var(--color-dark);
  font-weight: 600;
}

@media (max-width: 640px) {
  .chat-widget-container {
    bottom: 1rem;
    right: 1rem;
  }
  .chat-window {
    width: calc(100vw - 2rem);
  }
}

/* =============================================
   SUBPAGE STYLES
   ============================================= */
.page-hero {
  position: relative;
  height: 50svh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 3rem;
}
.page-hero .hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.3) 100%);
}
.page-content-wrapper {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--color-bg);
}
.project-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  transition: all var(--dur) var(--ease);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 420px;
}
.about-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-member {
  text-align: center;
}
.team-member img {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  margin-bottom: 1rem;
}
.team-member h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-dark);
}
.team-member p {
  color: var(--color-mid);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}


/* =============================================
   PROJECTS MODAL & FILTERING
   ============================================= */
.project-item { transition: opacity 0.4s ease, transform 0.4s ease; }
.project-item.hidden { display: none !important; }
.project-item.fade-out { opacity: 0; transform: scale(0.95); pointer-events: none; }
.bento-card { cursor: pointer; }

/* Modal */
.project-modal { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.project-modal.active { opacity: 1; pointer-events: auto; }
.project-modal-bg { position: absolute; inset: 0; background: rgba(10, 8, 6, 0.85); backdrop-filter: blur(8px); }
.project-modal-content { position: relative; background: var(--color-bg); width: 90%; max-width: 1200px; height: 85vh; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); transform: translateY(30px) scale(0.98); transition: transform 0.4s var(--ease); z-index: 100000; display: flex; flex-direction: column; }
.project-modal.active .project-modal-content { transform: translateY(0) scale(1); }
.project-modal-close { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--color-dark); color: var(--color-white); border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; transition: background 0.3s ease, transform 0.3s ease; }
.project-modal-close:hover { background: var(--color-dark); transform: scale(1.1); }
.project-modal-split { display: flex; flex-wrap: wrap; width: 100%; height: 100%; }
.project-modal-gallery { flex: 1 1 50%; position: relative; height: 100%; background: var(--color-dark); }
.project-modal-gallery img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; }
.project-modal-thumbs { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; padding: 0.5rem; background: rgba(0,0,0,0.4); backdrop-filter: blur(10px); border-radius: var(--radius-pill); }
.modal-thumb { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: all 0.3s ease; }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-thumb.active { border-color: rgba(255,255,255,0.7); transform: scale(1.1); }
.modal-thumb:hover { border-color: var(--color-white); }
.project-modal-info { flex: 1 1 35%; padding: clamp(2rem, 5vw, 4rem); overflow-y: auto; display: flex; flex-direction: column; justify-content: center; }
.project-meta { margin-top: 1.5rem; font-size: 0.95rem; color: var(--color-mid); }
.project-meta strong { color: var(--color-dark); }
@media (max-width: 900px) { .project-modal-split { flex-direction: column; } .project-modal-gallery { height: 40%; flex: 0 0 40%; } .project-modal-info { height: 60%; justify-content: flex-start; } }

/* =============================================
   SECTION — ACHIEVEMENTS IN PRESS
   ============================================= */
.press-section {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* ---- Section header ---- */
.press-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.press-header .section-heading {
  color: var(--color-dark);
  margin-top: 0.5rem;
}
.press-header .section-body {
  color: var(--color-mid);
  margin-top: 1rem;
}

/* ---- Featured Article Block ---- */
.press-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  overflow: hidden;
}

/* Left: editorial text panel */
.press-article-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-right: 1px solid rgba(0,0,0,0.06);
}

.press-article-pub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.press-pub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
}
.press-pub-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.press-article-date {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid);
}

.press-article-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-dark);
  border-left: 2px solid var(--color-dark);
  padding-left: 1.25rem;
  margin: 0;
  letter-spacing: -0.01em;
}

.press-article-excerpt {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-mid);
}

.press-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.press-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-mid);
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
}

/* Right: press image */
.press-image-wrap {
  position: relative;
  min-height: 360px;
  background: var(--color-dark);
  overflow: hidden;
}
.press-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--dur-lg) var(--ease);
}
.press-feature:hover .press-image-wrap img {
  transform: scale(1.04);
}
.press-image-wrap.press-img-fallback {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.press-image-wrap.press-img-fallback::after {
  content: 'Press Clipping';
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: rgba(0,0,0,0.2);
  letter-spacing: 0.1em;
}
.press-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.5) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.press-image-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
}
.press-image-label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---- Billboard Gallery ---- */
.press-billboards {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.press-billboards-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.75rem 2rem;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.015);
}

.press-bb-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.press-bb-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-dark);
}

.press-bb-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
}
.press-bb-sub {
  font-size: 0.9rem;
  color: var(--color-mid);
  line-height: 1.6;
}

/* 4-card responsive grid */
.press-bb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.press-bb-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-dark);
  aspect-ratio: 4/5;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--dur-md) var(--ease), box-shadow var(--dur-md) var(--ease);
}
.press-bb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}
.press-bb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--dur-lg) var(--ease), filter var(--dur-lg) var(--ease);
  filter: brightness(0.85);
}
.press-bb-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.7);
}
.press-bb-card.press-bb-fallback {
  background: linear-gradient(160deg, #f0f0f0 0%, #e0e0e0 100%);
}
.press-bb-card.press-bb-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.02) 20px, rgba(0,0,0,0.02) 40px);
}

.press-bb-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem;
  background: linear-gradient(to top, rgba(10,8,6,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.press-bb-card-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.press-bb-card-loc {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.3;
}
.press-bb-card-loc svg {
  width: 11px;
  height: 11px;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

/* ---- Accolade strip ---- */
.press-accolades {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 4rem);
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  gap: 0;
}

.press-accolade {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  padding: 1rem;
}

.press-accolade-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  flex-shrink: 0;
}

.press-accolade-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark);
  line-height: 1.4;
}

.press-accolade-divider {
  width: 1px;
  height: 56px;
  background: rgba(0,0,0,0.06);
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .press-bb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .press-feature { grid-template-columns: 1fr; }
  .press-article-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .press-image-wrap { min-height: 300px; }
  .press-accolade-divider { display: none; }
  .press-accolade { min-width: calc(50% - 2px); }
}
@media (max-width: 600px) {
  .press-bb-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .press-billboards-header { flex-direction: column; }
  .press-accolade { min-width: 100%; }
}


/* =============================================
   SECTION — LOGOS (Our Projects & Partners)
   ============================================= */

/* Section wrapper */
.logos-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.logos-section--dark {
  background: var(--color-dark);
}

.logos-section--light {
  background: var(--color-white);
}

/* Header block */
.logos-section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.logos-section--dark .section-heading,
.logos-section--dark .logos-heading {
  color: var(--color-white);
}

.logos-subtext {
  color: var(--color-mid);
  font-size: 1rem;
  line-height: 1.65;
  margin-top: 0.85rem;
}
.logos-section--dark .logos-subtext {
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Marquee container ---- */
.logos-marquee-wrap {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.logos-marquee {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
  padding: 1rem 0;
}

.logos-marquee--reverse {
  animation-direction: reverse;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 0.75rem)); }
}

.logos-marquee-wrap:hover .logos-marquee {
  animation-play-state: paused;
}

.project-videos-wrap {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.project-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  justify-items: center;
}

.project-video-card {
  width: min(100%, 260px);
  background: var(--color-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.project-video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

@media (max-width: 900px) {
  .project-videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .project-videos-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Logo cards ---- */
.logo-card {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  background: var(--color-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  overflow: hidden;
}

.logo-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

/* Light card variant (partners section) */
.logo-card--light {
  background: var(--color-white);
  border-color: var(--color-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  padding: 1.5rem;
  width: 180px;
  height: 120px;
}

.logo-card--light:hover {
  background: var(--color-white);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.1);
}

/* Images inside cards */
.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.8);
  transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Special treatment for exact aspect ratio squares from user screenshot */
.logo-card.square-logo {
  padding: 0;
  border: none;
}
.logo-card.square-logo img {
  object-fit: cover;
  filter: none;
  opacity: 1;
}

/* Fallback text label */
.logo-card-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-mid);


/* =============================================
   SECTION — LOGOS (Our Projects & Partners)
   ============================================= */

/* Section wrapper */
.logos-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.logos-section--dark {
  background: var(--color-dark);
}

.logos-section--light {
  background: var(--color-white);
}

/* Header block */
.logos-section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.logos-section--dark .section-heading,
.logos-section--dark .logos-heading {
  color: var(--color-white);
}

.logos-subtext {
  color: var(--color-mid);
  font-size: 1rem;
  line-height: 1.65;
  margin-top: 0.85rem;
}
.logos-section--dark .logos-subtext {
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Marquee container ---- */
.logos-marquee-wrap {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.logos-marquee {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
  padding: 1rem 0;
}

.logos-marquee--reverse {
  animation-direction: reverse;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 0.75rem)); }
}

.logos-marquee-wrap:hover .logos-marquee {
  animation-play-state: paused;
}

/* ---- Logo cards ---- */
.logo-card {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  background: var(--color-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  overflow: hidden;
}

.logo-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

/* Light card variant (partners section) */
.logo-card--light {
  background: var(--color-white);
  border-color: var(--color-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  padding: 1.5rem;
  width: 180px;
  height: 120px;
}

.logo-card--light:hover {
  background: var(--color-white);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.1);
}

/* Images inside cards */
.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.8);
  transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Special treatment for exact aspect ratio squares from user screenshot */
.logo-card.square-logo {
  padding: 0;
  border: none;
}
.logo-card.square-logo img {
  object-fit: cover;
  filter: none;
  opacity: 1;
}

/* Fallback text label */
.logo-card-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-mid);
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 700px) {
  .logo-card {
    width: 170px;
    height: 170px;
  }
  .logo-card--light {
    width: 140px;
    height: 100px;
    padding: 1rem;
  }
}

/* =============================================
   QUOTE MODAL
   ============================================= */

/* Backdrop */
.qm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  transition: opacity 0.3s ease;
}
.qm-backdrop.qm-open {
  display: flex;
}

/* Card */
.qm-card {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: none;
}
.qm-backdrop.qm-open .qm-card {
  transform: translateY(0) scale(1);
}
.qm-card::-webkit-scrollbar { display: none; }

/* Close button */
.qm-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F5F5F7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  color: #1D1D1F;
  z-index: 2;
}
.qm-close svg { width: 16px; height: 16px; }
.qm-close:hover { background: #E5E5EA; }

/* Step transitions */
.qm-step {
  display: none;
  animation: qmFadeUp 0.3s ease both;
}
.qm-step--active { display: block; }
@keyframes qmFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Progress indicator */
.qm-progress {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6E6E73;
  margin-bottom: 0.75rem;
}
.qm-progress strong { color: #1D1D1F; }

/* Title */
.qm-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #1D1D1F;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.qm-title-accent {
  font-style: italic;
  font-weight: 700;
  color: #1D1D1F;
  border-bottom: 2px solid #1D1D1F;
}
.qm-subtitle {
  font-size: 0.9rem;
  color: #6E6E73;
  margin-bottom: 2rem;
}

/* Step 1 — Two-column grid */
.qm-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Field groups */
.qm-field-group { margin-bottom: 1.75rem; }
.qm-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1D1D1F;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

/* Chip buttons */
.qm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.qm-chip {
  padding: 0.45rem 1rem;
  border-radius: 8px;
  border: 1.5px solid rgba(0,0,0,0.15);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1D1D1F;
  background: #fff;
  cursor: pointer;
  transition: all 0.15s ease;
}
.qm-chip:hover {
  border-color: #1D1D1F;
  background: #F5F5F7;
}
.qm-chip.qm-chip--selected {
  background: #1D1D1F;
  color: #fff;
  border-color: #1D1D1F;
}

/* CTA button */
.qm-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.75rem;
  background: #1D1D1F;
  color: #fff;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
}
.qm-cta-btn svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.qm-cta-btn:hover { background: #333336; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.qm-cta-btn:hover svg { transform: translateX(3px); }
.qm-cta-btn--full { width: 100%; justify-content: center; padding: 1rem; font-size: 0.95rem; margin-top: 0; }

/* Visual column */
.qm-visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F5F5F7;
  border-radius: 14px;
  padding: 1.5rem;
  min-height: 220px;
}
.qm-floor-svg, .qm-floor-img { width: 100%; max-width: 240px; height: auto; border-radius: 8px; }
.qm-visual-tag {
  font-size: 0.68rem;
  color: #AEAEB2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1rem;
  font-weight: 500;
}

/* Step 2 — Back button */
.qm-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #6E6E73;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.15s ease;
}
.qm-back-btn svg { width: 14px; height: 14px; }
.qm-back-btn:hover { color: #1D1D1F; }

/* Step 2 — Form fields */
.qm-fields { display: flex; flex-direction: column; gap: 1rem; }
.qm-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #1D1D1F;
  background: #F5F5F7;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.qm-input:focus {
  border-color: #1D1D1F;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.qm-input::placeholder { color: #AEAEB2; }

/* Phone row */
.qm-phone-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  background: #F5F5F7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.qm-phone-wrap:focus-within {
  border-color: #1D1D1F;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.qm-country-code {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1D1D1F;
  border-right: 1.5px solid rgba(0,0,0,0.1);
  white-space: nowrap;
  background: transparent;
  flex-shrink: 0;
}
.qm-phone-input {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1;
}
.qm-phone-input:focus { box-shadow: none !important; }

/* WhatsApp toggle */
.qm-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: #F5F5F7;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,0.06);
}
.qm-toggle-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1D1D1F;
}

/* Toggle switch */
.qm-toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.qm-toggle-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.qm-toggle-track {
  width: 46px;
  height: 26px;
  background: #D1D1D6;
  border-radius: 99px;
  position: relative;
  transition: background 0.25s ease;
}
.qm-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.qm-toggle-switch input:checked + .qm-toggle-track { background: #34C759; }
.qm-toggle-switch input:checked + .qm-toggle-track::after { transform: translateX(20px); }

/* Disclaimer */
.qm-disclaimer {
  font-size: 0.72rem;
  color: #AEAEB2;
  text-align: center;
  line-height: 1.6;
}
.qm-disclaimer a { color: #6E6E73; text-decoration: underline; text-underline-offset: 2px; }
.qm-disclaimer a:hover { color: #1D1D1F; }

/* Responsive */
@media (max-width: 560px) {
  .qm-card { padding: 1.75rem 1.25rem; }
  .qm-body-grid { grid-template-columns: 1fr; }
  .qm-visual-col { display: none; }
  .qm-title { font-size: 1.35rem; }
}

/* =============================================
   CONSULTATION POPUP
   ============================================= */
.consult-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
.consult-overlay.active {
  opacity: 1;
  visibility: visible;
}
.consult-card {
  width: 100%;
  max-width: 420px;
  position: relative;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  margin: 0;
}
.consult-overlay.active .consult-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.consult-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6E6E73;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 10;
}
.consult-close:hover {
  background: rgba(0,0,0,0.1);
  color: #1D1D1F;
}
