*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --charcoal: #1a1a1a;
  --dark-grey: #222222;
  --mid-grey: #444444;
  --light-grey: #888888;
  --silver: #aaaaaa;
  --off-white: #f0ede8;
  --warm-white: #faf8f5;
  --gold: #b8965a;
  --gold-light: #d4ae72;
  --gold-dark: #8a6e3a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* so anchor jumps clear the fixed nav */
}

/* Respect user preference for reduced motion — critical accessibility win */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-bg { animation: none; transform: none; }
  .preloader { display: none !important; }
  body.loading { overflow: auto !important; }
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* Screen-reader-only utility — keeps SEO-rich text in the DOM while hiding it visually.
   Used inside H1 to expose full keyword copy to Google + assistive tech without breaking the
   editorial "MALVEN / Space Reimagined" hero design. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* PRELOADER */
body.loading { overflow: hidden; }
.preloader {
  position: fixed; inset: 0;
  z-index: 9000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
  padding: 40px;
}
.preloader-logo {
  height: 110px; width: auto;
  opacity: 0;
  transform: translateY(10px);
  animation: preFadeIn 0.45s 0s ease both;
  margin: 0 auto 20px;
}
.preloader-line {
  width: 200px; height: 1px;
  background: rgba(184,150,90,0.15);
  margin: 0 auto 14px;
  overflow: hidden;
  position: relative;
}
.preloader-line span {
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: preLine 0.8s 0.1s cubic-bezier(0.65,0,0.35,1) forwards;
}
.preloader-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 3px;
  opacity: 0;
  animation: preFadeIn 0.35s 0.35s ease both;
}
@keyframes preFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes preLine {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 70%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.4s, padding 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgba(10,10,10,0.96);
  padding: 12px 60px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-logo-wrap {
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 46px; width: auto;
  transition: height 0.3s, opacity 0.3s;
}
nav.scrolled .nav-logo-img { height: 40px; }
.nav-logo-wrap:hover .nav-logo-img { opacity: 0.85; }

.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

/* 360° Tour shortcut — gold pill with pulsing dot to mark it as the interactive feature */
.nav-links a.nav-link-360 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 5px;
  border: 1px solid rgba(184,150,90,0.45);
  color: var(--gold);
  background: rgba(184,150,90,0.06);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.nav-links a.nav-link-360::after { display: none; }
.nav-links a.nav-link-360:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.nav-links a.nav-link-360:hover .nav-360-dot { background: var(--black); box-shadow: none; }
.nav-360-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(184,150,90,0.6);
  animation: nav360Pulse 2s ease-out infinite;
}
@keyframes nav360Pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,150,90,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(184,150,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,150,90,0); }
}
.nav-burger {
  display: none;
  background: transparent; border: 0;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 6px;
}
.nav-burger span {
  display: block; height: 1px; background: var(--off-white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger span:nth-child(1) { width: 24px; }
.nav-burger span:nth-child(2) { width: 18px; }
.nav-burger span:nth-child(3) { width: 24px; }

/* HERO — centered editorial, premium cinematic villa background */
.hero--cinema {
  height: 100vh; min-height: 720px;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 32px 120px;
  background: var(--black);
}

/* Sharp premium background — image poster shows instantly, video layers over it */
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img,
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  /* keep it bright, sharp & vivid — gentle vibrance, no muddy darkening */
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
  transform: scale(1.06);
  animation: heroSlowZoom 26s ease-in-out infinite alternate;
  will-change: transform;
}
/* Video sits above the poster image but stays hidden until it's actually playing,
   so the sharp responsive poster shows first and the video fades in cleanly. */
.hero-video { z-index: 1; opacity: 0; transition: opacity 0.7s ease; }
.hero-video.is-playing { opacity: 1; }
@keyframes heroSlowZoom {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(0, -1.2%, 0); }
}

/* Overlay 1 — diagonal gold-to-shadow wash (warmth + depth without killing brightness) */
.hero-wash {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(125deg,
    rgba(138,110,58,0.22) 0%,
    rgba(10,10,10,0.06) 42%,
    rgba(10,10,10,0.40) 100%);
}
/* Overlay 2 — soft center scrim so white text reads on a bright photo */
.hero-legibility {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse 78% 66% at 50% 48%,
      rgba(8,8,8,0.66) 0%, rgba(8,8,8,0.40) 42%, rgba(8,8,8,0.12) 68%, transparent 84%),
    linear-gradient(180deg,
      rgba(8,8,8,0.45) 0%, rgba(8,8,8,0.12) 26%, transparent 50%, rgba(8,8,8,0.34) 100%);
}
/* Overlay 3 — bottom fade into the dark stats bar directly below */
.hero-fade {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg,
    transparent 58%, rgba(10,10,10,0.55) 82%, var(--black) 100%);
}
/* Overlay 4 — fine film grain for an expensive editorial texture */
.hero-grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.4'/></svg>");
}

/* Thin-gold architectural frame */
.hero-frame {
  position: absolute; inset: 26px; z-index: 3; pointer-events: none;
  opacity: 0; animation: heroFrameIn 1.6s ease-out 0.5s forwards;
}
@keyframes heroFrameIn { to { opacity: 1; } }
.hf-corner {
  position: absolute; width: 24px; height: 24px;
  border-color: rgba(184,150,90,0.55);
}
.hf-tl { top: 0; left: 0;    border-top: 1px solid; border-left: 1px solid; }
.hf-tr { top: 0; right: 0;   border-top: 1px solid; border-right: 1px solid; }

/* Centered content column */
.hero-content {
  position: relative; z-index: 4;
  max-width: 980px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.hero-title { margin: 0; display: flex; flex-direction: column; align-items: center; }

/* Staggered hero entry */
.hero-stagger {
  opacity: 0;
  transform: translateY(26px);
  animation: heroIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--stagger) * 0.16s + 0.25s);
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Brand name — top, uppercase Montserrat, wide tracking, flanked by gold rules */
.hero-brand {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 30px;
  padding-left: 0.42em;
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}
.hero-brand-rule {
  width: clamp(24px, 5vw, 56px); height: 1px; flex: 0 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Giant elegant serif tagline — the centerpiece */
.hero-tagline {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(46px, 8vw, 120px);
  line-height: 1.02;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6), 0 1px 6px rgba(0,0,0,0.55);
}
.hero-tagline em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  margin-top: 0.04em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 6px rgba(0,0,0,0.5);
}

/* Supporting line under the tagline */
.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.8;
  letter-spacing: 0.4px;
  color: rgba(240,237,232,0.88);
  max-width: 560px;
  margin: 30px auto 40px;
  text-shadow: 0 1px 18px rgba(0,0,0,0.5);
}

/* Centered CTAs — give the ghost button a hairline so it reads on the bright villa */
.hero--cinema .hero-actions { justify-content: center; }
.hero--cinema .hero-actions .btn-ghost {
  border: 1px solid rgba(240,237,232,0.5);
  padding: 15px 30px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.hero--cinema .hero-actions .btn-ghost::after { content: none; }
.hero--cinema .hero-actions .btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184,150,90,0.1);
}

/* Reduced motion — hold still */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-img, .hero-video { animation: none; transform: scale(1.04); }
  .hero-stagger, .hero-frame { opacity: 1; transform: none; animation: none; }
}
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--black);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 500;
  padding: 16px 36px; text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184,150,90,0.25);
}
.btn-ghost {
  color: var(--off-white); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none;
  display: flex; align-items: center; gap: 12px;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost::after {
  content: '→'; font-size: 18px; transition: transform 0.2s;
}
.btn-ghost:hover::after { transform: translateX(4px); }


/* STATS — premium card layout */
.stats-bar {
  background: var(--off-black);
  padding: 36px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.stats-bar::before,
.stats-bar::after {
  content: '';
  position: absolute; left: 60px; right: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,90,0.25), transparent);
}
.stats-bar::before { top: 0; }
.stats-bar::after  { bottom: 0; }
.stat {
  text-align: center;
  padding: 26px 18px 22px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(184,150,90,0.08) 0%, rgba(20,20,20,0.55) 100%);
  border: 1px solid rgba(184,150,90,0.22);
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  overflow: hidden;
}
.stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}
.stat::after {
  content: '';
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 1px; background: var(--gold); opacity: 0.45;
}
.stat:hover {
  transform: translateY(-3px);
  border-color: rgba(184,150,90,0.55);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 48px; letter-spacing: 2px;
  color: var(--gold); line-height: 1;
  display: inline-block;
  text-shadow: 0 2px 18px rgba(184,150,90,0.18);
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 32px; color: var(--gold);
  margin-left: 2px;
  vertical-align: top;
  opacity: 0.85;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--silver);
  margin-top: 12px; padding-bottom: 14px;
}

