/* ═══════════════════════════════════════════════════════════════
   BSH LANDSCAPE & HARDSCAPE — PREMIUM LUXURY STYLESHEET
   Beverly Hills Edition
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --gold:        #C9A96E;
  --gold-light:  #E2C98C;
  --gold-dark:   #A8854A;
  --charcoal:    #0F0F0F;
  --charcoal-2:  #1A1A1A;
  --charcoal-3:  #222222;
  --ink:         #2D2D2D;
  --cream:       #F7F3EE;
  --cream-2:     #EDE8E1;
  --white:       #FFFFFF;
  --muted:       #888888;
  --muted-2:     #BBBBBB;

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.22);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.35);

  --trans: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ─── LAYOUT HELPERS ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

/* ─── TYPOGRAPHY ─── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted-2);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.body-text {
  font-size: 1.05rem;
  color: rgba(247,243,238,0.8);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.4rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.4); }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span, .btn-gold i { position: relative; z-index: 1; }
.btn-gold > *:not(::before) { position: relative; }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  transition: var(--trans);
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: var(--trans);
  margin-top: 1.25rem;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,169,110,0.3);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--trans), transform 0.7s var(--trans);
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.site-header.transparent { background: transparent; }

.site-header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.15), 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo { flex-shrink: 0; }

.logo-img {
  height: 72px;
  width: auto;
  transition: var(--trans);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.logo-img:hover { opacity: 0.85; transform: scale(1.02); }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.75rem; right: 0.75rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  display: none;
  padding: 0.6rem 1.4rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--trans);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--trans);
  border-radius: 1px;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 2rem;
  transition: var(--trans);
  letter-spacing: 0.02em;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-cta {
  display: inline-block !important;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem !important;
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  transition: transform 8s ease;
  will-change: transform;
}

.hero-img.zoomed { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 6vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.03;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtext {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s forwards;
}

.hero-availability {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.dot-gold {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(201,169,110,0); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

.scroll-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

/* ═══════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid rgba(168,133,74,0.18);
  border-bottom: 1px solid rgba(168,133,74,0.18);
  padding: 2rem 0;
}

.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 2.5rem;
  text-align: center;
}

.trust-stat strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.trust-stat span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(168,133,74,0.3);
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.8rem 0;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.marquee-dot {
  font-size: 0.6rem !important;
  opacity: 0.6;
}

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* ═══════════════════════════════════════════════════════
   SERVICES  — white background
═══════════════════════════════════════════════════════ */
.services-section {
  background: var(--white);
}

/* Override text colours inside the white services section */
.services-section .section-eyebrow { color: var(--gold-dark); }
.services-section .section-title   { color: var(--ink); }
.services-section .section-title em{ color: var(--gold-dark); }
.services-section .section-subtitle{ color: #666; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform var(--trans-slow), box-shadow var(--trans);
}

.service-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-xl); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.88) 100%);
  transition: var(--trans);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.92) 100%);
}

.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
}

.service-card-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover .service-card-body p {
  max-height: 120px;
  opacity: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover .service-link {
  max-height: 40px;
  opacity: 1;
}

.service-link i { transition: transform 0.3s ease; }
.service-link:hover i { transform: translateX(4px); }

/* Additional Services */
.additional-services {
  background: #f9f6f2;
  border: 1px solid rgba(168,133,74,0.18);
  border-radius: var(--radius-md);
  padding: 2.5rem 3rem;
  text-align: center;
}

.additional-services h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.additional-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
}

.additional-services-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #666;
  text-transform: uppercase;
}

.additional-services-list li i { color: var(--gold); font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════
   SPLIT FEATURE (ABOUT)
═══════════════════════════════════════════════════════ */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.split-feature-image {
  position: relative;
  overflow: hidden;
}

.split-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}

.split-feature-image:hover img { transform: scale(1.04); }

.split-feature-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 90px;
  height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.split-feature-badge strong {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1;
}

.split-feature-badge span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}

