﻿/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { background: #0a0906; scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================================================
   VARIABLES
============================================================ */
:root {
  --bg:        #0a0906;
  --bg-alt:    #0f0d0a;
  --bg-card:   #141210;
  --border:    rgba(232,228,222,0.15);
  --border-mid: rgba(232,228,222,0.28);
  --gold:      #E8E4DE;
  --gold-light: #F0EDE8;
  --gold-pale: rgba(232,228,222,0.08);
  --text:      #f0ebe2;
  --text-sub:  #8a847c;
  --text-muted: #4a4640;
  --radius:    2px;
  --header-h:  72px;
}

/* ============================================================
   CURSOR
============================================================ */
@media (pointer: fine) {
  * { cursor: none !important; }
  .cursor {
    position: fixed; width: 8px; height: 8px;
    background: #E8E4DE; border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, opacity 0.2s ease;
    left: 0; top: 0;
  }
}

/* ============================================================
   STARS CANVAS
============================================================ */
#starsCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1; pointer-events: none;
}

/* ============================================================
   AURORA BACKGROUND
============================================================ */
#aurora-layer {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.aurora-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.aurora-blob-1 {
  width: 800px; height: 400px;
  filter: blur(120px);
  top: -100px; left: -100px;
  will-change: transform;
  animation: auroraBlob1 19.5s ease-in-out infinite alternate, auroraColorPulse 10.5s ease-in-out infinite alternate;
}
.aurora-blob-2 {
  width: 600px; height: 500px;
  background: rgba(180,140,70,0.075);
  filter: blur(120px);
  bottom: -100px; right: -100px;
  will-change: transform;
  animation: auroraBlob2 23.5s ease-in-out infinite alternate;
}
.aurora-blob-3 {
  width: 500px; height: 300px;
  background: rgba(220,190,130,0.09);
  filter: blur(120px);
  top: 40%; left: 20%;
  will-change: transform;
  animation: auroraBlob3 60s linear infinite;
}
.aurora-blob-4 {
  width: 400px; height: 350px;
  background: rgba(200,155,60,0.075);
  filter: blur(130px);
  top: 60%; right: 15%;
  will-change: transform;
  animation: auroraBlob4 15.5s ease-in-out infinite alternate;
}
@keyframes auroraBlob1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(120px, 80px) scale(1.15); }
}
@keyframes auroraColorPulse {
  0%   { background: rgba(232,228,222,0.105); }
  100% { background: rgba(200,120,30,0.105); }
}
@keyframes auroraBlob2 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-80px, -100px); }
}
@keyframes auroraBlob3 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(60px, -40px) rotate(180deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
@keyframes auroraBlob4 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-40px, 60px) rotate(-10deg); }
}
@media (max-width: 767px) {
  .aurora-blob { filter: blur(60px); }
  .aurora-blob-1 { animation-duration: 26s; }
  .aurora-blob-2 { animation-duration: 31s; }
  .aurora-blob-3 { display: none; }
  .aurora-blob-4 { display: none; }
}

/* ============================================================
   BELOW-FOLD RENDERING OPTIMISATION
============================================================ */
.videos, .work, .services, .reviews, .process, .areas, .faq, .quote {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ============================================================
   LOADER
============================================================ */
.loader {
  position: fixed; inset: 0; background: var(--bg); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300; color: var(--gold);
  letter-spacing: 8px; margin-bottom: 32px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-logo-img {
  width: 160px; opacity: 0.9; margin-bottom: 32px;
  animation: loaderPulse 1.5s ease-in-out infinite, loaderShimmer 1.2s ease 0.8s 1 both;
  filter: brightness(1);
}
@keyframes loaderShimmer {
  0%   { filter: brightness(0.7); }
  50%  { filter: brightness(1.3); }
  100% { filter: brightness(1); }
}
.loader-bar {
  width: 160px; height: 1px; background: rgba(232,228,222,0.2); margin: 0 auto;
}
.loader-progress {
  height: 100%; background: var(--gold); width: 0%;
  transition: width 0.05s linear;
}
@keyframes loaderPulse { 0%,100%{opacity:0.6} 50%{opacity:1} }

/* ============================================================
   CONTAINER
============================================================ */
.container { max-width: 1320px; margin: 0 auto; padding: 0 6%; }
section[id] { scroll-margin-top: var(--header-h); }

/* ============================================================
   HEADER
============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--header-h); padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s ease, box-shadow 0.5s ease, top 0.4s ease;
}
#site-header.scrolled {
  background: rgba(8,7,5,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.logo-link { display: flex; align-items: center; position: relative; }
.logo-link::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(232,228,222,0.15) 0%, transparent 70%);
  pointer-events: none; opacity: 0; transition: opacity 0.4s ease;
}
#site-header.scrolled .logo-link::after { opacity: 1; }
.logo { height: 40px; width: auto; object-fit: contain; object-position: left center; }

nav { display: flex; gap: 36px; }
nav a {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-sub); text-decoration: none;
  transition: color 0.2s; position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
nav a:hover { color: var(--text); }
nav a:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 24px; }
.header-social-link { color: var(--text-sub); transition: color 0.2s; display: flex; }
.header-social-link:hover { color: var(--gold); }

.nav-cta {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bg); text-decoration: none;
  padding: 10px 22px; border-radius: 999px;
  background: linear-gradient(135deg, #E8E4DE 0%, #F0EDE8 40%, #D8D4CE 60%, #E8E4DE 100%);
  background-size: 200% 200%;
  transition: background-position 0.4s ease, transform 0.2s;
}
.nav-cta:hover { background-position: right center; transform: translateY(-1px); }

.mobile-call-btn {
  display: none;
  align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bg); text-decoration: none;
  padding: 10px 18px; border-radius: 999px;
  background: linear-gradient(135deg, #E8E4DE 0%, #F0EDE8 40%, #D8D4CE 60%, #E8E4DE 100%);
  background-size: 200% 200%;
  transition: background-position 0.4s ease;
}
.mobile-call-btn:hover { background-position: right center; }

@media (max-width: 1024px) {
  .mobile-call-btn { display: flex; }
}

.nav-hamburger {
  display: none; background: none; border: none; cursor: none;
  padding: 6px; flex-direction: column; gap: 7px; align-items: flex-end;
}
.nav-hamburger span {
  display: block; height: 1px; background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav-hamburger span:nth-child(1) { width: 24px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 24px; }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }

/* ============================================================
   MOBILE NAV
============================================================ */
.mobile-nav {
  position: fixed; inset: 0; background: rgba(8,7,5,0.98);
  backdrop-filter: blur(24px); z-index: 400;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 6%; background: none; border: none;
  color: var(--text-sub); transition: color 0.2s; display: flex;
  z-index: 410;
}
.mobile-nav-close:hover { color: var(--text); }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 48px; }
.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300;
  color: var(--text); text-decoration: none; line-height: 1.15;
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-nav-phone {
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid var(--border-mid); border-radius: 999px; padding: 12px 28px;
  transition: background 0.2s;
}
.mobile-nav-phone:hover { background: var(--gold-pale); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block; text-decoration: none; border: none;
  font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; line-height: 1;
  padding: 18px 36px; border-radius: 999px;
  transition: background 0.2s, background-position 0.4s ease, transform 0.2s, box-shadow 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, #E8E4DE 0%, #F0EDE8 40%, #D8D4CE 60%, #E8E4DE 100%);
  background-size: 200% 200%;
  color: #0a0906;
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,228,222,0.4);
}
.btn-ghost { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text-sub); border: 1px solid var(--border-mid); }
.btn-outline:hover { color: var(--text); border-color: var(--gold); transform: translateY(-2px); }