/* SECTION COMMONS */
section { padding: 32px 60px; }
.section-eyebrow {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: 2px; line-height: 1;
  color: var(--off-white);
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 300;
  color: var(--gold);
}

/* SERVICES */
#services { background: var(--off-black); }
.services-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px; align-items: start;
  margin-top: 22px;
}
.services-intro p {
  font-size: 14px; line-height: 1.9; color: var(--silver);
  margin-top: 18px;
}
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.service-card {
  background: var(--charcoal);
  padding: 28px 26px 24px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
  font: inherit; color: inherit;
  text-align: left;
  border-left: 0; border-right: 0; border-top: 0;
  cursor: pointer;
  display: block;
  width: 100%;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--dark-grey); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-number {
  font-family: var(--font-display);
  font-size: 36px; color: rgba(184,150,90,0.15);
  line-height: 1; margin-bottom: 10px;
  transition: color 0.3s;
}
.service-card:hover .service-number { color: rgba(184,150,90,0.45); }
.service-name {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 400;
  color: var(--off-white); margin-bottom: 8px;
}
.service-desc {
  font-size: 13px; line-height: 1.7;
  color: var(--silver);
}
.service-more {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  transition: opacity 0.3s, gap 0.3s;
}
.service-more span { transition: transform 0.3s; }
.service-card:hover .service-more { opacity: 1; gap: 16px; }
.service-card:hover .service-more span { transform: translateX(4px); }
.service-card:focus-visible { outline: 1px solid var(--gold); outline-offset: -1px; }

/* PROJECTS */
#projects { background: var(--black); }
.projects-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 26px; gap: 24px; flex-wrap: wrap;
}
.view-all {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--gold-dark); padding-bottom: 4px;
  transition: gap 0.2s;
}
.view-all:hover { gap: 16px; }
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.project-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--charcoal);
  border: 0; padding: 0; margin: 0;
  font: inherit; color: inherit;
  text-align: left;
  cursor: pointer;
  display: block;
  width: 100%;
}
.project-feature { grid-row: auto; aspect-ratio: 4/3; }
.project-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s;
  filter: brightness(0.7) saturate(0.75);
}
.project-card:hover img { transform: scale(1.07); filter: brightness(0.55) saturate(0.55); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.25) 50%, transparent 80%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 22px 20px;
  transform: translateY(6px);
  transition: transform 0.4s;
}
.project-card:hover .project-overlay { transform: translateY(0); }
.project-tag {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.project-name {
  font-family: var(--font-serif);
  font-size: 21px; font-weight: 400;
  color: var(--off-white); margin-bottom: 2px;
  line-height: 1.2;
}
.project-location {
  font-size: 11px; color: var(--silver); letter-spacing: 1px;
}
.project-cta {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid var(--gold);
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(4px);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s, color 0.3s;
}
.project-card:hover .project-cta,
.project-card:focus-visible .project-cta {
  opacity: 1; transform: translateY(0);
}
.project-cta span {
  transition: transform 0.3s ease;
}
.project-card:hover .project-cta span { transform: translateX(5px); }
.project-card:focus-visible {
  outline: 2px solid var(--gold); outline-offset: -4px;
}

/* PROJECT LIGHTBOX MODAL */
.pmodal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pmodal.open { display: block; }
.pmodal.visible { opacity: 1; }
.pmodal-backdrop {
  position: absolute; inset: 0;
  background: rgba(6,6,6,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}
.pmodal-shell {
  position: relative;
  width: min(1400px, 94vw);
  height: min(860px, 92vh);
  margin: 4vh auto 0;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  background: #0d0d0d;
  border: 1px solid rgba(184,150,90,0.18);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.pmodal.visible .pmodal-shell { transform: translateY(0) scale(1); }

.pmodal-close {
  position: absolute; top: 22px; right: 22px;
  z-index: 5;
  width: 46px; height: 46px;
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(184,150,90,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.pmodal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}
.pmodal-close span {
  position: absolute; top: 50%; left: 50%;
  width: 18px; height: 1.5px;
  background: var(--off-white);
  transition: background 0.3s;
}
.pmodal-close:hover span { background: var(--black); }
.pmodal-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.pmodal-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.pmodal-stage {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.pmodal-hero {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s ease, transform 0.8s ease;
}
.pmodal-hero.loaded {
  opacity: 1; transform: scale(1);
}
/* Dot pagination — sits over the image, near the bottom */
.pmodal-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 999px;
  z-index: 2;
}
.pmodal-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}
.pmodal-dot:hover { background: rgba(255,255,255,0.6); }
.pmodal-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 5px;
}

.pmodal-info {
  padding: 64px 48px 48px;
  overflow-y: auto;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
}
.pmodal-info::-webkit-scrollbar { width: 6px; }
.pmodal-info::-webkit-scrollbar-track { background: transparent; }
.pmodal-info::-webkit-scrollbar-thumb {
  background: rgba(184,150,90,0.3); border-radius: 3px;
}
.pmodal-eyebrow {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.pmodal-eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.pmodal-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.6vw, 44px);
  letter-spacing: 2px; line-height: 1;
  color: var(--off-white);
  margin-bottom: 8px;
}
.pmodal-location {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--silver);
  margin-bottom: 28px;
}
.pmodal-desc {
  font-size: 14px; line-height: 1.9;
  color: var(--silver);
  margin-bottom: 28px;
}
.pmodal-specs {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.pmodal-specs li {
  display: flex; flex-direction: column; gap: 4px;
}
.pmodal-specs .spec-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
.pmodal-specs .spec-val {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--off-white);
}

body.modal-open { overflow: hidden; }

/* CONTACT MAP EMBED */
.contact-map {
  margin-top: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184,150,90,0.18);
  background: var(--charcoal);
}
.contact-map iframe {
  display: block;
  filter: grayscale(0.4) contrast(0.95) brightness(0.85);
  transition: filter 0.4s ease;
}
.contact-map:hover iframe { filter: grayscale(0) contrast(1) brightness(1); }
.contact-map-link {
  position: absolute; top: 14px; right: 14px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid rgba(184,150,90,0.35);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.contact-map-link:hover {
  background: var(--gold); color: var(--black);
  border-color: var(--gold);
}

/* SERVICES DETAIL MODAL */
.smodal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.smodal.open { display: block; }
.smodal.visible { opacity: 1; }
.smodal-backdrop {
  position: absolute; inset: 0;
  background: rgba(6,6,6,0.94);
  backdrop-filter: blur(14px);
  cursor: pointer;
}
.smodal-shell {
  position: relative;
  width: min(1100px, 94vw);
  max-height: 92vh;
  margin: 4vh auto 0;
  background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  border: 1px solid rgba(184,150,90,0.2);
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.smodal.visible .smodal-shell { transform: translateY(0) scale(1); }

.smodal-close {
  position: absolute; top: 20px; right: 20px;
  z-index: 5;
  width: 44px; height: 44px;
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(184,150,90,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.smodal-close:hover { background: var(--gold); transform: rotate(90deg); }
.smodal-close span {
  position: absolute; top: 50%; left: 50%;
  width: 16px; height: 1.5px;
  background: var(--off-white);
}
.smodal-close:hover span { background: var(--black); }
.smodal-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.smodal-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.smodal-hero {
  position: relative; background: var(--black);
  display: flex; align-items: flex-end;
  padding: 42px;
  min-height: 300px;
  overflow: hidden;
}
.smodal-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.8);
  z-index: 1;
}
.smodal-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 100%);
  z-index: 2;
}
.smodal-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 8vw, 140px);
  line-height: 1;
  color: var(--gold);
  opacity: 0.85;
  letter-spacing: 2px;
  position: relative;
  z-index: 3;
}

