/* ============================================================
   LUMID INTERIORS — Design System
   ============================================================ */
:root {
  --charcoal:    #141414;
  --charcoal-2:  #1E1E1E;
  --charcoal-3:  #2A2A2A;
  --gold:        #C8973C;
  --gold-lt:     #E4BC78;
  --gold-pale:   #F5E9CE;
  --sage:        #8A9E8C;
  --sage-lt:     #C2D0C4;
  --off-white:   #F7F4EF;
  --warm-grey:   #EAE6DF;
  --mid-grey:    #B8B4AE;
  --dim-grey:    #6E6A64;
  --ink:         #1A1A1A;
  --white:       #FFFFFF;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;

  --r-sm:   4px;
  --r-md:   8px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --trans:  0.3s var(--ease);
  --trans-slow: 0.6s var(--ease);

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 80px rgba(0,0,0,0.18);

  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap { width: min(var(--max-w), 92vw); margin-inline: auto; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.display em { font-style: italic; color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: var(--trans);
  cursor: pointer;
}
.btn-dark  { background: var(--charcoal); color: var(--white); border: 1.5px solid var(--charcoal); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-gold  { background: var(--gold); color: var(--white); border: 1.5px solid var(--gold); }
.btn-gold:hover { background: var(--charcoal); border-color: var(--charcoal); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: var(--white); color: var(--charcoal); }

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  /* fully transparent on hero — no background at all */
  background: transparent;
  transition: background 0.6s ease, box-shadow 0.6s ease;
}

/* triggered by JS when user scrolls past hero */
#nav.scrolled {
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 2rem;
  min-height: 0;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}


.nav-logo-img {
  /* Show a taller box but clip to just the logo mark area */
  height: 68px;
  width: 238px;            /* fixed width to control crop area */
  object-fit: cover;
  /* shift the view to zoom into the actual logo mark —
     adjust these percentages until the mark fills the box */
  object-position: 30% 40%;
  display: block;
  background: none;
  border: none;
  outline: none;
  filter: brightness(1.05) drop-shadow(0 1px 6px rgba(0,0,0,0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nav-logo-img:hover {
  transform: scale(1.03);
  filter: brightness(1.2) drop-shadow(0 2px 10px rgba(200,151,60,0.4));
}
#nav.scrolled .nav-logo-img {
  height: 64px;
  filter: brightness(1.1) drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}

/* ── Desktop links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* links stay white on dark scrolled nav */
#nav.scrolled .nav-links a { color: rgba(255,255,255,0.7); }
#nav.scrolled .nav-links a:hover { color: var(--white); }

/* CTA pill */
.nav-cta {
  padding: 0.55rem 1.4rem !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 99px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  border: 1.5px solid var(--gold) !important;
  transition: background 0.3s ease, transform 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--charcoal) !important;
  border-color: var(--charcoal) !important;
  transform: translateY(-1px) !important;
}
#nav.scrolled .nav-cta {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  /* always visible — solid dark pill with gold border */
  background: rgba(14, 14, 14, 0.75);
  border: 1.5px solid rgba(200, 151, 60, 0.6);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  /* fixed position so it never moves regardless of logo size */
  position: fixed;
  top: 1rem;
  right: 4vw;
  z-index: 201;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.hamburger:hover {
  background: rgba(200, 151, 60, 0.2);
  border-color: var(--gold);
}
.hamburger.open {
  background: rgba(200, 151, 60, 0.15);
  border-color: var(--gold);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* ══════════════════════════════════════════════════════════
   MOBILE SIDE PANEL NAV
══════════════════════════════════════════════════════════ */

/* Dark backdrop behind panel */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 198;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: opacity 0.3s ease;
}
.nav-backdrop.open { display: block; }

/* Side panel — slides in from right */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -340px; /* hidden off screen */
  width: min(320px, 85vw);
  height: 100%;
  background: var(--charcoal);
  z-index: 199;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -4px 0 40px rgba(0,0,0,0.4);
}
.mobile-menu.open {
  right: 0; /* slides into view */
}

/* Panel header — logo + close button */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(200, 151, 60, 0.15);
  flex-shrink: 0;
}
.mobile-menu-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(1.1);
}
.mobile-menu-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: none;
  color: var(--mid-grey);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.mobile-menu-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Nav links */
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  flex: 1;
}
.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(247, 244, 239, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.3s ease, background 0.3s ease, padding-left 0.3s ease;
  text-decoration: none;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:active {
  color: var(--off-white);
  background: rgba(200, 151, 60, 0.06);
  padding-left: 2rem;
}
.link-num {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
  min-width: 20px;
}

/* Panel footer — tagline + contact */
.mobile-menu-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(200, 151, 60, 0.12);
  flex-shrink: 0;
}
.mobile-menu-tagline {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(247, 244, 239, 0.4);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.mobile-menu-tagline em {
  color: var(--gold);
  font-style: normal;
}
.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mobile-menu-contact a {
  font-size: 0.75rem;
  color: var(--dim-grey);
  transition: color 0.3s ease;
  text-decoration: none;
}
.mobile-menu-contact a:hover { color: var(--gold); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 4.5rem;
  /* pushes hero content below the fixed nav — adjust if logo height changes */
  padding-top: 100px;
}

/* gold corner accent — brand mark top-right */
#hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle at top right, rgba(200,151,60,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Rotating monogram watermark */
.hero-monogram {
  position: absolute;
  top: 50%;
  right: -6vw;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(14rem, 22vw, 22rem);
  font-weight: 700;
  color: rgba(200, 151, 60, 0.035);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  animation: slowspin 80s linear infinite;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
@keyframes slowspin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* hero background image */
.hero-image-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-image-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-bg.loaded { opacity: 0.28; }

/* ── HERO VIDEO ──────────────────────────────────────────── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* gold line left edge — vertical brand accent */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4vw;
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
  /* subtle left border in gold */
  border-left: 2px solid rgba(200,151,60,0.25);
  padding-left: calc(4vw + 1.5rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}
/* ── HERO SLIDESHOW ──────────────────────────────────────── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  /* hidden slides must not block clicks */
  pointer-events: none;
}

.hero-slide.active {
  opacity: 0.32;
  pointer-events: none;
}

/* images fill the slot, maintain ratio by covering */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* videos fill the slot exactly like images */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/*.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HERO TITLE — proportional, clear hierarchy */
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  color: var(--off-white);
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;

  /* Three-level size scale:
     mobile → tablet → desktop
     Never too big, always readable */
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 16ch;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: inline;   /* keeps em words inline, not stacked */
}