/* ============================================================
   LOGO ACCENT ELEMENTS
============================================================ */
.hero-logo-watermark {
  position: absolute; bottom: 80px; right: 6%; z-index: 2;
  width: 200px; opacity: 0.08; pointer-events: none;
}
.section-logo {
  display: block; width: 80px; opacity: 0.6; margin: 0 auto 24px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  height: 100vh; height: 100dvh; min-height: 640px;
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 110%; object-fit: cover; object-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
  will-change: transform;
}
.hero-bg-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,6,4,0.88) 0%, rgba(8,6,4,0.55) 50%, rgba(8,6,4,0.4) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative; z-index: 2; padding: 0 6%;
  max-width: 820px; padding-top: var(--header-h);
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.eyebrow-line { display: block; width: 32px; height: 1px; background: var(--gold); opacity: 0.6; }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 400; line-height: 0.95;
  letter-spacing: 4px;
  color: var(--text);
  margin-bottom: 32px;
}
.title-line { display: block; }
.title-line-italic {
  display: block; font-style: normal;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 30%, #fceea0 50%, var(--gold) 70%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 2s ease-in-out 1.5s 1 both;
}
@keyframes goldShimmer {
  0%   { background-position: 150% center; }
  100% { background-position: -50% center; }
}

.hero-sub {
  font-size: 16px; color: rgba(240,235,226,0.7); max-width: 480px;
  line-height: 1.8; margin-bottom: 44px; font-weight: 400;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex; align-items: flex-start; gap: 0;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; flex: 1; padding: 0 20px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-div { flex-shrink: 0; width: 1px; height: 40px; align-self: center; background: var(--border); }
.stat-n {
  font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400;
  color: var(--gold); line-height: 1;
  display: inline-block; min-width: 2ch;
}
.stat-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }
.stat-l { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-sub); }

.hero-trust-line {
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-top: 20px;
}

.hero-scroll-cue {
  position: absolute; bottom: 40px; left: 6%; z-index: 2;
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  overflow: hidden; border-top: 1px solid var(--border);
  background: rgba(8,6,4,0.7); backdrop-filter: blur(8px);
  padding: 14px 0;
}
.ticker-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-sub);
  transition: animation-duration 0.5s;
}
.ticker-dot { color: var(--gold); opacity: 0.5; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SECTION LABELS & HEADERS
============================================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.section-label::before {
  content: ''; width: 20px; height: 1px; background: var(--gold);
}
.section-header { margin-bottom: 72px; }
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px); font-weight: 300;
  letter-spacing: -1px; line-height: 1.05; color: var(--text);
}
.section-header h2 em { font-style: italic; color: var(--gold); }

/* ============================================================
   SECTION DIVIDERS
============================================================ */
.intro, .videos, .work, .services, .reviews, .instagram-section,
.process, .areas, .quote, .faq, .cta-strip-dark, .seo-region {
  border-top: 1px solid rgba(232,228,222,0.08);
}

/* ============================================================
   INTRO
============================================================ */
.intro { padding: 80px 0; background: var(--bg-alt); }
.intro-inner {
  display: grid; grid-template-columns: 200px 1fr; gap: 80px; align-items: start;
}
.intro-label {
  font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-muted); padding-top: 8px;
}
.intro-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px); font-weight: 300;
  line-height: 1.1; letter-spacing: -0.5px; color: var(--text);
  margin-bottom: 24px;
}
.intro-large em { font-style: italic; color: var(--gold); }
.intro-body { font-size: 16px; color: var(--text-sub); line-height: 1.9; max-width: 540px; margin-bottom: 32px; font-weight: 400; }
.intro-available {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.5px; color: var(--text-sub);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,0.5)} 50%{box-shadow:0 0 0 6px rgba(74,222,128,0)} }

/* ============================================================
   WORK / GALLERY
============================================================ */
.work { padding: 120px 0 80px; background: var(--bg); overflow: hidden; }
.work .section-header h2 em { font-style: italic; color: var(--gold); }

.work-scroll-container { overflow-x: auto; padding: 0 6% 0; scrollbar-width: none; margin-bottom: 40px; }
.work-scroll-container::-webkit-scrollbar { display: none; }

.work-track {
  display: flex; gap: 20px; padding-bottom: 8px;
  width: max-content;
}

