/* ============================================================
   MIVO — THE ELEVATED PAINTING EXPERIENCE
   Shared Stylesheet — Powered by Sherwin-Williams
   Palette: Prussian Blue #0A1E33 · Champagne Gold #C9B27C
            Warm White #F5F2EB · Rich Black #0D0D0D
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Champagne Gold */
  --gold:        #C9B27C;
  --gold-dark:   #A8905C;
  --gold-light:  #F0E9D6;
  --gold-mid:    #D9C58F;

  /* Prussian Blue (replaces the old sky blue everywhere) */
  --blue:        #0A1E33;
  --blue-dark:   #061424;
  --blue-light:  #ECEFF3;
  --blue-mid:    #2E4A68;
  --navy:        #0A1E33;

  /* Warm White / Beige — the primary site colour */
  --beige:       #F5F2EB;
  --beige-deep:  #EDE8DA;
  --cream:       #FAF8F2;
  --off-white:   #F5F2EB;
  --white:       #FFFFFF;

  --black:       #0D0D0D;

  --text:        #0A1E33;
  --text-mid:    #46586E;
  --text-light:  #8A94A2;
  --border:      #E3DCC9;

  --shadow-sm:   0 2px 12px rgba(10,30,51,.06);
  --shadow:      0 6px 28px rgba(10,30,51,.09);
  --shadow-lg:   0 16px 56px rgba(10,30,51,.12);
  --shadow-xl:   0 24px 80px rgba(10,30,51,.16);
  --r:           12px;
  --r-lg:        20px;
  --r-xl:        28px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--beige);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: 'Inter', sans-serif; }

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

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0px) rotate(-2deg); }
  50%      { transform: translateY(-10px) rotate(2deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes paintStroke {
  from { transform: scaleX(0); transform-origin: left center; }
  to   { transform: scaleX(1); transform-origin: left center; }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,178,124,.5); }
  60%      { box-shadow: 0 0 0 18px rgba(201,178,124,0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroWord {
  from { opacity: 0; transform: translateY(24px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ============================================================
   SCROLL REVEAL CLASSES  (toggled by IntersectionObserver)
   ============================================================ */
.reveal            { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.slide-r    { transform: translateX(-40px); }
.reveal.slide-l    { transform: translateX(40px); }
.reveal.scale      { transform: scale(.93); }
.reveal.visible    { opacity: 1; transform: none; }

.stagger .reveal:nth-child(1) { transition-delay: .05s; }
.stagger .reveal:nth-child(2) { transition-delay: .15s; }
.stagger .reveal:nth-child(3) { transition-delay: .25s; }
.stagger .reveal:nth-child(4) { transition-delay: .35s; }
.stagger .reveal:nth-child(5) { transition-delay: .45s; }
.stagger .reveal:nth-child(6) { transition-delay: .55s; }

/* ============================================================
   MIVO LOGO MARK
   Letterform "M I V" + bracketed champagne aperture "O"
   ============================================================ */
.mivo-mark {
  display: inline-flex; align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 1.3rem;
  letter-spacing: .38em; color: var(--navy);
  line-height: 1;
}
.mivo-o {
  position: relative; width: 32px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: .1em; color: var(--navy);
  flex-shrink: 0;
}
.mivo-o::before, .mivo-o::after {
  content: ''; position: absolute; top: 1px; bottom: 1px; width: 8px;
  border: 2px solid currentColor;
}
.mivo-o::before { left: 0; border-right: none; border-radius: 3px 0 0 3px; }
.mivo-o::after  { right: 0; border-left: none; border-radius: 0 3px 3px 0; }
.mivo-o svg {
  width: 17px; height: 17px;
  stroke: var(--gold); fill: none;
  stroke-width: 2.2; stroke-linecap: round;
}
.mivo-sub {
  font-size: .6rem; font-weight: 700; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold-dark);
  margin-left: 12px; align-self: center; padding-top: 2px;
}
/* Light variant for navy backgrounds (footer, app band) */
.mivo-mark.light, .mivo-mark.light .mivo-o { color: #fff; }
.mivo-mark.light .mivo-o svg { stroke: var(--gold); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(250,248,242,.92);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
  animation: navDrop .6s ease both;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(250,248,242,.97);
}
.nav-logo { display: flex; align-items: center; }

.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: .875rem; font-weight: 500; color: var(--text-mid);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); background: var(--gold-light); }
.nav-cta {
  background: var(--navy); color: #fff !important;
  padding: 10px 22px !important; border-radius: 9px !important;
  font-weight: 600 !important; font-size: .88rem !important;
  transition: background .2s, transform .15s, box-shadow .2s !important;
  animation: pulse 2.5s ease 2s infinite;
}
.nav-cta:hover { background: var(--blue-mid) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,30,51,.3) !important; animation: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  inset: 72px 0 0; background: var(--cream); z-index: 190;
  padding: 32px 6%; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; animation: fadeIn .25s ease; }
.mobile-menu a {
  padding: 14px 16px; border-radius: 10px;
  font-size: 1.05rem; font-weight: 500; color: var(--text-mid);
  border: 1px solid transparent; transition: all .2s;
}
.mobile-menu a:hover { color: var(--gold-dark); background: var(--gold-light); border-color: var(--border); }
.mobile-menu .mobile-cta {
  margin-top: 16px;
  background: var(--navy); color: #fff !important;
  text-align: center; border-radius: 12px !important;
  font-size: 1rem !important; font-weight: 700 !important; padding: 16px !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-size: .94rem; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; border: none; text-decoration: none;
  transition: all .22s; white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,178,124,.45); }

.btn-outline-gold {
  background: transparent; color: var(--gold-dark);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-blue {
  background: var(--navy); color: #fff;
}
.btn-blue:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(10,30,51,.28); }

.btn-outline-blue {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-blue:hover { background: var(--blue-light); transform: translateY(-2px); }

.btn-white {
  background: #fff; color: var(--navy);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.18); }

.btn-lg { padding: 17px 36px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 10px 20px; font-size: .83rem; border-radius: 8px; }

/* ============================================================
   APP STORE BADGES
   ============================================================ */
.app-badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px; padding: 9px 18px 9px 14px;
  transition: transform .18s, box-shadow .2s;
  line-height: 1.15;
}
.app-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(13,13,13,.3); }
.app-badge svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.app-badge small { display: block; font-size: .6rem; font-weight: 500; opacity: .75; letter-spacing: .02em; }
.app-badge strong { display: block; font-size: .92rem; font-weight: 600; }
/* Outlined variant for navy sections */
.app-badge.on-dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.28); }
.app-badge.on-dark:hover { background: rgba(255,255,255,.13); }

/* ============================================================
   SHERWIN-WILLIAMS BAND
   ============================================================ */
.sw-lockup {
  display: inline-flex; flex-direction: column; line-height: 1.1;
}
.sw-lockup .sw-pre {
  font-size: .66rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 4px;
}
.sw-lockup .sw-name {
  font-size: 1.18rem; font-weight: 800; letter-spacing: .02em;
  color: var(--navy); font-family: 'Inter', sans-serif; font-style: italic;
}
.sw-lockup .sw-name sup { font-size: .55em; font-style: normal; }
.sw-lockup.on-dark .sw-pre { color: rgba(255,255,255,.55); }
.sw-lockup.on-dark .sw-name { color: #fff; }

.sw-band {
  background: var(--beige-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap; text-align: center;
}
.sw-band-note {
  font-size: .88rem; color: var(--text-mid); max-width: 420px;
}

/* ============================================================
   PAGE SCAFFOLD
   ============================================================ */
.page-wrap { padding-top: 72px; }

.section { padding: 96px 5%; }
.section-sm { padding: 64px 5%; }
.section-lg { padding: 120px 5%; }

.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 820px; margin: 0 auto; }
.container-md { max-width: 1040px; margin: 0 auto; }

.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold-dark); margin-bottom: 14px;
}
.tag::before {
  content: ''; width: 18px; height: 2px;
  background: var(--gold); border-radius: 1px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700; margin-bottom: 18px;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 580px; line-height: 1.75;
}
.centered { text-align: center; }
.centered .section-sub, .centered .tag { margin-left: auto; margin-right: auto; }
.centered .section-sub { max-width: 600px; }