.split-feature-content {
  background: #f9f6f2;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

/* Text colours inside the cream About panel */
.split-feature-content .section-eyebrow { color: var(--gold-dark); }
.split-feature-content .section-title   { color: var(--ink); }
.split-feature-content .section-title em{ color: var(--gold-dark); }
.split-feature-content .body-text       { color: rgba(45,45,45,0.8); }
.split-feature-content .stat-item span  { color: #777; }
.split-feature-content .stats-row       { border-color: rgba(168,133,74,0.2); }
.split-feature-content .contact-strip-item { color: rgba(45,45,45,0.65); }

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-item strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-item span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-strip {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(247,243,238,0.65);
  transition: var(--trans);
}

.contact-strip-item i { color: var(--gold); width: 14px; font-size: 0.8rem; }
.contact-strip-item:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════════════════ */
.portfolio-section { background: var(--charcoal-3); }

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.55rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: var(--trans);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-bottom: 3rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
  margin: 0;
}

.portfolio-item.large {
  grid-column: span 1;
  aspect-ratio: 3/4;
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.portfolio-item:hover img { transform: scale(1.07); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.portfolio-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.portfolio-overlay p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.portfolio-item.hide { display: none; }

.portfolio-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════ */
.process-section {
  position: relative;
  overflow: hidden;
}

.process-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(0.3);
}

.process-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.78) 100%);
}

.process-container {
  position: relative;
  z-index: 2;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 1rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: calc(12.5% - 1px);
  right: calc(12.5% - 1px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark) 20%, var(--gold-dark) 80%, transparent);
  z-index: 0;
}

.process-step {
  padding: 0 1.5rem 0 0;
  position: relative;
}

.process-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: var(--trans);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}

.process-step:hover .process-step-number {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(201,169,110,0.6);
}

.process-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.process-step-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.process-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.process-duration i { font-size: 0.65rem; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS  — white background
═══════════════════════════════════════════════════════ */
.testimonials-section { background: var(--white); }

/* Heading colours on white */
.testimonials-section .section-eyebrow { color: var(--gold-dark); }
.testimonials-section .section-title   { color: var(--ink); }
.testimonials-section .section-title em{ color: var(--gold-dark); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.testimonial-card {
  background: #faf8f5;
  border: 1px solid rgba(168,133,74,0.14);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.08;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(168,133,74,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: #3a3530;
  line-height: 1.75;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(168,133,74,0.15);
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dark);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-author span {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* Review Badges */
.review-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: #f4f0ea;
  border: 1px solid rgba(168,133,74,0.2);
  border-radius: var(--radius-md);
  min-width: 160px;
}

.review-badge i {
  font-size: 1.6rem;
  color: var(--gold);
  width: 28px;
  text-align: center;
}

.review-badge strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.review-badge span {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════ */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.88);
}

.contact-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--trans);
}

.contact-info-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  width: 16px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-info-item span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.contact-info-item:hover span { color: #fff; }

/* Contact Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #fff;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--charcoal-2); color: #fff; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}

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

.form-group textarea { resize: vertical; min-height: 100px; }

.form-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-success i {
  font-size: 3.5rem;
  color: var(--gold);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
}

.form-success p {
  color: var(--muted-2);
  font-size: 0.95rem;
  max-width: 360px;
  line-height: 1.7;
}

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

.footer-top {
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: clamp(3rem, 6vw, 5rem) 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--trans);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li, .footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: var(--trans);
  cursor: default;
}

.footer-col ul a:hover { color: var(--gold); cursor: pointer; }

.footer-contact-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  transition: var(--trans);
}

.footer-phone i { color: var(--gold); font-size: 0.75rem; }
.footer-phone:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom-inner p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .hamburger { display: none; }
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .split-feature { grid-template-columns: 1fr; }
  .split-feature-image { aspect-ratio: 4/3; }
  .split-feature-image img { height: 100%; }
  .contact-container { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.large { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
  .trust-bar-inner { gap: 0; }
  .trust-stat { padding: 0.5rem 1.25rem; }
  .trust-divider { height: 28px; }
}

@media (max-width: 640px) {
  .hero-headline { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-gold,
  .hero-actions .btn-ghost-white { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.large { aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 0.5rem; }
  .trust-stat { padding: 0.5rem 1rem; }
}