.work-item { width: 480px; flex-shrink: 0; position: relative; }
.work-img-wrap {
  height: 600px; overflow: hidden; border-radius: 4px;
  background: var(--bg-card); margin-bottom: 16px;
}
.work-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.work-item:hover .work-img-wrap img { transform: scale(1.04); }

.work-label { display: flex; justify-content: space-between; align-items: center; padding: 0 4px; }
.work-type { font-size: 13px; font-weight: 500; color: var(--text); }
.work-location { font-size: 12px; color: var(--text-sub); letter-spacing: 0.5px; }

.work-nav {
  display: flex; align-items: center; gap: 24px; padding: 0 6%; margin-bottom: 32px;
}
.work-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-mid); background: transparent;
  color: var(--text-sub); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.work-btn:hover { background: var(--gold-pale); color: var(--gold); border-color: var(--gold); }
.work-progress { flex: 1; height: 1px; background: var(--border); position: relative; }
.work-progress-bar { position: absolute; left: 0; top: 0; height: 100%; background: var(--gold); transition: width 0.3s ease; }

.work-instagram {
  padding: 32px 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.instagram-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--bg);
  text-decoration: none; padding: 14px 32px; border-radius: 999px;
  background: linear-gradient(135deg, #E8E4DE 0%, #F0EDE8 40%, #D8D4CE 60%, #E8E4DE 100%);
  background-size: 200% 200%;
  transition: background-position 0.4s ease, transform 0.2s;
}
.instagram-link:hover { background-position: right center; transform: translateY(-2px); }
.instagram-link svg { stroke: var(--bg); }

/* ============================================================
   VIDEOS SECTION
============================================================ */
.videos { padding: 120px 0 80px; background: var(--bg-alt); overflow: hidden; }

.videos-scroll-container { overflow-x: auto; padding: 0 6%; scrollbar-width: none; margin-bottom: 40px; }
.videos-scroll-container::-webkit-scrollbar { display: none; }

.video-item { width: 340px; flex-shrink: 0; position: relative; }
.video-link { display: block; text-decoration: none; color: inherit; position: relative; }

.video-wrap {
  height: 600px; overflow: hidden; border-radius: 4px;
  background: var(--bg-card); position: relative;
}
.video-wrap video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.video-insta-badge {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  display: flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; padding: 6px 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff;
}

.video-hover-overlay {
  position: absolute; inset: 0; z-index: 4;
  background: rgba(0,0,0,0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity 0.3s ease;
  border-radius: 4px;
}
.video-link:hover .video-hover-overlay { opacity: 1; }

.video-overlay-play {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding-left: 3px;
}
.video-overlay-text {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
  .video-item { width: 260px; }
  .video-wrap { height: 460px; }
}
@media (max-width: 480px) {
  .video-item { width: 220px; }
  .video-wrap { height: 390px; }
  .videos { padding: 80px 0 60px; }
}

/* ============================================================
   SERVICES
============================================================ */
.services { padding: 120px 0; background: var(--bg-alt); }
.services-inner { display: grid; grid-template-columns: 340px 1fr; gap: 100px; align-items: start; }
.services-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4vw, 60px); font-weight: 300;
  line-height: 1.05; letter-spacing: -0.5px; color: var(--text); margin-bottom: 20px;
}
.services-left h2 em { font-style: italic; color: var(--gold); }
.services-left p { font-size: 15px; color: var(--text-sub); line-height: 1.8; font-weight: 400; }

.service-row {
  display: flex; align-items: flex-start; gap: 28px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  transition: padding-left 0.35s ease, background 0.35s ease, border-bottom-color 0.3s ease;
  position: relative;
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:hover {
  padding-left: 12px;
  background: linear-gradient(to right, rgba(232,228,222,0.06) 0%, transparent 70%);
}
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  letter-spacing: 1px; padding-top: 3px; flex-shrink: 0; width: 28px;
  transition: color 0.3s ease;
}
.service-row:hover .service-num { color: var(--gold); }
.service-info { flex: 1; }
.service-info h3 {
  font-size: 19px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: -0.2px;
  transition: color 0.3s ease;
}
.service-row:hover .service-info h3 { color: var(--gold-light); }
.service-info p { font-size: 14px; color: var(--text-sub); line-height: 1.7; font-weight: 400; }
.service-arrow {
  font-size: 20px; color: var(--text-muted); padding-top: 2px; flex-shrink: 0;
  transition: color 0.3s ease, transform 0.35s ease;
}
.service-row:hover .service-arrow { color: var(--gold); transform: translateX(6px); }