.text-gold { color: var(--gold-dark); }
.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-mid) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  width: 48px; height: 3px; border-radius: 2px;
  background: var(--gold); margin: 20px 0;
}
.divider.center { margin: 20px auto; }

/* ============================================================
   HERO — HOMEPAGE (light, beige, city skyline backdrop)
   ============================================================ */
.hero-light {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 70%, var(--beige-deep) 100%);
  padding: 80px 5% 96px;
}
.hero-city {
  position: absolute; left: 0; right: 0; bottom: 0; height: 46%;
  pointer-events: none; z-index: 0;
}
.hero-city img {
  width: 100%; height: 100%; object-fit: cover; object-position: center bottom;
  opacity: .13; filter: grayscale(.35) sepia(.25);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, transparent 100%);
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, transparent 100%);
}
.hero-grid {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,178,124,.16); border: 1px solid rgba(201,178,124,.45);
  color: var(--gold-dark); padding: 7px 18px; border-radius: 100px;
  font-size: .74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 24px;
  animation: fadeUp .6s ease .1s both;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s infinite;
}
.hero-kicker {
  font-size: .92rem; font-weight: 600; color: var(--text-mid);
  letter-spacing: .04em; margin-bottom: 14px;
  animation: fadeUp .6s ease .18s both;
}
.hero-h1 {
  font-size: clamp(3rem, 5.4vw, 4.8rem);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 24px; color: var(--navy);
}
.hero-h1 .word {
  display: inline-block;
  animation: heroWord .7s ease both;
  margin-right: 0.22em;
}
.hero-h1 .highlight {
  position: relative; color: var(--gold-dark); font-style: italic;
  display: inline-block;
}
.hero-h1 .highlight::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0; height: 3px;
  background: var(--gold); border-radius: 2px; z-index: -1;
  animation: paintStroke 1s ease 1.2s both;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-mid);
  max-width: 520px; margin-bottom: 30px; line-height: 1.78;
  animation: fadeUp .7s ease .9s both;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  margin-bottom: 26px;
  animation: fadeUp .7s ease 1.05s both;
}
.hero-points {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
  margin-bottom: 30px; max-width: 480px;
  animation: fadeUp .7s ease 1.15s both;
}
.hero-point {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .85rem; color: var(--text-mid); font-weight: 500;
}
.hero-point .check-icon { margin-top: 2px; }
.hero-proofline {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  animation: fadeUp .7s ease 1.28s both;
}
.hero-stars { color: var(--gold-dark); font-size: 1rem; letter-spacing: 2px; }
.hero-proof-text { font-size: .83rem; color: var(--text-mid); }
.hero-proof-divider { width: 1px; height: 20px; background: var(--border); }