.smodal-body {
  padding: 48px 44px;
  overflow-y: auto;
  display: flex; flex-direction: column;
  max-height: 92vh;
}
.smodal-body::-webkit-scrollbar { width: 6px; }
.smodal-body::-webkit-scrollbar-thumb { background: rgba(184,150,90,0.3); border-radius: 3px; }
.smodal-eyebrow {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.smodal-eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.smodal-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 40px);
  letter-spacing: 2px; line-height: 1;
  color: var(--off-white);
  margin-bottom: 20px;
}
.smodal-desc {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.9;
  color: var(--silver);
  margin-bottom: 32px;
}
.smodal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.smodal-colh {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.smodal-process {
  list-style: none;
  counter-reset: step;
  display: flex; flex-direction: column; gap: 12px;
}
.smodal-process li {
  counter-increment: step;
  position: relative;
  padding-left: 32px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.5;
}
.smodal-process li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 2px;
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
}
.smodal-deliver {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.smodal-deliver li {
  position: relative;
  padding-left: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
}
.smodal-deliver li::before {
  content: '✦';
  position: absolute; left: 0; top: 1px;
  color: var(--gold);
  font-size: 10px;
}
.smodal-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.smodal-metaitem {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 14px;
  background: rgba(184,150,90,0.05);
  border-left: 2px solid var(--gold);
}
.smodal-metalabel {
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.smodal-metaval {
  font-family: var(--font-serif);
  font-size: 15px; color: var(--off-white);
  line-height: 1.3;
}
.smodal-cta {
  display: inline-flex; align-items: center; gap: 12px;
  align-self: flex-start; margin-top: auto;
  background: var(--gold); color: var(--black);
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600;
  padding: 16px 28px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.smodal-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184,150,90,0.3);
}
.smodal-cta span { transition: transform 0.3s; }
.smodal-cta:hover span { transform: translateX(4px); }

/* GALLERY LIGHTBOX (simple zoom view) */
.gmodal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gmodal.open { display: flex; align-items: center; justify-content: center; }
.gmodal.visible { opacity: 1; }
.gmodal-backdrop {
  position: absolute; inset: 0;
  background: rgba(4,4,4,0.96);
  backdrop-filter: blur(16px);
  cursor: pointer;
}
.gmodal-close {
  position: absolute; top: 24px; right: 24px;
  z-index: 5;
  width: 46px; height: 46px;
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(184,150,90,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.gmodal-close:hover { background: var(--gold); transform: rotate(90deg); }
.gmodal-close span {
  position: absolute; top: 50%; left: 50%;
  width: 18px; height: 1.5px;
  background: var(--off-white);
}
.gmodal-close:hover span { background: var(--black); }
.gmodal-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.gmodal-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.gmodal-nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(10,10,10,0.65);
  border: 1px solid rgba(184,150,90,0.25);
  color: var(--off-white);
  font-family: var(--font-serif);
  font-size: 28px; line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.gmodal-nav:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.gmodal-nav.prev { left: 24px; }
.gmodal-nav.next { right: 24px; }

.gmodal-stage {
  position: relative;
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
  gap: 18px;
  z-index: 2;
  margin: 0;
}
.gmodal-image {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.5s ease, transform 0.6s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.gmodal-image.loaded { opacity: 1; transform: scale(1); }
.gmodal-caption {
  text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.gmodal-tag {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
}
.gmodal-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--off-white);
}
.gmodal-counter {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 3px;
  color: var(--silver);
  margin-top: 4px;
}

/* WHATSAPP FLOATING BUTTON */
.wa-float {
  position: fixed;
  right: 28px; bottom: 28px;
  width: 62px; height: 62px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  z-index: 900;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35),
              0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.06);
  background: #1ebb5a;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5),
              0 6px 16px rgba(0, 0, 0, 0.35);
}
.wa-float:active { transform: translateY(-2px) scale(1.02); }
.wa-icon {
  width: 30px; height: 30px;
  position: relative; z-index: 2;
}
.wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: waPulse 2.2s ease-out infinite;
  z-index: 1;
}
.wa-float::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: waHalo 4s ease-out infinite;
  animation-delay: 1.1s;
  z-index: 0;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.8); opacity: 0;    }
  100% { transform: scale(1.8); opacity: 0;    }
}
@keyframes waHalo {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(2.2);  opacity: 0;   }
  100% { transform: scale(2.2);  opacity: 0;   }
}
.wa-tooltip {
  position: absolute; right: calc(100% + 14px); top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--off-black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  white-space: nowrap;
  padding: 10px 16px;
  border-left: 2px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.wa-tooltip::after {
  content: '';
  position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--off-black);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Hide tooltip on touch devices; dim the pulse when modal is open */
body.modal-open .wa-float { opacity: 0; pointer-events: none; transform: scale(0.8); }

@media (max-width: 720px) {
  .wa-float { right: 18px; bottom: 18px; width: 56px; height: 56px; }
  .wa-icon { width: 26px; height: 26px; }
  .wa-tooltip { display: none; }
}

/* COMMITMENTS / THE MALVEN WAY */
#commitments {
  background: var(--black);
  position: relative;
}
#commitments::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  opacity: 0.5;
}

.commit-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}
.commit-header .section-eyebrow {
  justify-content: center;
}
.commit-header .section-eyebrow::before {
  /* keep a single gold hairline on the LEFT, matching the rest of the site */
  display: block;
  position: static;
}
.commit-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--silver);
  margin-top: 18px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(184,150,90,0.12);
  border: 1px solid rgba(184,150,90,0.12);
}
.commit-card {
  background: var(--off-black);
  padding: 28px 26px 26px;
  position: relative;
  transition: background 0.4s ease, transform 0.4s ease;
  display: flex; flex-direction: column;
}
.commit-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.commit-card:hover {
  background: #131313;
  transform: translateY(-6px);
}
.commit-card:hover::before { width: 100%; }

.commit-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: rgba(184,150,90,0.1);
  letter-spacing: 2px;
  line-height: 1;
  position: absolute;
  top: 18px; right: 20px;
  transition: color 0.4s ease;
}
.commit-card:hover .commit-num { color: rgba(184,150,90,0.3); }

.commit-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--gold);
  border: 1px solid rgba(184,150,90,0.35);
  margin-bottom: 16px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s ease;
}
.commit-card:hover .commit-icon {
  background: var(--gold);
  color: var(--black);
  transform: rotate(-8deg) scale(1.05);
}

.commit-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--off-white);
  margin-bottom: 10px;
  max-width: 280px;
}

.commit-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--silver);
}

.commit-cta {
  margin-top: 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 22px;
}
.commit-cta-line {
  width: 1px; height: 40px;
  background: var(--gold);
  opacity: 0.4;
}
.commit-cta-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--off-white);
  max-width: 520px;
  line-height: 1.5;
}
.commit-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 36px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.commit-cta-btn span { transition: transform 0.3s; }
.commit-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(184,150,90,0.3);
}
.commit-cta-btn:hover span { transform: translateX(5px); }

/* LIVE PROJECTS */
#live-projects { background: var(--off-black); }
.live-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 20px; gap: 24px; flex-wrap: wrap;
}
.live-header > div:first-child { max-width: 640px; }
.live-sub {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.9;
  color: var(--silver);
  margin-top: 22px;
  max-width: 560px;
}
.live-badge {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 22px 16px 20px;
  background: rgba(184,150,90,0.08);
  border: 1px solid rgba(184,150,90,0.3);
  border-left-width: 3px;
}
.live-badge-text {
  display: flex; flex-direction: column; gap: 2px;
}
.live-badge-label {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.live-badge-num {
  font-family: var(--font-display);
  font-size: 32px; letter-spacing: 2px;
  color: var(--off-white); line-height: 1;
}

.live-dot {
  position: relative;
  width: 12px; height: 12px;
  display: inline-block;
  flex-shrink: 0;
}
.live-dot > span {
  position: absolute; inset: 0;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74,222,128,0.7);
}
.live-dot::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #4ade80;
  opacity: 0.55;
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  80%  { transform: scale(2.4); opacity: 0;    }
  100% { transform: scale(2.4); opacity: 0;    }
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(184,150,90,0.1);
}
.live-card {
  background: var(--charcoal);
  padding: 24px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.35s ease;
  border-bottom: 2px solid transparent;
}
.live-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s ease;
}
.live-card:hover {
  background: var(--dark-grey);
  transform: translateY(-4px);
}
.live-card:hover::before { transform: scaleX(1); }

.live-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 6px;
}
.live-indicator {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600;
  color: #4ade80;
  padding: 6px 12px;
  border: 1px solid rgba(74,222,128,0.35);
  background: rgba(74,222,128,0.08);
  border-radius: 2px;
}
.live-indicator > span {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(74,222,128,0.7);
  animation: liveBlink 1.6s ease-in-out infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.live-count {
  font-family: var(--font-display);
  font-size: 46px; letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
  transition: color 0.3s;
}
.live-card:hover .live-count { color: var(--gold-light); }

.live-place {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 400;
  color: var(--off-white);
  margin: 4px 0 2px;
  line-height: 1.1;
}
.live-region {
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--silver);
  line-height: 1.5;
}
.live-types {
  list-style: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 4px;
}
.live-types li {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--silver);
  line-height: 1.5;
  position: relative;
  padding-left: 14px;
}
.live-types li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 1px;
  background: var(--gold);
}