/* subtitle — tighter and shorter copy */
.hero-sub {
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  color: var(--mid-grey);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* bottom strip — stats + upload */
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.hero-stats { display: flex; gap: 2.5rem; }

.hero-stat-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-grey);
  margin-top: 0.25rem;
}

.hero-upload-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--dim-grey);
  cursor: pointer;
  transition: color var(--trans);
  border: 1px dashed rgba(255,255,255,0.12);
  padding: 0.5rem 1rem;
  border-radius: 99px;
}
.hero-upload-hint:hover { color: var(--gold); border-color: var(--gold); }
.hero-upload-hint svg { opacity: 0.5; transition: opacity var(--trans); }
.hero-upload-hint:hover svg { opacity: 1; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 52px; }
  /* Hero */
  .hero-content {
    border-left: none;
    padding-left: 4vw;
  }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); max-width: 100%; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Mobile menu — stack to single column on small screens */
  .mobile-menu {
    grid-template-columns: 1fr;
  }
  .mobile-menu-brand {
    display: none; /* hide brand panel on very small screens, show only links */
  }
  .mobile-menu-links {
    padding: 5rem 2rem 2rem;
    justify-content: flex-start;
  }
  .mobile-menu-links a {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    padding: 0.8rem 0;
  }
}

@media (min-width: 769px) and (max-width: 960px) {
  .nav-logo-img { height: 60px; }
}
/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--gold);
  padding: 0.75rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.marquee-track .dot {
  color: rgba(255,255,255,0.4);
  font-size: 0.5rem;
  align-self: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ───────────────────────────────────────────────── */
#about { padding: 8rem 0; background: var(--off-white); }

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

.about-images { position: relative; }
.about-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 12px;
}
.about-img-a { grid-column: 1 / -1; }
.about-img-b { grid-column: 1; }
.about-img-c { grid-column: 2; }