/* Hero visual (right column) */
.hero-visual { position: relative; animation: fadeIn 1s ease .5s both; }
.hero-visual-img {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); aspect-ratio: 4/4.6;
  border: 6px solid #fff;
}
.hero-visual-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; left: -28px; bottom: 42px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px; max-width: 300px;
  animation: float 4.5s ease-in-out infinite;
}
.hero-float-card .hfc-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.hero-float-card strong { display: block; font-size: .86rem; color: var(--navy); }
.hero-float-card span { font-size: .74rem; color: var(--text-mid); line-height: 1.4; display: block; }
.hero-float-sw {
  position: absolute; right: -14px; top: 34px;
  background: var(--navy); color: #fff;
  border-radius: var(--r); padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  animation: float2 5s ease-in-out infinite;
}
.hero-float-sw strong { display: block; font-size: .84rem; letter-spacing: .04em; color: var(--gold-mid); font-style: italic; margin-top: 2px; }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-wrap {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  padding: 0 32px;
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--navy); opacity: .92;
  flex-shrink: 0;
}
.marquee-sep { color: rgba(10,30,51,.35); }

/* ============================================================
   TRUST BAR (light)
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 20px; padding: 32px 5%;
}
.trust-item { display: flex; align-items: center; gap: 14px; color: var(--navy); }
.trust-icon { font-size: 1.8rem; }
.trust-stat strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; line-height: 1; color: var(--navy);
}
.trust-stat span { font-size: .75rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: .06em; }
.trust-div { width: 1px; height: 48px; background: var(--border); }

/* ============================================================
   SECTION — HOW IT WORKS
   ============================================================ */
.steps-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.steps-wrap.cols-4 { grid-template-columns: repeat(4,1fr); gap: 22px; }
.step-card {
  background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 36px 28px; position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.steps-wrap.cols-4 .step-card { padding: 30px 24px; }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-mid); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 700; line-height: 1;
  color: var(--gold-light); position: absolute; top: 20px; right: 24px;
  pointer-events: none; user-select: none;
}
.step-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
  background: var(--gold-light);
}
.step-card h4 { font-size: 1.15rem; font-family: 'Inter',sans-serif; font-weight: 700; margin-bottom: 10px; }
.steps-wrap.cols-4 .step-card h4 { font-size: 1.02rem; }
.step-card p  { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }
.steps-wrap.cols-4 .step-card p { font-size: .84rem; }

/* Consultant band ("One Person. From Start to Finish.") */
.consultant-band {
  margin-top: 48px;
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: center;
  color: #fff;
  position: relative; overflow: hidden;
}
.consultant-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 20%, rgba(201,178,124,.16) 0%, transparent 55%);
  pointer-events: none;
}
.consultant-avatar {
  width: 84px; height: 84px; border-radius: 50%;
  border: 3px solid var(--gold); overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; position: relative;
}
.consultant-avatar img { width: 100%; height: 100%; object-fit: cover; }
.consultant-band .cb-kicker {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-mid); margin-bottom: 8px;
}
.consultant-band h3 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; }
.consultant-band p { color: rgba(255,255,255,.72); font-size: .92rem; max-width: 520px; }