/* ============================================================
   CTA STRIP
============================================================ */
.cta-strip {
  background: var(--gold); padding: 48px 6%;
}
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-strip-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 300;
  color: #0a0906; letter-spacing: -0.5px;
}
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-strip .btn-primary { background: #0a0906; color: var(--gold); }
.cta-strip .btn-primary:hover { background: #1a1512; }
.cta-strip .btn-outline { border-color: rgba(10,9,6,0.3); color: #0a0906; }
.cta-strip .btn-outline:hover { background: rgba(10,9,6,0.08); border-color: #0a0906; }

/* ============================================================
   CTA STRIP DARK
============================================================ */
.cta-strip-dark {
  background: var(--bg-alt); padding: 64px 6%;
}
.cta-strip-dark .cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip-dark .cta-strip-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 300;
  color: var(--text); letter-spacing: -0.5px;
}
.cta-strip-dark .cta-strip-text em { font-style: italic; color: var(--gold); }
.cta-strip-dark .btn-primary {
  background: linear-gradient(135deg, #E8E4DE 0%, #F0EDE8 40%, #D8D4CE 60%, #E8E4DE 100%);
  background-size: 200% 200%; color: var(--bg);
}
.cta-strip-dark .btn-primary:hover { background-position: right center; }
.cta-strip-dark .btn-outline { border-color: var(--border-mid); color: var(--text-sub); }
.cta-strip-dark .btn-outline:hover { color: var(--text); border-color: var(--gold); }

@media (max-width: 768px) {
  .cta-strip-dark { padding: 56px 6%; }
  .cta-strip-dark .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   AREAS MAP
============================================================ */
.areas-map {
  margin-top: 56px; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border); grid-column: span 2;
}
.areas-map iframe {
  width: 100%; height: 360px; display: block;
  filter: grayscale(100%) invert(90%) brightness(0.6);
}

/* ============================================================
   SEO REGION
============================================================ */
.seo-region {
  padding: 56px 0; background: var(--bg);
}
.seo-text-block {
  font-size: 11px; color: var(--text-muted); line-height: 1.85;
  max-width: 900px; margin: 0 auto; padding: 0 6%; text-align: center;
}
.seo-text-block a { color: var(--text-muted); text-decoration: none; border-bottom: 1px solid rgba(232,228,222,0.2); transition: color 0.2s; }
.seo-text-block a:hover { color: var(--gold); }

/* ============================================================
   MOBILE STICKY QUOTE BAR
============================================================ */
#stickyQuoteBar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 350;
  background: linear-gradient(90deg, #E8E4DE 0%, #F0EDE8 30%, #D8D4CE 55%, #F0EDE8 75%, #E8E4DE 100%);
  background-size: 200% 100%;
  color: #0a0906;
  height: 56px; padding: 0 24px;
  align-items: center; justify-content: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; user-select: none;
  transform: translateY(0);
  transition: transform 0.4s ease;
  animation: stickyPulse 3s ease-in-out 2s infinite, stickyShimmer 3s linear infinite;
}
@keyframes stickyPulse {
  0%, 100% { box-shadow: 0 -4px 20px rgba(232,228,222,0.2); }
  50%       { box-shadow: 0 -4px 32px rgba(232,228,222,0.5); }
}
@keyframes stickyShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
@media (max-width: 1024px) {
  #stickyQuoteBar { display: flex; }
  .floating-actions { bottom: 76px; }
}
@media (max-width: 480px) {
  .floating-actions { bottom: 72px; right: 16px; }
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews { padding: 120px 0; background: #060504; overflow: hidden; position: relative; }
.reviews::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(232,228,222,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Rating block */
.reviews-rating {
  display: flex; align-items: center; gap: 32px; margin-top: 32px; flex-wrap: wrap;
}
.rating-left { display: flex; flex-direction: column; align-items: flex-start; }
.rating-score {
  font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.rating-stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; margin: 4px 0; }
.rating-count { font-size: 12px; color: var(--text-sub); letter-spacing: 0.5px; }
.rating-divider { width: 1px; height: 64px; background: rgba(255,255,255,0.1); }
.rating-right { display: flex; flex-direction: column; gap: 8px; }
.rating-google-logo {
  font-size: 22px; font-weight: 700; letter-spacing: -0.5px;
  font-family: 'Barlow', Arial, sans-serif; line-height: 1;
}
.rating-verified {
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--gold); display: flex; align-items: center; gap: 4px;
}
.rating-view-all {
  font-size: 12px; color: #4285F4; text-decoration: none; font-weight: 500;
  transition: opacity 0.2s;
}
.rating-view-all:hover { opacity: 0.75; }

/* Trust badges */
.reviews-trust-row {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 12px; flex-wrap: wrap; margin: 32px 0 40px;
}
.reviews-trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; padding: 8px 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
  color: var(--text-sub);
}
.reviews-trust-badge svg { flex-shrink: 0; }

/* Carousel */
.reviews-carousel-wrap { position: relative; overflow: visible; margin-bottom: 32px; }
.reviews-clip { overflow: hidden; }
.reviews-track {
  display: flex; gap: 12px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Cards — Google style, dark themed */
.review-card {
  min-width: 260px; max-width: 260px; flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 16px;
  height: 220px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.review-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.review-card.expanded { height: auto; overflow: visible; }
.review-card.expanded .review-text {
  display: block; -webkit-line-clamp: unset; line-clamp: unset; overflow: visible;
}

/* Card header */
.review-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); font-size: 14px; font-weight: 700; color: var(--bg);
  font-family: Arial, sans-serif;
}
.review-meta { flex: 1; min-width: 0; }
.review-name {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.review-via { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.review-stars { color: var(--gold); font-size: 11px; letter-spacing: 2px; margin-bottom: 8px; }
.review-g-logo { flex-shrink: 0; }

/* Review text */
.review-text {
  font-size: 13px; color: var(--text-sub);
  line-height: 1.6; font-weight: 400; font-style: normal;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Nav buttons */
.review-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-mid);
  background: var(--bg-card); backdrop-filter: blur(8px);
  color: var(--text-sub); display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 20;
}
.review-nav-btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.review-prev { left: 8px; }
.review-next { right: 8px; }

/* Dots */
.reviews-dots { display: flex; gap: 8px; justify-content: center; margin-bottom: 48px; }
.reviews-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2); transition: background 0.2s, transform 0.2s, width 0.2s;
  cursor: pointer;
}
.reviews-dot.active { background: var(--gold); transform: scale(1.3); }

.reviews-cta { text-align: center; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   INSTAGRAM SECTION
============================================================ */
.instagram-section { padding: 120px 0; background: var(--bg-alt); overflow: hidden; }

.insta-feed-wrap { padding: 0 6%; }

.insta-feed-grid {
  display: none; /* shown only if we add real grid items */
}

.insta-placeholder {
  display: flex; justify-content: center; margin-bottom: 48px;
}

.insta-follow-card {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 48px 64px; border: 1px solid var(--border);
  border-radius: 4px; background: var(--bg-card);
  text-decoration: none; color: var(--text-sub);
  transition: border-color 0.3s, transform 0.3s, color 0.3s;
}
.insta-follow-card:hover { border-color: var(--gold); transform: translateY(-4px); color: var(--gold); }
.insta-follow-card svg { color: var(--gold); }
.insta-handle { font-size: 20px; font-weight: 600; color: var(--text); letter-spacing: -0.3px; }
.insta-cta-text { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }

/* Instagram embeds container */
.insta-embeds {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;
  margin-bottom: 48px;
}
.insta-embeds .instagram-media {
  flex: 1 1 320px; max-width: 400px !important; min-width: 280px !important;
  border-radius: 4px !important; overflow: hidden;
}

.insta-footer { text-align: center; padding: 0 6%; }
.insta-btn {
  display: inline-flex; align-items: center; gap: 10px;
}

/* ============================================================
   PROCESS
============================================================ */
.process { padding: 120px 0; background: var(--bg); }
.process-steps {
  display: flex; align-items: flex-start; gap: 0;
}
.process-step { flex: 1; padding-right: 60px; }
.process-connector {
  width: 1px; background: var(--border); align-self: stretch;
  flex-shrink: 0; margin-top: 16px; margin-right: 60px;
}
.process-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 100px; font-weight: 800; letter-spacing: -4px;
  -webkit-text-stroke: 1.5px rgba(232,228,222,0.3);
  color: transparent;
  line-height: 0.9;
  margin-bottom: 20px;
}
.process-step h3 { font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 14px; letter-spacing: -0.3px; }
.process-step p { font-size: 14px; color: var(--text-sub); line-height: 1.9; font-weight: 400; }

/* ============================================================
   AREAS
============================================================ */
.areas { padding: 120px 0; background: var(--bg-alt); }
.areas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.areas-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px); font-weight: 300;
  line-height: 1.05; letter-spacing: -0.5px; color: var(--text); margin-bottom: 20px;
}
.areas-left h2 em { font-style: italic; color: var(--gold); }
.areas-left p { font-size: 15px; color: var(--text-sub); line-height: 1.8; font-weight: 400; margin-bottom: 16px; }
.areas-note { font-size: 13px; color: var(--text-muted); }
.areas-note a { color: var(--text-sub); text-decoration: none; border-bottom: 1px solid var(--border); transition: color 0.2s, border-color 0.2s; }
.areas-note a:hover { color: var(--gold); border-color: var(--gold); }

.areas-right { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.areas-primary, .areas-secondary {
  padding: 36px; border: 1px solid var(--border); border-radius: 4px;
  background: var(--bg);
}
.areas-primary h4, .areas-secondary h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.areas-primary ul, .areas-secondary ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.areas-primary li, .areas-secondary li {
  font-size: 15px; color: var(--text); font-weight: 400;
  display: flex; align-items: center; gap: 12px;
}
.area-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: 0.7; }

/* ============================================================
   QUOTE
============================================================ */
.quote { padding: 120px 0; background: var(--bg); }
.quote-inner { display: grid; grid-template-columns: 380px 1fr; gap: 100px; align-items: start; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.trust-badge svg { flex-shrink: 0; }

.quote-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px); font-weight: 300;
  line-height: 1.05; letter-spacing: -0.5px; color: var(--text); margin-bottom: 20px;
}
.quote-left h2 em { font-style: italic; color: var(--gold); }
.quote-left p { font-size: 15px; color: var(--text-sub); line-height: 1.8; font-weight: 400; margin-bottom: 36px; }

.quote-contact-links { display: flex; flex-direction: column; gap: 16px; }
.quote-link {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--text-sub);
  text-decoration: none; transition: color 0.2s;
}
.quote-link:hover { color: var(--gold); }
.quote-link svg { color: var(--gold); flex-shrink: 0; }