.img-slot {
  width: 100%; height: 100%;
  background: var(--warm-grey);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--trans);
}
.img-slot:hover { opacity: 0.85; }
.img-slot img { width: 100%; height: 100%; object-fit: cover; }
.img-slot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%; height: 100%;
  min-height: 120px;
  color: var(--mid-grey);
}
.img-slot-placeholder svg { opacity: 0.4; }
.img-slot-placeholder span {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.about-accent-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--charcoal);
  color: var(--off-white);
  padding: 1.2rem 1.6rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-accent-tag strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.about-accent-tag span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 0.2rem;
  display: block;
}

.about-content { padding-left: clamp(0px, 2vw, 2rem); }
.about-content .eyebrow { margin-bottom: 1rem; }
.about-content .display { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--charcoal); margin-bottom: 1.5rem; }
.about-content p { font-size: 0.95rem; color: var(--dim-grey); line-height: 1.85; margin-bottom: 1.1rem; }
.about-signature {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--charcoal);
  margin: 1.5rem 0 1.2rem;
}
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.credential-tag {
  padding: 0.35rem 0.9rem;
  background: var(--warm-grey);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dim-grey);
}

/* ── SERVICES ────────────────────────────────────────────── */
#services { padding: 8rem 0; background: var(--charcoal); }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
.services-header .display { color: var(--off-white); font-size: clamp(2rem, 3.5vw, 2.8rem); }
.services-intro {
  font-size: 0.95rem;
  color: var(--mid-grey);
  line-height: 1.85;
  padding-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  overflow: hidden;
}

.svc-card {
  background: var(--charcoal-2);
  padding: 2.8rem 2.2rem;
  transition: background var(--trans);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-slow);
}
.svc-card:hover { background: var(--charcoal-3); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card.featured { background: var(--charcoal-3); border-top: 2px solid var(--gold); }
.svc-card.featured::after { display: none; }

.svc-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.svc-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim-grey);
  margin-bottom: 1.5rem;
}

.svc-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 0.75rem;
}
.svc-desc {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.svc-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.svc-price small {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--dim-grey);
  font-weight: 400;
}
.svc-features { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.2rem; margin-bottom: 1.8rem; }
.svc-features li {
  font-size: 0.8rem;
  color: var(--mid-grey);
  padding: 0.3rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.svc-features li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.svc-cta { margin-top: auto; }
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--dim-grey);
}
.pricing-note a { color: var(--gold-lt); text-decoration: underline; text-underline-offset: 3px; }

/* ── PORTFOLIO ───────────────────────────────────────────── */
#portfolio { padding: 8rem 0; background: var(--off-white); }

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.portfolio-header .display { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--charcoal); }

.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-tab {
  padding: 0.5rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--warm-grey);
  color: var(--dim-grey);
  border-radius: 99px;
  transition: var(--trans);
  cursor: pointer;
  background: none;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--warm-grey);
  cursor: pointer;
}
.portfolio-item.tall { grid-row: span 2; }
.portfolio-item.wide { grid-column: span 2; }

.portfolio-thumb-wrap {
  width: 100%; height: 100%;
  min-height: 280px;
}
.portfolio-item.tall .portfolio-thumb-wrap { min-height: 560px; }

.p-img-slot {
  width: 100%; height: 100%;
  min-height: inherit;
  position: relative;
}
.p-img-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.portfolio-item:hover .p-img-slot img { transform: scale(1.05); }

.p-placeholder {
  width: 100%; height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--mid-grey);
  background: var(--warm-grey);
  cursor: pointer;
  transition: background var(--trans);
}
.p-placeholder:hover { background: var(--sage-lt); }
.p-placeholder svg { opacity: 0.35; }
.p-placeholder span { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.55; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--trans);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.p-cat {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.25rem;
}
.p-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
}
.p-loc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,14,14,0.96);
  z-index: 300;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-inner { max-width: 920px; width: 90vw; position: relative; }