/* ============================================================
   SECTION — SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.service-card {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); position: relative;
  transition: transform .28s, box-shadow .28s;
  background: #fff;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.service-img {
  height: 280px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-light), var(--gold-light));
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,30,51,.68) 0%, transparent 55%);
}
.service-tag-overlay {
  position: absolute; top: 20px; left: 20px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: 100px; padding: 6px 14px;
  font-size: .73rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--gold-dark);
}
.service-title-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 700; line-height: 1.15;
}

.service-body { background: #fff; padding: 28px; }
.service-body p { font-size: .9rem; color: var(--text-mid); margin-bottom: 20px; line-height: 1.7; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.service-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .87rem; color: var(--text-mid);
}
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-light); display: flex; align-items: center;
  justify-content: center; font-size: .65rem; color: var(--gold-dark);
  flex-shrink: 0; margin-top: 1px;
}

/* "Everything We Can Do" checklist columns */
.cando-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cando-col {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px 28px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.cando-col:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-mid); }
.cando-col h4 {
  font-family: 'Inter', sans-serif; font-size: .82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em; color: var(--gold-dark);
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cando-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.cando-col li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .86rem; color: var(--text-mid);
}
.chip-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 28px;
}
.chip {
  background: var(--beige-deep); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 16px; text-align: center;
}
.chip .chip-icon { font-size: 1.4rem; margin-bottom: 8px; }
.chip strong { display: block; font-size: .84rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.chip span { font-size: .76rem; color: var(--text-mid); line-height: 1.45; display: block; }

/* ============================================================
   SECTION — GALLERY
   ============================================================ */
.gallery-grid {
  column-count: 3; column-gap: 16px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,30,51,.65) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  color: var(--navy); font-size: .85rem; font-weight: 600;
  background: rgba(201,178,124,.95); padding: 6px 12px; border-radius: 6px;
}

/* ============================================================
   SECTION — CONSULTATION CTA BANNER (navy)
   ============================================================ */
.quote-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #123054 100%);
  padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.quote-cta-banner h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff; margin-bottom: 16px;
}
.quote-cta-banner p { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.7; }
.quote-options { display: flex; flex-direction: column; gap: 16px; }
.quote-option-btn {
  display: flex; align-items: center; gap: 18px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg); padding: 22px 24px;
  cursor: pointer; transition: all .25s; text-decoration: none;
}
.quote-option-btn:hover { background: rgba(255,255,255,.13); border-color: rgba(201,178,124,.6); transform: translateX(4px); }
.qob-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.qob-icon.gold { background: rgba(201,178,124,.25); }
.qob-icon.blue { background: rgba(255,255,255,.12); }
.qob-text strong { display: block; color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 3px; }
.qob-text span   { color: rgba(255,255,255,.6); font-size: .83rem; }
.qob-arrow { margin-left: auto; color: rgba(255,255,255,.4); font-size: 1.2rem; transition: transform .2s; }
.quote-option-btn:hover .qob-arrow { transform: translateX(5px); color: var(--gold); }

/* ============================================================
   SECTION — WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-grid.cols-5 { grid-template-columns: repeat(5,1fr); gap: 18px; }
.why-card {
  background: #fff; border-radius: var(--r-lg);
  padding: 32px 26px; border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.why-grid.cols-5 .why-card { padding: 26px 20px; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-mid); }
.why-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.why-icon.gold { background: var(--gold-light); }
.why-icon.blue { background: var(--blue-light); }
.why-card h4 {
  font-size: 1rem; font-family: 'Inter',sans-serif;
  font-weight: 700; margin-bottom: 10px;
}
.why-grid.cols-5 .why-card h4 { font-size: .92rem; }
.why-card p { font-size: .86rem; color: var(--text-mid); line-height: 1.65; }
.why-grid.cols-5 .why-card p { font-size: .8rem; }

/* ============================================================
   SECTION — WHERE WE OPERATE
   ============================================================ */