.quote-form { display: flex; flex-direction: column; gap: 20px; }
.field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-sub);
}
.req { color: var(--gold); }
.field input, .field select, .field textarea {
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--text); font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 400; line-height: 1.5;
  padding: 14px 18px; border-radius: 2px;
  outline: none; width: 100%; -webkit-appearance: none; appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%235e5854' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.field select option { background: #141210; color: var(--text); }
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,228,222,0.12);
}
.field input.invalid, .field select.invalid, .field textarea.invalid {
  border-color: #c0392b;
}

.form-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.form-submit-btn { cursor: none; }
.field-error {
  display: block; font-size: 11px; color: #e05c5c;
  margin-top: 5px; min-height: 16px; letter-spacing: 0.2px;
  font-weight: 400;
}
.field-hint {
  display: block; font-size: 11px; color: var(--text-muted);
  margin-top: 5px; letter-spacing: 0.2px;
}
.form-response-time {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); margin-top: 12px;
}
.form-response-time svg { flex-shrink: 0; color: var(--gold); }
.form-no-obligation {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text-muted); margin-top: 6px;
}
.form-no-obligation svg { flex-shrink: 0; color: var(--gold); }
.trust-abn {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 24px;
}

.form-success { display: none; text-align: center; padding: 80px 40px; }
.success-inner { max-width: 360px; margin: 0 auto; }
.success-inner svg { color: var(--gold); margin: 0 auto 24px; }
.success-inner h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--text); margin-bottom: 12px; }
.success-inner p { font-size: 15px; color: var(--text-sub); }

/* ============================================================
   FAQ
============================================================ */
.faq { padding: 120px 0; background: var(--bg-alt); }
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 24px 0; background: none; border: none; text-align: left;
  font-family: 'Barlow', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--text); letter-spacing: -0.2px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 22px; font-weight: 300; color: var(--gold); flex-shrink: 0;
  transition: transform 0.3s ease; line-height: 1;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a {
  overflow: hidden; max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, padding-bottom 0.3s ease, opacity 0.35s ease;
}
.faq-item.is-open .faq-a { max-height: 400px; padding-bottom: 28px; opacity: 1; }
.faq-a p { font-size: 15px; color: var(--text-sub); line-height: 1.8; font-weight: 400; }
.faq-a a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(232,228,222,0.3); transition: border-color 0.2s; }
.faq-a a:hover { border-color: var(--gold); }