/* GALLERY */
#gallery { background: var(--off-black); }
.gallery-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--charcoal);
  cursor: pointer;
  border: 0; padding: 0; margin: 0;
  font: inherit; color: inherit;
  display: block; width: 100%;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s;
  filter: brightness(0.8) saturate(0.8);
  animation: kenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}
.gallery-item:nth-child(2) img { animation-delay: -3s; animation-duration: 20s; }
.gallery-item:nth-child(3) img { animation-delay: -6s; animation-duration: 22s; }
.gallery-item:nth-child(4) img { animation-delay: -9s; animation-duration: 19s; }
.gallery-item:nth-child(5) img { animation-delay: -12s; animation-duration: 21s; }
.gallery-item:nth-child(6) img { animation-delay: -15s; animation-duration: 23s; }
@keyframes kenBurns {
  from { transform: scale(1.0) translate(0, 0); }
  to   { transform: scale(1.1) translate(-2%, -1%); }
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.65) saturate(0.75);
  animation-play-state: paused;
}
.gallery-item .cap-tag,
.gallery-item .cap-title {
  position: absolute; left: 26px; right: 26px;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(6px);
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .cap-tag,
.gallery-item:hover .cap-title { opacity: 1; transform: translateY(0); }
.cap-tag {
  bottom: 62px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.cap-title {
  bottom: 26px;
  font-family: var(--font-serif);
  font-size: 20px; color: var(--off-white);
  display: block;
}
.gallery-zoom {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(184,150,90,0.25);
  color: var(--gold);
  font-size: 16px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  z-index: 3;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }
.gallery-item:hover .gallery-zoom:hover { background: var(--gold); color: var(--black); }
.gallery-item:focus-visible { outline: 2px solid var(--gold); outline-offset: -4px; }

/* Category count badge — signals these are categories, not single images */
.gallery-item .cap-count {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(184,150,90,0.35);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-item .cap-count::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(184,150,90,0.5);
  animation: galleryPulse 2s ease-out infinite;
}
@keyframes galleryPulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,150,90,0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(184,150,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,150,90,0); }
}

/* Gallery modal dots — appear under the hero image */
.gmodal-dots {
  position: absolute;
  left: 50%; bottom: 70px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  z-index: 4;
}
.gmodal-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.gmodal-dots button:hover { background: rgba(255,255,255,0.6); }
.gmodal-dots button.active {
  background: var(--gold);
  width: 22px;
  border-radius: 5px;
}

/* === 360° VIRTUAL TOUR === */
#virtual-tour {
  background: var(--off-black);
}
.vt-header {
  max-width: 760px;
  margin: 0 0 24px;
}
.vt-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--silver);
  margin-top: 12px;
  line-height: 1.6;
}
.vt-stage {
  position: relative;
  width: 100%;
  height: 520px;
  background: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  border: 1px solid rgba(184,150,90,0.18);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: none;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.vt-stage:active { cursor: grabbing; }
.vt-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}

/* Loading spinner */
.vt-loader {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 4;
  background: rgba(8,8,8,0.85);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.vt-loader.hide { opacity: 0; }
.vt-loader-ring {
  width: 48px; height: 48px;
  border: 2px solid rgba(184,150,90,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: vtSpin 0.9s linear infinite;
}
@keyframes vtSpin { to { transform: rotate(360deg); } }
.vt-loader-text {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
}

/* First-time guide overlay — dark, see-through */
.vt-guide {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.18) 0%, rgba(10,10,10,0.42) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.vt-guide.show {
  opacity: 1;
  pointer-events: auto;
}
.vt-guide.hide {
  opacity: 0 !important;
  pointer-events: none;
}
.vt-guide-card {
  max-width: 560px;
  width: 100%;
  padding: 28px 32px 26px;
  background: rgba(15,15,15,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(184,150,90,0.4);
  border-top: 2px solid var(--gold);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  animation: vtGuideRise 0.6s cubic-bezier(0.2,0.8,0.2,1) both;
}
@keyframes vtGuideRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vt-guide-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.vt-guide-title {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.2;
  color: var(--off-white);
  margin: 0 0 22px;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.vt-guide-title em {
  font-style: italic;
  color: var(--gold);
}
.vt-guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.vt-guide-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 8px;
  background: rgba(184,150,90,0.06);
  border: 1px solid rgba(184,150,90,0.2);
}
.vt-guide-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184,150,90,0.14);
  color: var(--gold);
}
.vt-guide-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-body);
}
.vt-guide-text strong {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  font-weight: 500;
}
.vt-guide-text span {
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 0.5px;
}
.vt-guide-btn {
  display: inline-block;
  padding: 11px 26px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.vt-guide-btn:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-1px);
}

/* Re-open helper — small floating button visible after dismissal */
.vt-help-btn {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  width: 34px; height: 34px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(184,150,90,0.35);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.vt-help-btn.show { display: inline-flex; }
.vt-help-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* Fullscreen toggle — bottom right, opens edge-to-edge immersive view */
.vt-fs-btn {
  position: absolute;
  right: 18px; bottom: 90px;
  z-index: 3;
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(184,150,90,0.35);
  color: var(--gold);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.vt-fs-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}
.vt-fs-icon-contract { display: none; }
.vt-stage:fullscreen .vt-fs-icon-expand,
.vt-stage:-webkit-full-screen .vt-fs-icon-expand { display: none; }
.vt-stage:fullscreen .vt-fs-icon-contract,
.vt-stage:-webkit-full-screen .vt-fs-icon-contract { display: inline-block; }

/* Stage at fullscreen — true edge-to-edge */
.vt-stage:fullscreen,
.vt-stage:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: #000;
}
.vt-stage:fullscreen .vt-room-label,
.vt-stage:-webkit-full-screen .vt-room-label {
  left: 26px; bottom: 26px;
  padding: 12px 20px 12px 14px;
}
.vt-stage:fullscreen .vt-room-num,
.vt-stage:-webkit-full-screen .vt-room-num { font-size: 28px; }
.vt-stage:fullscreen .vt-room-name,
.vt-stage:-webkit-full-screen .vt-room-name { font-size: 18px; }
.vt-stage:fullscreen .vt-fs-btn,
.vt-stage:-webkit-full-screen .vt-fs-btn,
.vt-stage:fullscreen .vt-fov,
.vt-stage:-webkit-full-screen .vt-fov,
.vt-stage:fullscreen .vt-help-btn,
.vt-stage:-webkit-full-screen .vt-help-btn {
  width: 44px; height: 44px;
}
.vt-stage:fullscreen .vt-fs-btn,
.vt-stage:-webkit-full-screen .vt-fs-btn { right: 24px; bottom: 110px; }
.vt-stage:fullscreen .vt-fov,
.vt-stage:-webkit-full-screen .vt-fov { right: 24px; bottom: 24px; }
.vt-stage:fullscreen .vt-fov-btn,
.vt-stage:-webkit-full-screen .vt-fov-btn { width: 44px; height: 44px; font-size: 22px; }
.vt-stage:fullscreen .vt-help-btn,
.vt-stage:-webkit-full-screen .vt-help-btn { top: 24px; left: 24px; }

/* Zoom controls */
.vt-fov {
  position: absolute;
  right: 18px; bottom: 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vt-fov-btn {
  width: 38px; height: 38px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(184,150,90,0.35);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.vt-fov-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}

/* Active room label */
.vt-room-label {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(6px);
  border-left: 2px solid var(--gold);
  font-family: var(--font-body);
}
.vt-room-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
}
.vt-room-name {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--off-white);
  font-style: italic;
}

/* Room switcher row */
.vt-rooms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.vt-room {
  background: var(--charcoal);
  border: 1px solid rgba(184,150,90,0.15);
  padding: 14px 14px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.vt-room:hover {
  background: var(--dark-grey);
  border-color: rgba(184,150,90,0.4);
  transform: translateY(-2px);
}
.vt-room.active {
  background: linear-gradient(180deg, rgba(184,150,90,0.12) 0%, var(--charcoal) 100%);
  border-color: var(--gold);
}
.vt-room-i {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 1.5px;
  line-height: 1;
}
.vt-room-t {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--off-white);
  font-weight: 500;
}