.operate-section {
  position: relative; overflow: hidden;
  background: var(--beige-deep);
}
.operate-city-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.operate-city-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 70%;
  opacity: .1; filter: grayscale(.4) sepia(.3);
}
.operate-city-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--beige-deep) 0%, rgba(237,232,218,.4) 45%, var(--beige-deep) 100%);
}
.operate-inner { position: relative; z-index: 2; }
.operate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.country-card {
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px;
}
.country-card-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 22px; flex-wrap: wrap;
}
.country-card-head h3 {
  font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy);
  display: flex; align-items: center; gap: 10px;
}
.country-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-light); border: 1px solid var(--gold-mid);
  color: var(--gold-dark); border-radius: 100px; padding: 6px 14px;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.city-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px 18px; list-style: none;
}
.city-list li {
  font-size: .9rem; color: var(--text-mid); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.city-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.operate-more {
  margin-top: 28px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center;
}
.operate-more-div { width: 1px; height: 64px; background: var(--border); }
.operate-more h4 { font-family: 'Inter',sans-serif; font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.operate-more p { font-size: .87rem; color: var(--text-mid); }
.operate-more .om-title-gold { font-family:'Cormorant Garamond',serif; font-size:1.4rem; font-weight:700; font-style: italic; color: var(--gold-dark); text-transform:none; letter-spacing:0; }

/* Province/state grid (contact page) */
.province-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 22px; }
.province-col h5 {
  font-family: 'Inter',sans-serif; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em; color: var(--gold-dark);
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.province-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.province-col li { font-size: .84rem; color: var(--text-mid); }

/* ============================================================
   SECTION — TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-grid.cols-4 { grid-template-columns: repeat(4,1fr); gap: 18px; }
.testi-card {
  background: #fff; border-radius: var(--r-lg);
  padding: 32px; border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.testi-grid.cols-4 .testi-card { padding: 26px 22px; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: .7;
  color: var(--gold-mid); margin-bottom: 12px;
}
.testi-stars { color: var(--gold-dark); font-size: 1rem; margin-bottom: 16px; }
.testi-text { font-size: .91rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-grid.cols-4 .testi-text { font-size: .85rem; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-weight: 700; font-size: .92rem; flex-shrink: 0;
}
.testi-info strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text); }
.testi-info span   { font-size: .78rem; color: var(--text-light); }

/* ============================================================
   SECTION — FAQ
   ============================================================ */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 22px 0;
  font-size: .98rem; font-weight: 600; color: var(--text);
  text-align: left; font-family: 'Inter',sans-serif;
  transition: color .2s;
}
.faq-btn:hover { color: var(--gold-dark); }
.faq-chevron {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .7rem; color: var(--text-light);
  transition: all .3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--gold-light); border-color: var(--gold-mid); color: var(--gold-dark); }
.faq-body {
  overflow: hidden; max-height: 0;
  transition: max-height .38s ease, padding .25s ease;
}
.faq-item.open .faq-body { max-height: 360px; }
.faq-body p { padding: 0 0 22px; font-size: .9rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   APP / FINAL CTA BANNER (navy — the one intentionally dark band)
   ============================================================ */
.gold-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0E2946 55%, var(--blue-dark) 100%);
  padding: 88px 5%; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.gold-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(201,178,124,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(201,178,124,.1) 0%, transparent 50%);
  pointer-events: none;
}
.gold-banner h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff; margin-bottom: 16px; position: relative;
}
.gold-banner h2 em { color: var(--gold-mid); font-style: italic; }
.gold-banner p {
  color: rgba(255,255,255,.78); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto 36px; position: relative;
}
.gold-banner .btn-white { position: relative; }
.gold-banner .app-badges { justify-content: center; position: relative; margin-top: 26px; }
.gold-banner-points {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  margin: 0 auto 8px; position: relative;
}
.gold-banner-points span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; color: rgba(255,255,255,.82); font-weight: 500;
}
.gold-banner-points .gb-check { color: var(--gold-mid); font-weight: 800; }
.gold-banner-contact {
  display: flex; justify-content: center; gap: 40px;
  flex-wrap: wrap; margin-top: 36px; position: relative;
}
.gold-banner-contact a, .gold-banner-contact span {
  color: rgba(255,255,255,.85); font-size: .9rem;
  display: flex; align-items: center; gap: 8px; transition: color .2s;
}
.gold-banner-contact a:hover { color: var(--gold-mid); }
.gold-banner .sw-inline {
  position: relative; margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy); color: rgba(255,255,255,.6);
  padding: 72px 5% 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p {
  font-size: .86rem; line-height: 1.75; max-width: 300px; margin-top: 16px;
}
.footer-brand .nav-logo { margin-bottom: 4px; }
.footer-col h5 {
  color: #fff; font-family: 'Inter',sans-serif;
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li span {
  font-size: .86rem; color: rgba(255,255,255,.55);
  transition: color .2s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold-mid); }
.footer-col .app-badges { margin-top: 6px; }
.footer-col .app-badge { padding: 8px 14px 8px 12px; }
.footer-col .app-badge strong { font-size: .84rem; }