/* ============================================================
   FOOTER
============================================================ */
footer { background: #050403; padding: 80px 0 32px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-logo { height: 44px; width: auto; object-fit: contain; object-position: left; margin-bottom: 20px; opacity: 0.8; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: 260px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: var(--text-muted); text-decoration: none; display: flex; transition: color 0.2s; }
.footer-socials a:hover { color: var(--gold); }
.footer-links h4, .footer-contact-col h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-links a, .footer-contact-col a, .footer-contact-col span {
  display: block; font-size: 14px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; margin-bottom: 12px; transition: color 0.2s;
}
.footer-links a:hover, .footer-contact-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom-link { color: var(--text-muted); text-decoration: none; border-bottom: 1px solid var(--border); transition: color 0.2s, border-color 0.2s; }
.footer-bottom-link:hover { color: var(--gold); border-color: var(--gold); }
.back-to-top {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--text-muted);
  text-decoration: none; transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.back-to-top:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   TRUST BAR FOOTER
============================================================ */
.trust-bar-footer {
  background: var(--bg-alt); padding: 18px 0;
  border-top: 1px solid rgba(232,228,222,0.08);
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}
.trust-bar-dot { color: var(--text-muted); opacity: 0.5; }

/* ============================================================
   SERVICE PARTNER BADGE
============================================================ */
.service-partner-badge {
  display: inline-block; margin-top: 8px;
  font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(232,228,222,0.3);
  padding: 3px 10px; border-radius: 999px;
}

/* ============================================================
   SECTION HEADER SUB
============================================================ */
.section-header-sub {
  font-size: 14px; color: var(--text-sub); margin-top: 16px; font-weight: 400;
}

/* ============================================================
   FLOATING ACTIONS
============================================================ */
.floating-actions { position: fixed; bottom: 28px; right: 28px; z-index: 300; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  will-change: transform;
}
.float-btn:hover { transform: translateY(-2px); }
.float-call { background: #fff; color: #111; box-shadow: 0 4px 20px rgba(0,0,0,0.65), 0 0 0 1.5px rgba(232,228,222,0.2); }
.float-call:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.7), 0 0 0 1.5px rgba(232,228,222,0.35); }
.float-whatsapp { background: #25D366; color: #fff; }
.float-whatsapp:hover { box-shadow: 0 14px 40px rgba(37,211,102,0.4); }

/* ============================================================
   RESPONSIVE — 1200px
============================================================ */
@media (max-width: 1200px) {
  .intro-inner { grid-template-columns: 140px 1fr; gap: 48px; }
  .services-inner { grid-template-columns: 280px 1fr; gap: 60px; }
  .quote-inner { grid-template-columns: 300px 1fr; gap: 60px; }
}

/* ============================================================
   RESPONSIVE — 1024px
============================================================ */
@media (max-width: 1024px) {
  nav { display: none; }
  .nav-hamburger { display: flex; }
  .header-right .header-social-link { display: none; }
  .nav-cta { display: none; }

  .intro-inner { grid-template-columns: 1fr; gap: 24px; }
  .intro-label { display: none; }

  .services-inner { grid-template-columns: 1fr; gap: 60px; }
  .services-left { max-width: 500px; }

  .areas-inner { grid-template-columns: 1fr; gap: 48px; }

  .quote-inner { grid-template-columns: 1fr; gap: 56px; }
  .quote-left { max-width: 500px; }

  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-brand { grid-column: span 2; }

  .process-steps { flex-direction: column; gap: 0; }
  .process-connector { width: 1px; height: 40px; align-self: auto; margin: 0 0 0 18px; }
  .process-step { padding-right: 0; padding-bottom: 40px; }
  .float-call { display: none; }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .hero-title { letter-spacing: 2px; }
  .hero-logo-watermark { display: none; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-stat-div { display: none; }

  .work-item { width: 320px; }
  .work-img-wrap { height: 320px; }

  .areas-right { grid-template-columns: 1fr; }

  .review-card { min-width: 240px; max-width: 240px; padding: 14px; }
  .reviews-dot { width: 8px; height: 8px; }
  .review-prev { left: 4px; }
  .review-next { right: 4px; }

  .field-group { grid-template-columns: 1fr; }

  .cta-strip-inner { flex-direction: column; align-items: flex-start; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .intro, .services, .reviews, .process, .areas, .quote, .instagram-section, .faq { padding: 80px 0; }
  .work { padding: 80px 0 60px; }

  .insta-follow-card { padding: 36px 40px; }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  .logo { height: 32px; }
  .nav-cta { font-size: 10px; padding: 9px 14px; }

  .hero-eyebrow { display: none; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-stat-div { display: none; }
  .hero-trust-line { font-size: 9px; text-align: center; padding-bottom: 16px; white-space: normal; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  .work-item { width: 260px; }
  .work-img-wrap { height: 280px; }

  .review-card { min-width: 240px; max-width: 240px; padding: 12px; }

  .form-actions { flex-direction: column; }
  .form-actions .btn { text-align: center; }
  .form-submit-btn { width: 100%; }

  .footer-bottom { flex-direction: column; gap: 8px; }

  .floating-actions { bottom: 72px; right: 16px; }
  .float-btn span { display: none; }
  .float-btn { padding: 17px; width: 58px; height: 58px; justify-content: center; gap: 0; }

  .mobile-nav-links a { font-size: 34px; }

  .faq-q { font-size: 15px; padding: 20px 0; }
  .faq-item.is-open .faq-a { max-height: 600px; }

  .review-prev { left: 4px; }
  .review-next { right: 4px; }

  .hero-sub { font-size: 14px; }
  .hero-title { font-size: clamp(52px, 14vw, 72px); }
  .hero-scroll-cue { display: none; }
  .hero-pull-quote { font-size: 12px; text-align: center; }

  /* Process */
  .process-num { font-size: 72px; }
  .process-step h3 { font-size: 18px; }
  .process-step p { font-size: 13px; }

  /* Areas */
  .areas-primary, .areas-secondary { padding: 20px; }
  .areas-map iframe { height: 240px; }

  /* Footer centering */
  .footer-logo { margin: 0 auto; display: block; }
  .footer-brand { text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-socials { justify-content: center; }
  .footer-links, .footer-contact-col { text-align: center; }

  /* Trust bar */
  .trust-bar-dot { display: none; }
  .trust-bar-inner { font-size: 9px; }

  /* SEO text */
  .seo-text-block { padding: 0 24px; }

  /* Services */
  .service-row { padding-left: 20px; padding-right: 20px; }

  /* CTA strip — full-width buttons */
  .cta-strip-inner { align-items: stretch; }
  .cta-strip-inner .btn { text-align: center; }

  /* Reviews */
  .reviews-rating { flex-direction: column; align-items: flex-start; gap: 4px; }
  .reviews-cta .btn { width: 100%; text-align: center; }

  /* Videos — always show overlay on touch */
  .video-hover-overlay { opacity: 0.7; }

  /* Why us — 2x2 grid */
  .why-us-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card { padding: 20px 14px; }
  .why-icon { width: 36px; height: 36px; }
  .why-card h3 { font-size: 15px; }
  .why-card p { font-size: 12px; }

  .intro, .services, .reviews, .process, .areas, .quote, .instagram-section, .faq { padding: 64px 0; }
}

/* ============================================================
   SCROLL PROGRESS BAR
============================================================ */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--gold); z-index: 9999;
  width: 0%; pointer-events: none;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-us { padding: 100px 0; background: var(--bg-alt); }
.why-us-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 56px;
}
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 4px; padding: 36px 32px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { border-color: rgba(232,228,222,0.4); transform: translateY(-4px); box-shadow: 0 4px 24px rgba(232,228,222,0.12); }
.why-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(232,228,222,0.1); border: 1px solid rgba(232,228,222,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--text);
  letter-spacing: -0.3px; margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--text-sub); line-height: 1.7; }
@media (max-width: 768px) {
  .why-us { padding: 64px 0; }
  .why-us-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FORM GLOW (Google Ads UTM)
============================================================ */
.form-glow {
  box-shadow: 0 0 0 2px var(--gold), 0 0 32px rgba(232,228,222,0.3) !important;
  border-radius: 4px;
  transition: box-shadow 0.6s ease !important;
}

/* ============================================================
   FOOTER SUBURB LINKS
============================================================ */
.footer-suburb-links {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
  padding: 16px 0; border-top: 1px solid var(--border);
  margin-top: 20px;
}
.footer-suburb-links a {
  font-size: 11px; color: var(--text-muted); text-decoration: none;
  transition: color 0.2s; letter-spacing: 0.5px;
}
.footer-suburb-links a:hover { color: var(--gold); }

/* ============================================================
   WORK PHOTO CAPTION
============================================================ */
.work-caption { display: none; }

/* ============================================================
   LANDING PAGE — STEPS + TRUST SIGNALS
============================================================ */
.lp-steps {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin: 20px 0 28px; padding: 16px;
  background: rgba(232,228,222,0.06); border-radius: 4px;
  border: 1px solid rgba(232,228,222,0.12);
}
.lp-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--text-sub);
}
.lp-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: #0a0906;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.lp-step-arrow { color: var(--gold); font-size: 14px; }
.lp-form-trust {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(232,228,222,0.85); margin-bottom: 20px;
}

/* ============================================================
   INSTAGRAM FOLLOW BUTTON (gold filled)
============================================================ */
.instagram-follow-btn {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--bg);
  padding: 14px 32px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #E8E4DE 0%, #F0EDE8 40%, #D8D4CE 60%, #E8E4DE 100%);
  background-size: 200% 200%;
  transition: background-position 0.4s ease, transform 0.2s;
}
.instagram-follow-btn svg { stroke: var(--bg); }
.instagram-follow-btn:hover { background-position: right center; transform: translateY(-2px); }