@media (max-width: 720px) {
  .vt-stage { height: 360px; }
  .vt-rooms { grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 8px; }
  .vt-room { padding: 10px 10px; }
  .vt-room-t { font-size: 11px; letter-spacing: 1px; }
  .vt-room-i { font-size: 12px; }
  .vt-fov-btn { width: 34px; height: 34px; font-size: 16px; }
  .vt-room-label { padding: 8px 12px 8px 10px; }
  .vt-room-num { font-size: 18px; }
  .vt-room-name { font-size: 14px; }
  .vt-guide { padding: 16px; }
  .vt-guide-card { padding: 22px 18px 20px; }
  .vt-guide-title { font-size: 20px; margin-bottom: 18px; }
  .vt-guide-steps { gap: 8px; margin-bottom: 18px; }
  .vt-guide-step { padding: 10px 4px; gap: 6px; }
  .vt-guide-icon { width: 36px; height: 36px; }
  .vt-guide-icon svg { width: 22px; height: 22px; }
  .vt-guide-text strong { font-size: 10px; letter-spacing: 1.4px; }
  .vt-guide-text span { font-size: 10px; }
  .vt-guide-btn { padding: 10px 20px; font-size: 10px; letter-spacing: 2px; }
  .vt-help-btn { width: 30px; height: 30px; font-size: 12px; }
}

/* FAQ — accordion section, matches the dark-gold aesthetic */
#faq {
  background: linear-gradient(180deg, var(--black) 0%, var(--off-black) 100%);
}
.faq-header {
  text-align: center;
  margin-bottom: 32px;
}
.faq-header .section-eyebrow {
  justify-content: center;
}
.faq-header .section-eyebrow::before { display: none; }
.faq-sub {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--silver);
  max-width: 620px;
  margin: 14px auto 0;
  line-height: 1.55;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: rgba(20,20,20,0.6);
  border: 1px solid rgba(184,150,90,0.16);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item[open] {
  border-color: rgba(184,150,90,0.4);
  background: rgba(184,150,90,0.04);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item p {
  padding: 0 22px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
  margin: 0;
}
.faq-item p a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,150,90,0.3);
  transition: border-color 0.25s ease;
}
.faq-item p a:hover { border-color: var(--gold); }
.faq-item p strong {
  color: var(--off-white);
  font-weight: 500;
}

/* INSPIRATIONS — curated stock walkthroughs */
#inspirations {
  background: linear-gradient(180deg, var(--off-black) 0%, var(--black) 100%);
}
.insp-header {
  text-align: center;
  margin-bottom: 28px;
}
.insp-header .section-eyebrow {
  justify-content: center;
}
.insp-header .section-eyebrow::before { display: none; }
.insp-sub {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--silver);
  max-width: 640px;
  margin: 14px auto 0;
  line-height: 1.55;
}
.insp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.insp-card {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(184,150,90,0.18);
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.35s ease;
}
.insp-card:hover {
  border-color: rgba(184,150,90,0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.42);
}
.insp-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
  object-fit: cover;
}
.insp-cap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: rgba(10,10,10,0.6);
  border-top: 1px solid rgba(184,150,90,0.12);
  gap: 10px;
}
.insp-cap-tag {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.insp-cap-credit {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--light-grey);
}
.insp-cap-credit a {
  color: var(--silver);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,150,90,0.2);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.insp-cap-credit a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.insp-disclaimer {
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--mid-grey);
  line-height: 1.7;
}
.insp-disclaimer a {
  color: var(--silver);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,150,90,0.3);
  transition: color 0.25s ease;
}
.insp-disclaimer a:hover { color: var(--gold); }

/* TESTIMONIALS */
#testimonials { background: var(--off-black); }
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.testimonials-nav {
  display: flex;
  gap: 12px;
}
.testimonial-nav {
  width: 48px; height: 48px;
  background: transparent;
  border: 1px solid rgba(184,150,90,0.35);
  color: var(--off-white);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.testimonial-nav:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.testimonial-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.testimonials-wrap {
  position: relative;
  margin: 0 -60px;            /* bleed to edges for immersive scroll feel */
  padding: 0 60px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--charcoal);
  padding: 30px 28px 24px;
  border-left: 2px solid var(--gold);
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex; flex-direction: column;
  min-height: 220px;
}
.testimonial:hover {
  transform: translateY(-6px);
  background: var(--dark-grey);
}
.testimonial::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 130px; line-height: 1;
  color: rgba(184,150,90,0.14);
  position: absolute; top: 8px; right: 24px;
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.testimonial-stars span {
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(184,150,90,0.3);
}

/* === Testimonial author row (avatar + name) === */
.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-top: auto;
}
.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(184,150,90,0.3);
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 16px; font-style: italic;
  line-height: 1.8; color: var(--off-white);
  margin-bottom: 24px;
  position: relative; z-index: 1;
  flex: 1;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.testimonial-company {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--silver);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}
.testimonial-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(184,150,90,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-dots button:hover {
  background: rgba(184,150,90,0.6);
  transform: scale(1.2);
}
.testimonial-dots button.active {
  background: var(--gold);
  transform: scale(1.4);
  box-shadow: 0 0 0 3px rgba(184,150,90,0.18);
}

/* CONTACT */
#contact { background: var(--black); }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 56px; margin-top: 24px;
}
.contact-info {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.contact-info-item {
  display: block;
  padding: 16px 18px;
  border-left: 2px solid rgba(184,150,90,0.25);
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, padding-left 0.3s;
}
.contact-info-item:not(.static):hover {
  border-left-color: var(--gold);
  background: rgba(184,150,90,0.06);
  transform: translateX(4px);
}
.contact-info-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
  text-decoration: none;
}
.contact-info-val {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--off-white);
  text-decoration: none;
  line-height: 1.4;
}
/* ENQUIRY FORM — premium, minimal, animated focus */
/* ========= ENQUIRY FORM v3 — floating labels, editorial luxury ========= */
.contact-form {
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
  padding: 30px 32px 26px;
  background:
    radial-gradient(circle at top right, rgba(184,150,90,0.07) 0%, transparent 55%),
    linear-gradient(180deg, #151515 0%, #0c0c0c 100%);
  border: 1px solid rgba(184,150,90,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* Decorative corner tick — top-left */
.contact-form::before {
  content: '';
  position: absolute;
  top: 18px; left: 18px;
  width: 20px; height: 20px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.6;
  pointer-events: none;
}
/* Mirror — bottom-right */
.contact-form::after {
  content: '';
  position: absolute;
  bottom: 18px; right: 18px;
  width: 20px; height: 20px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.6;
  pointer-events: none;
}

/* Header */
.contact-form .form-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--off-white);
  margin: 0 0 4px;
  line-height: 1.1;
  letter-spacing: 0.2px;
}
.contact-form .form-heading::before { content: none; }
.contact-form .form-subheading {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 4px;
}

/* Two-column row on desktop */
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}

/* === FLOATING LABEL FIELDS === */
.form-field {
  position: relative;
  display: block;
}

/* Inputs & textarea */
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  color: var(--off-white);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 16px 2px 7px;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: transparent; /* hide the space placeholder */
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-bottom-color: rgba(184,150,90,0.35);
}

/* Animated gold bottom bar (scales from centre) */
.form-field::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.form-field:focus-within::after { transform: scaleX(1); }

/* The floating label */
.form-field label {
  position: absolute;
  left: 2px;
  top: 16px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: rgba(200,200,200,0.55);
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
              color 0.28s ease;
}

/* Floated state — label moves up + shrinks + goes gold */
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-15px) scale(0.7);
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
}

/* Select — different trick since it doesn't support :placeholder-shown */
.form-field-select { padding-top: 0; }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  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 fill='none' stroke='%23b8965a' stroke-width='1.5' d='M1 1 L6 6 L11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 24px;
  color: var(--off-white);
}
/* Hide label when select is focused or has value selected */
.form-field-select label {
  top: 16px;
}
.form-field-select select:focus ~ label,
.form-field-select select:valid ~ label {
  transform: translateY(-15px) scale(0.7);
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
}
.form-field select option {
  background: #121212;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px;
}

/* Textarea — larger, behaves same as input */
.form-field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--font-serif);
  line-height: 1.55;
}