.lb-img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lb-close {
  position: absolute;
  top: -2.8rem; right: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none; border: none;
  cursor: pointer;
  transition: color var(--trans);
}
.lb-close:hover { color: var(--white); }
.lb-caption {
  margin-top: 1rem;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
#testimonials { padding: 8rem 0; background: var(--charcoal-2); position: relative; overflow: hidden; }

.testi-bg-quote {
  position: absolute;
  top: -2rem; left: 3vw;
  font-family: var(--serif);
  font-size: 22rem;
  line-height: 1;
  color: rgba(200,151,60,0.04);
  user-select: none;
  pointer-events: none;
}

.testi-header { max-width: 600px; margin-bottom: 3.5rem; }
.testi-header .display { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--off-white); margin-top: 0.8rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2rem;
  border-radius: var(--r-md);
  transition: border-color var(--trans), background var(--trans);
  position: relative;
}
.testi-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,151,60,0.35);
}
.testi-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.testi-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(247,244,239,0.8);
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(200,151,60,0.18);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 500;
}
.testi-name { font-size: 0.85rem; font-weight: 600; color: var(--off-white); }
.testi-role { font-size: 0.7rem; color: var(--dim-grey); letter-spacing: 0.04em; margin-top: 0.1rem; }
.testi-source {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,151,60,0.4);
}

/* ── INVEST ──────────────────────────────────────────────── */
#invest { padding: 8rem 0; background: var(--off-white); }

.invest-header { max-width: 680px; margin-bottom: 4rem; }
.invest-header .display { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--charcoal); margin-top: 0.8rem; }
.invest-header p { font-size: 0.95rem; color: var(--dim-grey); line-height: 1.85; margin-top: 1rem; }

.invest-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.invest-card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--r-md);
  border: 1px solid var(--warm-grey);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.invest-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.invest-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.invest-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.invest-card p { font-size: 0.88rem; color: var(--dim-grey); line-height: 1.7; margin-bottom: 1.2rem; }
.invest-card ul li {
  font-size: 0.82rem;
  color: var(--dim-grey);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.invest-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-size: 0.75rem; }

.invest-stats {
  background: var(--charcoal);
  border-radius: var(--r-md);
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.invest-stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.invest-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-grey);
  margin-top: 0.4rem;
}

.invest-cta {
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  padding: 2.5rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.invest-cta h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
}
.invest-cta p { font-size: 0.88rem; color: var(--dim-grey); margin-top: 0.3rem; }

/* ── PROCESS ─────────────────────────────────────────────── */
#process { padding: 8rem 0; background: var(--warm-grey); }

.process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.process-header .display { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--charcoal); margin-top: 0.8rem; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 1.6rem;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--sage-lt), var(--gold));
  z-index: 0;
  opacity: 0.4;
}
.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 3.2rem; height: 3.2rem;
  border-radius: 50%;
  background: var(--off-white);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--charcoal);
  position: relative;
  z-index: 2;
  transition: background var(--trans), color var(--trans);
}
.process-step:hover .step-num { background: var(--gold); color: var(--white); }
.process-step h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.process-step p { font-size: 0.82rem; color: var(--dim-grey); line-height: 1.65; }

/* ── CONTACT ─────────────────────────────────────────────── */
#contact { padding: 8rem 0; background: var(--off-white); }

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

.contact-info .display { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--charcoal); margin: 0.8rem 0 1.2rem; }
.contact-info > p { font-size: 0.95rem; color: var(--dim-grey); line-height: 1.85; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-icon {
  width: 38px; height: 38px;
  background: var(--warm-grey);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.15rem;
}
.contact-detail span { font-size: 0.9rem; color: var(--charcoal); }
.contact-detail a { color: var(--charcoal); transition: color var(--trans); }
.contact-detail a:hover { color: var(--gold); }

.contact-socials { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.social-pill {
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--warm-grey);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim-grey);
  transition: var(--trans);
}
.social-pill:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

.contact-form-box {
  background: var(--white);
  padding: 2.8rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.contact-form-box .eyebrow { margin-bottom: 0.5rem; }
.form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-grey);
  margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--off-white);
  border: 1.5px solid var(--warm-grey);
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color var(--trans), background var(--trans);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
textarea { min-height: 110px; resize: vertical; }
.form-btn {
  width: 100%;
  padding: 1rem;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}