/* ============================================================
   HERO PULL QUOTE
============================================================ */
.hero-pull-quote {
  margin-top: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 16px;
  color: rgba(232,228,222,0.8); line-height: 1.5;
}
.hero-pull-quote cite {
  display: block; font-style: normal;
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); margin-top: 8px;
}

/* ============================================================
   SECTION SUB TEXT
============================================================ */
.section-sub {
  font-size: 15px; color: var(--text-sub);
  max-width: 520px; line-height: 1.7;
  margin-top: 16px;
}

/* ============================================================
   INTRO BACKGROUND VIDEO (home)
============================================================ */
.intro { position: relative; overflow: hidden; }
.intro-video-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; opacity:0.22; pointer-events:none; }
.intro-video-overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(15,13,10,0.55) 0%, rgba(15,13,10,0.82) 100%); pointer-events:none; }
.intro .container { position:relative; z-index:2; }

/* ============================================================
   FAQ SEARCH FILTER
============================================================ */
.faq-search-wrap { position:relative; max-width:760px; margin:0 0 14px; }
.faq-search-wrap svg { position:absolute; left:18px; top:50%; transform:translateY(-50%); color:var(--text-sub); pointer-events:none; }
.faq-search { width:100%; background:var(--bg-alt); border:1px solid var(--border); color:var(--text); font-family:'Barlow',sans-serif; font-size:15px; padding:16px 18px 16px 48px; border-radius:4px; outline:none; transition:border-color .2s, box-shadow .2s; }
.faq-search:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(232,228,222,0.10); }
.faq-search::placeholder { color:var(--text-muted); }
.faq-no-results { display:none; color:var(--text-sub); font-size:14px; padding:10px 0 22px; }
.faq-no-results a { color:var(--gold-light); }