/* === SUBMIT === */
.form-submit {
  position: relative;
  align-self: flex-start;
  margin-top: 10px;
  padding: 16px 38px 16px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.25s ease, padding 0.3s ease;
}
.form-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}
.form-submit:hover::before { transform: translateX(100%); }
.form-submit:hover {
  transform: translateY(-2px);
  padding-right: 42px;
  box-shadow: 0 14px 32px rgba(184,150,90,0.35);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Privacy note */
.form-privacy {
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 0.3px;
  margin: 6px 0 0;
  line-height: 1.7;
  padding-top: 14px;
  border-top: 1px solid rgba(184,150,90,0.12);
}
.form-privacy strong {
  color: var(--gold);
  font-weight: 500;
}

/* === Submission states === */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.contact-form.sending .form-fields {
  opacity: 0.55;
  pointer-events: none;
}

/* === Thank-you success block === */
.form-success {
  display: none;
  text-align: center;
  padding: 24px 8px 16px;
  animation: formSuccessIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.contact-form.sent .form-fields { display: none; }
.contact-form.sent .form-success { display: block; }

@keyframes formSuccessIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  color: var(--gold);
}
.form-success-icon svg {
  width: 100%; height: 100%;
  display: block;
}
.form-success-icon svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: formSuccessCheck 0.9s 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes formSuccessCheck {
  to { stroke-dashoffset: 0; }
}

.form-success-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.form-success-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 44px);
  letter-spacing: 2px;
  color: var(--off-white);
  margin: 0 0 16px;
  line-height: 1;
}
.form-success-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 0.88em;
  letter-spacing: 0;
}
.form-success-text {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--silver);
  max-width: 380px;
  margin: 0 auto 24px;
}
.form-success-text strong {
  color: var(--off-white);
  font-weight: 500;
}
/* Continue on WhatsApp — appears on the success screen with the enquiry pre-filled */
.form-success-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 24px;
  padding: 13px 26px;
  background: #25d366;
  color: #062e16;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(37,211,102,0.22);
}
.form-success-wa:hover {
  background: #1ebb5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.32);
}
.form-success-wa svg { flex-shrink: 0; }
.form-success-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px dashed rgba(184,150,90,0.18);
  margin-bottom: 22px;
}
.form-success-meta > span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--silver);
}
.form-success-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.form-success-links a {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}
.form-success-links a:hover { color: var(--gold-light); }
.form-success-links span {
  color: rgba(184,150,90,0.4);
}
.form-success-reset {
  background: transparent;
  border: 1px solid rgba(184,150,90,0.45);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.form-success-reset:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.form-toast {
  position: fixed; top: 110px; right: 30px;
  background: var(--gold); color: var(--black);
  padding: 18px 28px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500;
  z-index: 10000;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transform: translateX(400px);
  transition: transform 0.4s ease;
}
.form-toast.show { transform: translateX(0); }

/* FOOTER */
footer {
  background: var(--off-black);
  border-top: 1px solid rgba(184,150,90,0.18);
  padding: 40px 60px 24px;
  color: var(--silver);
}
footer a { color: inherit; text-decoration: none; }
footer a:visited { color: inherit; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}

.footer-brand-col {
  display: flex; flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  max-width: 340px;
}
.footer-logo-img { height: 100px; width: auto; }
.footer-blurb {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.85;
  color: var(--silver);
}

.footer-col { display: flex; flex-direction: column; gap: 18px; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  position: relative;
  padding-bottom: 14px;
}
.footer-heading::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 24px; height: 1px;
  background: var(--gold);
}
.footer-menu {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 0; margin: 0;
}
.footer-menu li { line-height: 1; }
.footer-menu a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--silver);
  display: inline-block;
  position: relative;
  padding-left: 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-menu a::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width 0.3s ease;
}
.footer-menu a:hover {
  color: var(--gold);
  padding-left: 16px;
}
.footer-menu a:hover::before { width: 10px; }

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,90,0.25), transparent);
  margin: 24px 0 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--mid-grey);
}
.footer-credit {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--silver);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-mark {
  font-style: normal;
  color: var(--gold);
  font-size: 12px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  nav.scrolled { padding: 12px 32px; }
  /* Backdrop scrim — covers the page behind the drawer */
  body.nav-open::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh;
    height: 100dvh;
    background: rgba(8,8,8,0.78);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99;
    animation: navScrimIn 0.3s ease both;
  }
  @keyframes navScrimIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  body.nav-open { overflow: hidden; }
  .nav-links {
    position: fixed; top: 0; left: 0; bottom: 0;
    height: 100vh;          /* fallback */
    height: 100dvh;          /* dynamic viewport — survives mobile address bar resize */
    width: 78%; max-width: 380px;
    background: #000;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 92px 36px calc(40px + env(safe-area-inset-bottom));
    gap: 8px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
    border-right: 1px solid rgba(184,150,90,0.18);
    z-index: 105;
    box-shadow: 20px 0 40px rgba(0,0,0,0.4);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 4px;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--off-white);
    border-bottom: 1px solid rgba(184,150,90,0.12);
  }
  .nav-links a::after { display: none; }
  .nav-links a.nav-link-360 {
    margin-top: 14px;
    padding: 12px 16px;
    border: 1px solid rgba(184,150,90,0.45);
    border-bottom: 1px solid rgba(184,150,90,0.45);
    background: rgba(184,150,90,0.08);
    color: var(--gold);
    text-align: center;
    justify-content: center;
  }
  /* Burger on the left to match the left-slide drawer; logo pushed right */
  .nav-burger { display: flex; z-index: 110; order: -1; }
  .nav-logo-wrap { margin-left: auto; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  section { padding: 28px 32px; }
  .stats-bar { padding: 32px; }
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .live-grid { grid-template-columns: 1fr 1fr; }
  .live-header { flex-direction: column; align-items: flex-start; }
  .commit-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-wrap { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .insp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  footer { padding: 56px 32px 28px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: 520px;
  }
  .footer-logo-img { height: 88px; }
  .footer-divider { margin: 44px 0 24px; }
}

@media (max-width: 720px) {
  nav { padding: 14px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-logo-img { height: 38px; max-width: 60vw; object-fit: contain; }
  nav.scrolled .nav-logo-img { height: 34px; }
  /* Half-window drawer on phones — backdrop scrim dims the rest */
  .nav-links {
    width: 60%; max-width: 280px;
    padding: 84px 22px 28px;
    gap: 2px;
  }
  .nav-links a { padding: 13px 4px; font-size: 12px; letter-spacing: 3.5px; }
  .nav-links a.nav-link-360 { margin-top: 14px; padding: 12px 14px; font-size: 11px; }

  section { padding: 22px 14px; }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 14px; padding: 28px 24px;
  }
  .stats-bar::before, .stats-bar::after { left: 24px; right: 24px; }
  .stat { padding: 22px 14px 20px; }
  .stat-number { font-size: 42px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .live-grid { grid-template-columns: 1fr; }
  .commit-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .insp-grid { grid-template-columns: 1fr; gap: 10px; }
  .insp-sub { font-size: 13px; max-width: 100%; padding: 0 4px; }
  .insp-disclaimer { font-size: 10px; padding: 0 6px; }
  .insp-cap { padding: 10px 12px; }
  .insp-cap-tag { font-size: 10px; letter-spacing: 1.5px; }
  .insp-cap-credit { font-size: 9px; }
  /* FAQ compact on phones */
  .faq-sub { font-size: 13px; max-width: 100%; padding: 0 4px; }
  .faq-item summary { padding: 14px 16px; font-size: 15px; }
  .faq-item summary::after { font-size: 18px; }
  .faq-item p { padding: 0 16px 14px; font-size: 13px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial::before { font-size: 90px; }
  .projects-masonry { grid-template-columns: 1fr; }
  .project-feature { grid-row: auto; aspect-ratio: 4/3; }
  .projects-header { flex-direction: column; align-items: flex-start; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand-col { grid-column: auto; max-width: 100%; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 10px; }

  .pmodal-shell {
    grid-template-columns: 1fr;
    grid-template-rows: 45vh 1fr;
    height: 96vh;
    margin: 2vh auto 0;
    width: 96vw;
  }
  .pmodal-info { padding: 32px 24px; }
  .pmodal-dots { bottom: 12px; gap: 10px; padding: 8px 12px; }
  .pmodal-dot { width: 12px; height: 12px; }
  .pmodal-dot.active { width: 26px; height: 12px; }

  .smodal-shell {
    grid-template-columns: 1fr;
    grid-template-rows: 30vh 1fr;
    max-height: 94vh;
    width: 96vw;
    margin: 3vh auto 0;
  }
  .smodal-body { padding: 32px 24px; }
  .smodal-grid { grid-template-columns: 1fr; gap: 24px; }
  .smodal-meta { grid-template-columns: 1fr 1fr; gap: 12px; }

  .contact-form { padding: 32px 24px; gap: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 22px; }

  /* === MOBILE POLISH (phones) === */

  /* Hero — centered, premium villa stays sharp; stronger center scrim for legibility */
  .hero--cinema {
    min-height: 560px; height: 100svh;
    padding: 104px 20px 84px;
  }
  .hero-bg-img, .hero-video { object-position: center 44%; transform: scale(1.08); animation: none; }
  .hero-legibility {
    background:
      radial-gradient(ellipse 110% 62% at 50% 46%,
        rgba(10,10,10,0.56) 0%, rgba(10,10,10,0.28) 52%, transparent 84%),
      linear-gradient(180deg, rgba(10,10,10,0.40) 0%, transparent 32%, rgba(10,10,10,0.30) 100%);
  }
  .hero-fade {
    background: linear-gradient(180deg, transparent 52%, rgba(10,10,10,0.6) 80%, var(--black) 100%);
  }
  .hero-frame { inset: 16px; }
  .hf-corner { width: 16px; height: 16px; }
  .hero-content { max-width: 100%; }
  .hero-brand {
    gap: 12px; font-size: 10px; letter-spacing: 0.30em;
    padding-left: 0.30em; margin-bottom: 22px;
  }
  .hero-brand-rule { width: 20px; }
  .hero-tagline { font-size: clamp(36px, 11vw, 54px); line-height: 1.04; }
  .hero-sub { font-size: 13.5px; max-width: 360px; margin: 22px auto 30px; line-height: 1.7; }
  .hero-actions { gap: 14px; width: 100%; flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost {
    width: 100%; max-width: 300px; text-align: center; justify-content: center;
    min-height: 46px; display: flex; align-items: center;
  }
  .btn-primary { padding: 12px 22px; font-size: 10px; letter-spacing: 2.5px; }
  .btn-ghost { font-size: 10px; letter-spacing: 2.5px; }
  .btn-ghost::after { font-size: 14px; }

  /* Stats — compact card grid */
  .stats-bar { padding: 18px 14px; gap: 10px; }
  .stats-bar::before, .stats-bar::after { left: 14px; right: 14px; }
  .stat { padding: 18px 10px 16px; }
  .stat::after { bottom: 12px; width: 18px; }
  .stat-number { font-size: 30px; }
  .stat-suffix { font-size: 22px; }
  .stat-label { font-size: 9px; letter-spacing: 1.6px; margin-top: 8px; padding-bottom: 8px; }

  /* Section titles — tighter */
  .section-title { font-size: 30px; letter-spacing: 1px; line-height: 1; }
  .section-eyebrow { font-size: 9px; letter-spacing: 2.5px; gap: 8px; margin-bottom: 12px; }
  .section-eyebrow::before { width: 18px; }

  /* Services — 2-col grid on mobile, very compact cards */
  .services-layout { gap: 18px; margin-top: 14px; }
  .services-grid { grid-template-columns: 1fr 1fr !important; gap: 4px; }
  .service-card { padding: 14px 12px 14px; }
  .service-number { font-size: 22px; margin-bottom: 4px; }
  .service-name { font-size: 14px; margin-bottom: 6px; line-height: 1.25; }
  .service-desc { font-size: 11.5px; line-height: 1.55; }
  .service-more { margin-top: 8px; font-size: 9px; letter-spacing: 1.8px; gap: 6px; }
  .service-more span { font-size: 11px; }

  /* Projects — single-column cards + smaller CTA */
  .projects-header { margin-bottom: 14px; gap: 10px; }
  .projects-masonry { gap: 6px; }
  .project-card { aspect-ratio: 16/11; }
  .project-overlay { padding: 14px 14px 12px; transform: none; }
  .project-name { font-size: 18px; }
  .project-location { font-size: 10.5px; }
  .project-tag { font-size: 9px; margin-bottom: 6px; }
  .project-cta { opacity: 1; transform: none; padding: 5px 10px; font-size: 9px; margin-top: 8px; }

  /* Live — 2 cols on phone for density */
  .live-header { margin-bottom: 14px; }
  .live-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .live-card { padding: 14px 12px 12px; gap: 6px; }
  .live-count { font-size: 28px; }
  .live-place { font-size: 16px; }
  .live-region { font-size: 9.5px; letter-spacing: 1.2px; }
  .live-indicator { font-size: 9px; padding: 4px 10px; letter-spacing: 2px; }
  .live-types { margin-top: 6px; padding-top: 6px; gap: 2px; }
  .live-types li { font-size: 10.5px; padding-left: 10px; }
  .live-badge { padding: 10px 14px; gap: 10px; }
  .live-badge-num { font-size: 22px; }
  .live-badge-label { font-size: 8.5px; letter-spacing: 2px; }

  /* The Malven Way — 2 cols on phone for density */
  .commit-grid { grid-template-columns: 1fr 1fr; }
  .commit-card { padding: 14px 12px 14px; }
  .commit-num { font-size: 28px; top: 8px; right: 10px; }
  .commit-icon { width: 30px; height: 30px; font-size: 13px; margin-bottom: 10px; }
  .commit-title { font-size: 14px; margin-bottom: 6px; line-height: 1.25; }
  .commit-desc { font-size: 11.5px; line-height: 1.55; }
  .commit-header { margin-bottom: 14px; }
  .commit-sub { font-size: 13px; margin-top: 10px; }
  .commit-cta { margin-top: 16px; gap: 10px; }
  .commit-cta-line { height: 28px; }
  .commit-cta-text { font-size: 15px; }
  .commit-cta-btn { padding: 14px 24px; font-size: 10px; letter-spacing: 2.5px; }

  /* Gallery — 2-col mosaic on mobile, halves scroll length */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 14px; }
  .gallery-item { aspect-ratio: 4/5; }
  .cap-title { font-size: 13px; bottom: 10px; left: 10px; right: 10px; }
  .cap-tag { bottom: 34px; left: 10px; right: 10px; font-size: 8.5px; letter-spacing: 2px; }
  .gallery-zoom { width: 26px; height: 26px; font-size: 12px; top: 8px; right: 8px; }
  /* Always show captions on mobile — no hover on touch devices */
  .gallery-item .cap-tag, .gallery-item .cap-title { opacity: 1; transform: translateY(0); }
  .gallery-item::after { opacity: 1; }
  /* Bigger, tappable lightbox dots on mobile */
  .gmodal-dots { gap: 10px; padding: 10px 14px; }
  .gmodal-dots button { width: 12px; height: 12px; }
  .gmodal-dots button.active { width: 26px; height: 12px; }


  /* Testimonials — each card full width, tight padding */
  .testimonials-wrap { margin: 0 -16px; padding: 0 16px; }
  .testimonials-track { gap: 14px; padding-bottom: 4px; }
  .testimonial { flex: 0 0 calc(100% - 12px); min-height: 0; padding: 18px 18px 14px; }
  .testimonial-text { font-size: 14px; line-height: 1.65; margin-bottom: 14px; }
  .testimonial-author { font-size: 11px; letter-spacing: 1.5px; }
  .testimonial-company { font-size: 10px; }
  .testimonial::before { font-size: 70px; top: 4px; right: 16px; }
  .testimonial-nav { display: none; }
  .testimonials-header { margin-bottom: 12px; }
  .testimonial-dots { margin-top: 16px; gap: 8px; }
  .testimonial-dots button { width: 7px; height: 7px; }

  /* Contact — tighter */
  .contact-layout { gap: 22px; margin-top: 12px; }
  .contact-info { margin-top: 14px; }
  .contact-info-item { padding: 10px 12px; margin-bottom: 0; }
  .contact-info-label { font-size: 9.5px; letter-spacing: 2.5px; margin-bottom: 4px; }
  .contact-info-val { font-size: 15px; }

  /* Floating-label form — mobile */
  .contact-form { padding: 22px 18px 20px; gap: 12px; }
  .contact-form::before, .contact-form::after { width: 16px; height: 16px; top: 12px; left: 12px; }
  .contact-form::after { top: auto; left: auto; bottom: 12px; right: 12px; }
  .contact-form .form-heading { font-size: 22px; }
  .contact-form .form-subheading { font-size: 9.5px; letter-spacing: 2.5px; }
  .form-row { gap: 12px; }
  .form-field input, .form-field select, .form-field textarea {
    font-size: 16px;  /* prevent iOS zoom */
    padding: 16px 2px 7px;
  }
  .form-field label { font-size: 15px; top: 16px; }
  .form-field input:focus ~ label,
  .form-field input:not(:placeholder-shown) ~ label,
  .form-field textarea:focus ~ label,
  .form-field textarea:not(:placeholder-shown) ~ label,
  .form-field-select select:focus ~ label,
  .form-field-select select:valid ~ label {
    transform: translateY(-15px) scale(0.72);
  }
  .form-field textarea { min-height: 80px; }
  .form-submit { padding: 14px 28px; font-size: 10px; letter-spacing: 2.5px; }
  .form-privacy { font-size: 10.5px; line-height: 1.55; padding-top: 10px; }
  .contact-map { margin-top: 14px; }
  .contact-map iframe { height: 200px; }

  /* Footer — tighter */
  footer { padding: 24px 16px 18px; }
  .footer-logo-img { height: 64px; }
  .footer-blurb { font-size: 12px; line-height: 1.7; }
  .footer-menu { gap: 8px; }
  .footer-menu a { font-size: 12.5px; }
  .footer-heading { font-size: 10px; padding-bottom: 8px; letter-spacing: 3px; }
  .footer-divider { margin: 18px 0 12px; }
  .footer-copy { font-size: 11px; }
  .footer-credit { font-size: 12px; }
  .footer-brand-col { gap: 12px; }

  /* WhatsApp float — slightly smaller on phones */
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-icon { width: 24px; height: 24px; }

  /* Project lightbox */
  .pmodal-title { font-size: 22px; }
  .pmodal-eyebrow { font-size: 9px; letter-spacing: 3px; margin-bottom: 10px; }
  .pmodal-info { padding: 20px 18px; }
  .pmodal-specs { grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px 0; margin-bottom: 18px; }
  .pmodal-desc { font-size: 13px; margin-bottom: 18px; }

  /* Services modal — tighten */
  .smodal-body { padding: 20px 18px; }
  .smodal-title { font-size: 22px; margin-bottom: 14px; }
  .smodal-desc { font-size: 13px; line-height: 1.8; margin-bottom: 20px; }
  .smodal-grid { gap: 18px; padding: 18px 0; margin-bottom: 18px; }
  .smodal-num { font-size: 72px; }
  .smodal-cta { padding: 14px 22px; font-size: 10px; }

  /* Gallery lightbox */
  .gmodal-image { max-width: 94vw; max-height: 70vh; }
  .gmodal-title { font-size: 16px; }
  .gmodal-nav { width: 40px; height: 40px; font-size: 20px; }
  .gmodal-nav.prev { left: 8px; }
  .gmodal-nav.next { right: 8px; }
  .gmodal-close { top: 14px; right: 14px; width: 40px; height: 40px; }

  /* ===== MOBILE APP-FEEL POLISH ===== */

  /* Smoother font rendering on mobile */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  /* Universal tap feedback — everything interactive scales down briefly on press */
  button, a, .project-card, .service-card, .commit-card, .live-card,
  .gallery-item, .testimonial, .contact-info-item,
  .form-submit, .form-success-reset, .commit-cta-btn,
  .btn-primary, .btn-ghost, .wa-float, .view-all {
    -webkit-tap-highlight-color: rgba(184,150,90,0.15);
    touch-action: manipulation; /* removes 300ms click delay on iOS */
  }
  .project-card:active,
  .service-card:active,
  .commit-card:active,
  .live-card:active,
  .gallery-item:active,
  .contact-info-item:active {
    transform: scale(0.985);
    transition: transform 0.1s ease;
  }

  /* Card depth — subtle elevation so they feel tappable */
  .service-card, .commit-card, .live-card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  }
  .testimonial {
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  }
  .project-card, .gallery-item {
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  }

  /* 44px minimum tap targets (Apple HIG + Android Material) */
  .nav-links a, .footer-menu a, .view-all,
  .btn-ghost, .project-cta, .service-more {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }
  .nav-burger { width: 44px; height: 44px; }

  /* Make the WhatsApp float button read as the primary app-like CTA */
  .wa-float {
    box-shadow:
      0 8px 24px rgba(37, 211, 102, 0.4),
      0 3px 10px rgba(0, 0, 0, 0.4);
  }

  /* Testimonials — slightly snappier scroll */
  .testimonials-track {
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
  }

  /* Subtle card hover-simulation on tap for commit cards */
  .commit-card:active::before,
  .service-card:active::before {
    transform: scaleX(1);
  }

  /* Form inputs — better touch UX */
  .form-field input,
  .form-field select,
  .form-field textarea {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
  }

  /* Prevent horizontal scroll on mobile from any child overflow */
  html, body { overflow-x: hidden; max-width: 100vw; }

  /* Testimonials stars + smaller avatar on mobile */
  .testimonial-stars { margin-bottom: 10px; }
  .testimonial-stars span { font-size: 12px; }
  .testimonial-avatar { width: 34px; height: 34px; font-size: 11px; }
  .testimonial-author-row { gap: 10px; }

  /* === ATTRACTION PASS — stats cards, project brackets, section transitions === */

  /* Stats card grid handled in the main mobile block above */

  /* Project cards — always-visible gold corner brackets (no hover on mobile) */
  .project-card { border: 1px solid rgba(184,150,90,0.15); }
  .project-card::before {
    content: '';
    position: absolute;
    top: 8px; left: 8px;
    width: 18px; height: 18px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    z-index: 3;
    opacity: 0.7;
    pointer-events: none;
  }

  /* Service card — bigger gold number, corner accent */
  .service-card {
    border: 1px solid rgba(255,255,255,0.04);
    background:
      radial-gradient(circle at top right, rgba(184,150,90,0.06) 0%, transparent 60%),
      var(--charcoal);
  }
  .service-number {
    font-size: 32px;
    color: rgba(184,150,90,0.4);
  }

  /* Live + Commit cards — gentle inner highlight */
  .live-card, .commit-card {
    background:
      linear-gradient(180deg, rgba(184,150,90,0.05) 0%, transparent 60%),
      var(--charcoal);
  }
  .commit-card { background-color: var(--off-black); }

  /* Section transitions — gold gradient hairline before each major section */
  #live-projects, #commitments, #gallery, #testimonials, #contact {
    position: relative;
  }
  #live-projects::before, #commitments::before,
  #gallery::before, #testimonials::before, #contact::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  /* Better tap targets on testimonial dots — keep visual size, expand hit area */
  .testimonial-dots { gap: 14px; padding: 6px 0; }

  /* Project card — taller aspect for impact */
  .project-card { aspect-ratio: 4/3; }

  /* Headers tighter spacing */
  .live-header, .testimonials-header, .projects-header, .commit-header {
    margin-bottom: 14px;
  }
}

/* === EXTRA SMALL PHONES (<= 420px) === */
@media (max-width: 420px) {
  .hero-tagline { font-size: 34px; line-height: 1.06; }
  .hero-brand { font-size: 9px; letter-spacing: 0.24em; padding-left: 0.24em; }
  .hero-brand-rule { width: 16px; }
  .hero-sub { font-size: 12.5px; max-width: 300px; }
  .section-title { font-size: 26px; letter-spacing: 0.5px; }
  .stat-number { font-size: 26px; }
  .stat-suffix { font-size: 19px; }
  .stat-label { font-size: 8.5px; letter-spacing: 1.4px; }
  .stat { padding: 16px 8px 14px; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 8px; }
  /* Keep commit + live as 2 cols even on narrow phones — cuts scroll length */
  .commit-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .commit-card { padding: 12px 10px 12px; }
  .commit-num { font-size: 24px; top: 6px; right: 8px; }
  .commit-icon { width: 28px; height: 28px; font-size: 12px; margin-bottom: 8px; }
  .commit-title { font-size: 13px; line-height: 1.25; }
  .commit-desc { font-size: 11px; line-height: 1.5; }
  .live-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .live-card { padding: 12px 10px 12px; }
  .live-count { font-size: 24px; }
  .live-place { font-size: 14px; }
  .live-region { font-size: 9px; letter-spacing: 1px; }
  .live-types li { font-size: 10px; padding-left: 8px; }
  /* Services stay 2 cols on small phones too */
  .services-grid { grid-template-columns: 1fr 1fr !important; }
  .service-card { padding: 12px 10px 12px; }
  .service-number { font-size: 20px; }
  .service-name { font-size: 13px; }
  .service-desc { font-size: 11px; line-height: 1.5; }
  .service-more { font-size: 8.5px; letter-spacing: 1.5px; }
  .project-card { aspect-ratio: 4/3; }
  .btn-primary { padding: 14px 24px; font-size: 10px; letter-spacing: 2.5px; }
  .btn-ghost { font-size: 10px; letter-spacing: 2.5px; }
  .hero-actions { gap: 14px; }
}