.form-btn:hover { background: var(--gold); transform: translateY(-2px); }
.form-success {
  display: none;
  background: rgba(138,158,140,0.12);
  border: 1px solid rgba(138,158,140,0.4);
  padding: 0.9rem 1rem;
  border-radius: var(--r-sm);
  text-align: center;
  color: #4a7a4d;
  font-size: 0.85rem;
  margin-top: 0.8rem;
}
.wa-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--dim-grey);
}
.wa-alt a { color: #25D366; font-weight: 600; transition: opacity var(--trans); }
.wa-alt a:hover { opacity: 0.75; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer { background: var(--charcoal); }

/* Top section — 4 column grid */
.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}


/* Brand column */
/*.footer-brand {}*/
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 1.2rem;
  filter: brightness(1.1);
}
.footer-bio {
  font-size: 0.85rem;
  color: var(--dim-grey);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  max-width: 280px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact-list span {
  font-size: 0.78rem;
  color: var(--dim-grey);
}
.footer-contact-list a {
  color: var(--gold-lt);
  transition: color 0.3s ease;
}
.footer-contact-list a:hover { color: var(--gold); }

/* Nav / services columns */
/*.footer-col {}*/

.footer-col-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(200,151,60,0.2);
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}
.footer-col-links li a {
  font-size: 0.8rem;
  color: var(--dim-grey);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: block;
}
.footer-col-links li a:hover {
  color: var(--off-white);
  padding-left: 4px;
}

/* Stats column */
.footer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
/*.footer-stat {}*/

.footer-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.footer-stat-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim-grey);
  margin-top: 0.2rem;
  line-height: 1.3;
}

.footer-cta-btn {
  display: inline-block;
  padding: 0.65rem 1.3rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 99px;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.footer-cta-btn:hover {
  background: var(--off-white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
}
.footer-credit {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
}
.footer-credit strong {
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

/* Footer responsive */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-top { padding: 3rem 0 2rem; }
}

/* ══════════════════════════════════════════════════════════
   FLOATING SOCIAL BUTTONS
══════════════════════════════════════════════════════════ */
.social-floats {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  height: 36px;
  border-radius: 99px;
  padding: 0 0.9rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, width 0.3s ease;
  overflow: hidden;
  /* collapsed by default — icon only */
  width: 46px;
  justify-content: center;
}
.float-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
  flex-shrink: 0;
}
.float-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: white;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-width 0.3s ease;
}

/* expand on hover to show label */
.float-btn:hover {
  width: auto;
  padding: 0 1.1rem;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  justify-content: flex-start;
}
.float-btn:hover .float-label {
  opacity: 1;
  max-width: 100px;
}

/* individual brand colours */
.float-wa  { background: #25D366; }
.float-wa:hover  { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }

.float-ig  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.float-ig:hover  { box-shadow: 0 6px 24px rgba(220,39,67,0.45); }

.float-tt  { background: #010101; border: 1px solid rgba(255,255,255,0.1); }
.float-tt:hover  { box-shadow: 0 6px 24px rgba(0,0,0,0.5); }

.float-li  { background: #0077B5; }
.float-li:hover  { box-shadow: 0 6px 24px rgba(0,119,181,0.45); }

/* mobile — slightly smaller */
@media (max-width: 768px) {
  .social-floats {
    bottom: 1.2rem;
    right: 1rem;
    gap: 0.5rem;
  }
  .float-btn {
    width: 42px;
    height: 42px;
  }
  .float-btn svg { width: 19px; height: 19px; }
  footer .footer-bottom { padding-bottom: 6.5rem; } /* clears space for floating icons */
}


/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-header { grid-template-columns: 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .invest-cards { grid-template-columns: 1fr; }
  .invest-stats { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.wide { grid-column: span 2; }
  .portfolio-item.tall { grid-row: span 1; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps::before { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-accent-tag { right: 0; bottom: -1rem; }
}
@media (max-width: 600px) {
  .testi-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.wide,
  .portfolio-item.tall { grid-column: span 1; grid-row: span 1; }
  .invest-stats { grid-template-columns: 1fr; }
  .invest-cta { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .hero-bottom { flex-direction: column; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-stack { grid-template-rows: 200px 140px; }


}