.footer-sw {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: .8rem; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .8rem; font-weight: 700;
  text-decoration: none; transition: all .2s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ============================================================
   PAGE HERO BANNER (inner pages — light beige with skyline)
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  padding: 104px 5% 76px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,178,124,.55), transparent);
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero .tag { animation: fadeUp .5s ease .1s both; }
.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  animation: fadeUp .6s ease .2s both;
  color: var(--navy);
}
.page-hero h1 em { color: var(--gold-dark); font-style: italic; }
.page-hero p {
  font-size: 1.08rem; color: var(--text-mid);
  max-width: 620px; margin-top: 18px;
  animation: fadeUp .6s ease .35s both;
}
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--text-light);
  margin-bottom: 28px;
  animation: fadeUp .5s ease both;
}
.page-hero-breadcrumb a { color: var(--gold-dark); }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span { opacity: .5; }

/* ============================================================
   CONSULTATION WIZARD (quote.html)
   ============================================================ */
.quote-page {
  background: linear-gradient(180deg, var(--beige-deep) 0%, var(--beige) 40%);
  min-height: 100vh;
  padding: 60px 5% 80px;
}
.quote-wrap {
  max-width: 820px; margin: 0 auto;
  background: #fff; border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.quote-header-bar {
  background: linear-gradient(135deg, var(--navy) 0%, #123054 100%);
  padding: 40px 48px;
}
.quote-header-bar .tag { color: var(--gold-mid); }
.quote-header-bar .tag::before { background: var(--gold-mid); }
.quote-header-bar h1 { color: #fff; font-size: 2rem; margin-bottom: 8px; }
.quote-header-bar p { color: rgba(255,255,255,.75); font-size: .92rem; }

.progress-bar-wrap {
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 20px 48px;
  display: flex; align-items: center; gap: 0; overflow-x: auto;
}
.prog-step-outer { display: flex; align-items: center; flex-shrink: 0; }
.prog-dot {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  border: 2px solid var(--border); background: #fff; color: var(--text-light);
  flex-shrink: 0; transition: all .3s; position: relative; z-index: 1;
}
.prog-dot.active { border-color: var(--navy); background: var(--navy); color: #fff; }
.prog-dot.done { border-color: var(--gold); background: var(--gold-light); color: var(--gold-dark); }
.prog-line { flex: 1; min-width: 20px; height: 2px; background: var(--border); transition: background .3s; }
.prog-line.done { background: var(--gold); }
.prog-label { font-size: .65rem; color: var(--text-light); margin-top: 5px; white-space: nowrap; }

.quote-body { padding: 44px 48px; }
.q-step { display: none; }
.q-step.active { display: block; animation: fadeUp .45s ease; }
.q-step-title { font-size: 1.55rem; font-weight: 700; margin-bottom: 6px; font-family:'Cormorant Garamond',serif; }
.q-step-sub { font-size: .9rem; color: var(--text-mid); margin-bottom: 30px; }

/* Card selector */
.card-select { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(148px,1fr)); }
.card-opt {
  border: 2px solid var(--border); border-radius: var(--r);
  padding: 22px 16px; cursor: pointer; text-align: center;
  transition: all .2s; background: #fff; position: relative;
}
.card-opt:hover { border-color: var(--gold); background: var(--gold-light); }
.card-opt.sel { border-color: var(--gold); background: var(--gold-light); }
.card-opt.sel::after {
  content: '✓'; position: absolute; top: 8px; right: 10px;
  font-size: .72rem; color: var(--gold-dark); font-weight: 800;
}
.card-opt .co-icon { font-size: 2rem; margin-bottom: 10px; }
.card-opt strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text); }
.card-opt small  { font-size: .75rem; color: var(--text-light); display: block; margin-top: 4px; }

/* Check selector */
.check-select { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
.check-opt {
  border: 2px solid var(--border); border-radius: var(--r);
  padding: 14px 16px; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  transition: all .2s; background: #fff;
}
.check-opt:hover { border-color: var(--gold); background: var(--gold-light); }
.check-opt.sel { border-color: var(--gold); background: var(--gold-light); }
.check-box {
  width: 20px; height: 20px; border-radius: 5px;
  border: 2px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; transition: all .2s;
}
.check-opt.sel .check-box { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.check-txt strong { font-size: .88rem; color: var(--text); font-weight: 600; display: block; }
.check-txt small  { font-size: .75rem; color: var(--text-light); }

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--border); border-radius: var(--r-lg);
  padding: 48px 32px; text-align: center; cursor: pointer;
  transition: all .2s; background: var(--cream); position: relative;
}
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--gold); background: var(--gold-light); }
.upload-zone .uz-icon { font-size: 2.8rem; margin-bottom: 14px; }
.upload-zone h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; font-family:'Inter',sans-serif; }
.upload-zone p  { font-size: .85rem; color: var(--text-mid); margin-bottom: 16px; }
.upload-zone small { font-size: .75rem; color: var(--text-light); }