/* ============================================================
   SERVICES PAGE — VARIED LAYOUTS
============================================================ */
.svc { padding:96px 0; position:relative; overflow:hidden; }
.svc .container { position:relative; z-index:2; }
.svc h2, .svc-band h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(30px,4vw,52px); font-weight:300; letter-spacing:-0.5px; line-height:1.08; color:var(--text); margin:14px 0 18px; }
.svc h2 em, .svc-band h2 em { font-style:italic; color:var(--gold); }
.svc-text p { font-size:16px; color:var(--text-sub); line-height:1.7; margin-bottom:26px; max-width:480px; }
.svc-actions { display:flex; gap:14px; flex-wrap:wrap; }
.svc-split { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.svc-split--rev .svc-text { order:2; } .svc-split--rev .svc-media { order:1; }
.svc-media { position:relative; border-radius:6px; overflow:hidden; aspect-ratio:4/5; background:var(--bg-card); box-shadow:0 20px 50px rgba(0,0,0,0.4); }
.svc-media video { width:100%; height:100%; object-fit:cover; display:block; }
.svc-media-badge { position:absolute; left:16px; bottom:16px; z-index:2; font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#fff; background:rgba(0,0,0,0.5); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,0.14); border-radius:999px; padding:6px 14px; }
.svc-band { position:relative; min-height:78vh; display:flex; align-items:center; overflow:hidden; padding:80px 0; }
.svc-band video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.svc-band-overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(105deg, rgba(8,6,4,0.86) 0%, rgba(8,6,4,0.55) 55%, rgba(8,6,4,0.35) 100%); }
.svc-band .container { position:relative; z-index:2; }
.svc-band .svc-text p { color:rgba(240,235,226,0.82); }
@media (max-width:768px) {
  .svc { padding:64px 0; }
  .svc-split { grid-template-columns:1fr; gap:30px; }
  .svc-split--rev .svc-text, .svc-split--rev .svc-media { order:0; }
  .svc-media { aspect-ratio:16/11; }
  .svc-band { min-height:60vh; }
  .svc-text p { max-width:100%; }
}

/* ============================================================
   HOME — WORK PREVIEW FEATURED REEL
============================================================ */
.work-feature { padding: 0 6%; margin-bottom: 40px; }
.work-feature-inner { position:relative; max-width:1100px; margin:0 auto; border-radius:6px; overflow:hidden; aspect-ratio:16/9; background:var(--bg-card); box-shadow:0 24px 60px rgba(0,0,0,0.5); }
.work-feature-inner video { width:100%; height:100%; object-fit:cover; display:block; }
.work-feature-cap { position:absolute; left:0; right:0; bottom:0; z-index:2; display:flex; justify-content:space-between; align-items:flex-end; gap:16px; padding:28px 26px 22px; background:linear-gradient(to top, rgba(8,6,4,0.85), transparent); }
.work-feature-cap .t { font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:300; color:var(--text); }
.work-feature-cap .l { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-sub); }
@media (max-width:768px) { .work-feature-inner { aspect-ratio:4/5; } .work-feature-cap .t { font-size:20px; } }

/* ============================================================
   SERVICES — IMAGE SUPPORT IN BANDS & SPLITS
============================================================ */
.svc-band img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.svc-band-overlay--strong { background:rgba(0,0,0,0.65); }
.svc-media img { width:100%; height:100%; object-fit:cover; display:block; }

/* ============================================================
   HOME — TWO REELS SIDE BY SIDE
============================================================ */
.work-duo { display:grid; grid-template-columns:1fr 1fr; gap:16px; padding:0 6%; max-width:880px; margin:0 auto; }
.work-duo .tile { position:relative; border-radius:6px; overflow:hidden; background:var(--bg-card); aspect-ratio:9/16; box-shadow:0 18px 50px rgba(0,0,0,0.5); }
.work-duo video { width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width:560px){ .work-duo { gap:10px; } }

/* ============================================================
   TWO-BUTTON STICKY MOBILE BAR (all pages)
============================================================ */
.sticky-bar { display:none; position:fixed; left:0; right:0; bottom:0; z-index:350; box-shadow:0 -4px 20px rgba(0,0,0,0.45); }
@media (max-width:1024px){ .sticky-bar { display:flex; } }
.sticky-bar a { flex:1; display:flex; align-items:center; justify-content:center; height:56px; font-size:12px; font-weight:800; letter-spacing:1.2px; text-transform:uppercase; text-decoration:none; }
.sticky-bar .s-call { background:#15110d; color:var(--gold-light); border-top:1px solid var(--border); }
.sticky-bar .s-quote { background:linear-gradient(90deg,#E8E4DE,#F0EDE8,#D8D4CE,#F0EDE8,#E8E4DE); color:#0a0906; }

/* ============================================================
   WORK PAGE — MEDIA GRIDS
============================================================ */
.media-grid { display:grid; gap:16px; padding:0 6%; grid-template-columns:repeat(3,1fr); max-width:1280px; margin:0 auto 56px; }
.media-grid--photos { grid-template-columns:repeat(2,1fr); }
.media-tile { position:relative; border-radius:6px; overflow:hidden; background:var(--bg-card); aspect-ratio:9/16; box-shadow:0 14px 40px rgba(0,0,0,0.45); transition:transform .35s ease; }
.media-tile--photo { aspect-ratio:4/3; }
.media-tile video, .media-tile img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s ease; }
.media-tile::after { content:''; position:absolute; inset:0; background:rgba(0,0,0,0.34); pointer-events:none; transition:background .35s ease; }
.media-tile--photo::after { background:rgba(0,0,0,0.55); }
.media-tile:hover { transform:translateY(-4px); }
.media-tile:hover video, .media-tile:hover img { transform:scale(1.05); }
.media-tile:hover::after { background:rgba(0,0,0,0.18); }
.media-tile .cap { position:absolute; left:14px; bottom:12px; z-index:2; }
.media-tile .cap .t { display:block; font-size:13px; font-weight:600; color:#fff; }
.media-tile .cap .l { display:block; font-size:11px; color:rgba(255,255,255,0.78); letter-spacing:0.5px; }
@media (max-width:900px){ .media-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .media-grid, .media-grid--photos { grid-template-columns:1fr; } .media-tile { aspect-ratio:4/5; } }

/* Services — darken any remaining bright photo */
.svc-media--photo::after { content:''; position:absolute; inset:0; background:rgba(0,0,0,0.55); z-index:1; pointer-events:none; }