.upload-preview { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.upload-preview img, .upload-preview .vid-thumb {
  width: 72px; height: 72px; border-radius: 8px; object-fit: cover;
  border: 2px solid var(--border);
}
.upload-preview .vid-thumb {
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; color: var(--navy); cursor: default;
}

/* Calendar picker */
.cal-wrap { overflow-x: auto; }
.cal-days { display: grid; grid-auto-columns: minmax(110px,1fr); grid-auto-flow: column; gap: 12px; min-width: max-content; }
.cal-day-header {
  text-align: center; padding: 10px 8px 12px;
  font-size: .78rem; font-weight: 700; color: var(--text-mid);
  text-transform: uppercase; letter-spacing: .06em;
}
.cal-day-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--text);
  display: block; line-height: 1.1; margin-bottom: 4px;
}
.time-slots { display: flex; flex-direction: column; gap: 8px; }
.time-slot {
  border: 2px solid var(--border); border-radius: 8px;
  padding: 10px 14px; cursor: pointer; text-align: center;
  font-size: .83rem; font-weight: 600; color: var(--text-mid);
  background: #fff; transition: all .2s;
}
.time-slot:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-light); }
.time-slot.sel { border-color: var(--gold-dark); background: var(--gold); color: var(--navy); }

/* Form elements */
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border: 2px solid var(--border);
  border-radius: 9px; font-size: .9rem; font-family: 'Inter',sans-serif;
  color: var(--text); background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,178,124,.18);
}

/* Wizard nav buttons */
.q-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border);
  gap: 12px;
}
.q-counter { font-size: .82rem; color: var(--text-light); }
.q-btn-back {
  background: none; border: 2px solid var(--border); border-radius: 9px;
  padding: 12px 24px; cursor: pointer; font-size: .9rem;
  font-weight: 600; color: var(--text-mid); font-family: 'Inter',sans-serif;
  transition: all .2s;
}
.q-btn-back:hover { border-color: var(--text-mid); color: var(--text); }
.q-btn-next {
  background: var(--navy); color: #fff; border: none;
  border-radius: 9px; padding: 14px 32px;
  cursor: pointer; font-size: .94rem; font-weight: 700;
  font-family: 'Inter',sans-serif; transition: all .2s;
  display: flex; align-items: center; gap: 8px;
}
.q-btn-next:hover { background: var(--blue-mid); transform: translateY(-1px); }

/* Confirmation screen */
.confirm-screen {
  text-align: center; padding: 24px 0;
}
.confirm-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 24px;
  animation: scaleIn .5s ease both;
}
.confirm-screen h2 { font-size: 2rem; margin-bottom: 10px; }
.confirm-screen > p { font-size: .95rem; color: var(--text-mid); max-width: 460px; margin: 0 auto 32px; }
.confirm-details {
  background: var(--cream); border-radius: var(--r-lg);
  padding: 24px; text-align: left; max-width: 440px; margin: 0 auto 32px;
}
.confirm-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.confirm-row:last-child { border: none; }
.confirm-row .cl { color: var(--text-mid); }
.confirm-row .cv { font-weight: 600; color: var(--text); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-card {
  background: var(--cream); border-radius: var(--r-xl);
  padding: 40px; border: 1px solid var(--border);
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border: none; padding-bottom: 0; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--gold-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.ci-text strong { display: block; font-size: .85rem; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.ci-text a, .ci-text p { font-size: .95rem; color: var(--text); font-weight: 500; }
.ci-text a:hover { color: var(--gold-dark); }

.contact-form-card {
  background: #fff; border-radius: var(--r-xl);
  padding: 44px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5; position: relative;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: #fff; border-radius: var(--r);
  padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-img-accent strong { display: block; font-family: 'Cormorant Garamond',serif; font-size: 2.5rem; font-weight: 700; line-height: 1; color: var(--gold-mid); }
.about-img-accent span { font-size: .78rem; opacity: .85; text-transform: uppercase; letter-spacing: .06em; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card {
  padding: 32px 24px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h4 { font-size: 1rem; font-family: 'Inter',sans-serif; font-weight: 700; margin-bottom: 10px; }
.value-card p  { font-size: .86rem; color: var(--text-mid); line-height: 1.65; }

/* ============================================================
   WHY-US PAGE
   ============================================================ */
.problem-box {
  background: var(--cream); border-radius: var(--r-xl);
  padding: 48px; border-left: 4px solid var(--gold);
}
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.solution-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border-radius: var(--r); padding: 22px;
  border: 1px solid var(--border); transition: all .2s;
}
.solution-item:hover { border-color: var(--gold-mid); box-shadow: var(--shadow-sm); }
.sol-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.solution-item h4 { font-size: .95rem; font-family: 'Inter',sans-serif; font-weight: 700; margin-bottom: 6px; }
.solution-item p  { font-size: .84rem; color: var(--text-mid); line-height: 1.6; }
.guarantee-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #123054 100%);
  border-radius: var(--r-xl); padding: 56px 48px;
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center;
  color: #fff;
}
.guarantee-shield {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(201,178,124,.18); backdrop-filter: blur(10px);
  border: 1px solid rgba(201,178,124,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; flex-shrink: 0;
}
.guarantee-banner h3 { font-size: 2rem; color: #fff; margin-bottom: 12px; }
.guarantee-banner p  { color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.75; max-width: 580px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.price-range {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); border: 1px solid var(--gold-mid);
  color: var(--gold-dark); padding: 8px 16px; border-radius: 100px;
  font-size: .82rem; font-weight: 700; margin-bottom: 20px;
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */

/* ── Tablet: 768-1024 ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .guarantee-two-col, .sw-two-col { grid-template-columns: 1fr !important; gap: 36px !important; }
  .hero-visual { max-width: 520px; }
  .hero-h1 { font-size: clamp(2.8rem, 6vw, 4.2rem); }
  .steps-wrap, .steps-wrap.cols-4 { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .why-grid, .why-grid.cols-5 { grid-template-columns: repeat(2,1fr); }
  .testi-grid, .testi-grid.cols-4 { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { column-count: 2; }
  .cando-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .chip-row { grid-template-columns: repeat(2,1fr); }
  .operate-grid { grid-template-columns: 1fr; }
  .operate-more { grid-template-columns: 1fr; gap: 20px; }
  .operate-more-div { width: 100%; height: 1px; }
  .province-grid { grid-template-columns: repeat(3,1fr); }
  .consultant-band { grid-template-columns: 1fr; text-align: center; }
  .consultant-avatar { margin: 0 auto; }
  .consultant-band .btn { margin: 0 auto; }
  .quote-cta-banner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { aspect-ratio: 16/9; max-height: 380px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 36px; }
  .service-detail.reverse { direction: ltr; }
  .guarantee-banner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-shield { margin: 0 auto; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .quote-body { padding: 32px 28px; }
  .quote-header-bar { padding: 32px 28px; }
  .progress-bar-wrap { padding: 18px 28px; }
}

/* ── Mobile: <768 ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-light { padding: 48px 5% 64px; }
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero-sub { font-size: 1rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-lg { width: 100%; justify-content: center; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-float-card { left: 8px; bottom: 16px; max-width: 250px; padding: 12px 14px; }
  .hero-float-sw { right: 8px; top: 14px; }

  .trust-bar {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 0; padding: 0;
  }
  .trust-item {
    flex-direction: column; gap: 6px; text-align: center;
    padding: 20px 12px;
  }
  .trust-div { display: none; }
  .trust-icon { font-size: 1.4rem; }
  .trust-stat strong { font-size: 1.5rem; }

  .steps-wrap, .steps-wrap.cols-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid, .why-grid.cols-5 { grid-template-columns: 1fr; }
  .testi-grid, .testi-grid.cols-4 { grid-template-columns: 1fr; }
  .gallery-grid { column-count: 2; }
  .chip-row { grid-template-columns: 1fr 1fr; }
  .city-list { grid-template-columns: repeat(2,1fr); }
  .province-grid { grid-template-columns: repeat(2,1fr); }
  .country-card { padding: 24px 20px; }
  .consultant-band { padding: 32px 24px; }

  .quote-cta-banner { padding: 52px 5%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
  .card-select { grid-template-columns: 1fr 1fr; }
  .check-select { grid-template-columns: 1fr; }
  .q-nav { flex-direction: column-reverse; }
  .q-btn-back, .q-btn-next { width: 100%; justify-content: center; }
  .quote-body { padding: 24px 20px; }
  .quote-header-bar { padding: 28px 20px; }
  .progress-bar-wrap { padding: 16px 20px; }
  .section { padding: 64px 5%; }
  .section-lg { padding: 80px 5%; }

  .page-hero { padding: 56px 5% 48px; }
  .contact-form-card, .contact-info-card { padding: 28px 20px; }
  .guarantee-banner { padding: 36px 24px; gap: 24px; }
  .solution-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-height: 300px; }
  .problem-box { padding: 28px 24px; }
}

/* ── Small mobile: <480 ── */
@media (max-width: 480px) {
  .card-select { grid-template-columns: 1fr; }
  .hero-proofline { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-proof-divider { display: none; }
  .gold-banner-contact { flex-direction: column; gap: 16px; }
  .testi-card { padding: 24px; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr 1fr; }
  .province-grid { grid-template-columns: 1fr 1fr; }
  .app-badges { width: 100%; }
  .app-badge { flex: 1; justify-content: center; }
}
