/* =====================================================================
   Geocon Property Care — modern site stylesheet
   Carpet cleaning & exterior cleaning · UK
   Brand: luxury BLACK & GOLD. Tokens live in :root.
   ===================================================================== */

:root {
  /* Brand — metallic gold + near-black */
  --brand:        #c8a24a;   /* metallic gold */
  --brand-600:    #ad8634;
  --brand-700:    #8a6a26;
  --brand-900:    #0b0b0d;   /* near-black (matches logo) */
  --accent:       #e7c96f;   /* light gold */
  --accent-600:   #c8a24a;

  --ink:          #17161a;
  --body:         #4c4843;
  --muted:        #8c857b;
  --line:         #ece8e1;
  --line-soft:    #f2efe9;

  --bg:           #ffffff;
  --bg-soft:      #f7f5f0;
  --bg-tint:      #f6efdc;   /* warm gold tint */

  --gold-grad: linear-gradient(135deg, #f1d98a, #c8a24a 55%, #a8842f);

  --radius:       20px;
  --radius-sm:    13px;
  --radius-xs:    9px;

  --shadow-sm:    0 2px 8px rgba(20,18,12,.07);
  --shadow:       0 16px 40px -12px rgba(20,18,12,.18);
  --shadow-lg:    0 32px 70px -18px rgba(20,18,12,.30);
  --shadow-brand: 0 18px 40px -12px rgba(168,134,52,.45);
  --shadow-accent:0 16px 34px -10px rgba(200,162,74,.45);

  --maxw:         1200px;
  --ease:         cubic-bezier(.22,.61,.36,1);

  --ff-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --ff-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-700); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--ff-head); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 4vw, 2.85rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1rem; }
::selection { background: var(--brand); color: #0b0b0d; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tint { background:
    radial-gradient(120% 120% at 100% 0%, var(--bg-tint) 0%, transparent 55%),
    var(--bg-soft); }
.section--dark {
  background:
    radial-gradient(90% 120% at 0% 0%, #1c1c22 0%, transparent 60%),
    radial-gradient(90% 120% at 100% 100%, rgba(200,162,74,.16) 0%, transparent 55%),
    var(--brand-900);
  color: #cabfa6;
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-700); margin-bottom: 16px;
  padding: 7px 14px; border-radius: 50px;
  background: var(--bg-tint); border: 1px solid #ecdcae;
}
.eyebrow::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.section--dark .eyebrow { color: var(--accent); background: rgba(231,201,111,.08); border-color: rgba(231,201,111,.2); }
.lead { font-size: 1.18rem; color: var(--body); max-width: 640px; line-height: 1.65; }
.section--dark .lead { color: #cabfa6; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin: 0 auto 60px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--ff-body); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 50px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .2s, border-color .25s;
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn::after { /* sheen */
  content:""; position:absolute; top:0; left:-120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.btn:hover::after { left: 130%; }
.btn--primary { background: var(--gold-grad); color: #1c1505; box-shadow: var(--shadow-accent); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -10px rgba(200,162,74,.6); }
.btn--brand { background: linear-gradient(135deg, #1c1c21, #0e0e11); color: var(--accent); border-color: rgba(200,162,74,.4); box-shadow: var(--shadow); }
.btn--brand:hover { transform: translateY(-3px); border-color: var(--brand); color: #f1d98a; }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); border-color:#fff; transform: translateY(-3px); }
.btn--outline { background:#fff; color: var(--brand-700); border-color: var(--line); }
.btn--outline:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 18px 36px; font-size: 1.06rem; }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 80;
  background: var(--gold-grad); transition: width .1s linear; }

/* ---------- Top bar ---------- */
.topbar { background: #08080a; color: #b8ad97; font-size: .85rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: #f3efe6; font-weight: 600; }
.topbar a:hover { color: var(--accent); }
.topbar__left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 15px; height: 15px; flex: none; color: var(--brand); }
.topbar__badges { display: flex; gap: 16px; }

/* ---------- Header (dark, premium) ---------- */
.header {
  position: sticky; top: 0; z-index: 70;
  background: rgba(11,11,13,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(200,162,74,.12);
  transition: box-shadow .3s var(--ease), background .3s, border-color .3s, padding .3s;
}
.header.scrolled { background: rgba(11,11,13,.94); box-shadow: 0 10px 30px -14px rgba(0,0,0,.7); border-bottom-color: rgba(200,162,74,.25); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 84px; transition: min-height .3s; }
.header.scrolled .nav { min-height: 72px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand__logo { height: 56px; width: auto; display: block; transition: height .3s var(--ease); }
.header.scrolled .brand__logo { height: 48px; }
.brand__fallback { display: none; align-items: center; gap: 13px; }
.brand__mark {
  width: 50px; height: 50px; border-radius: 14px; flex: none;
  background: var(--gold-grad);
  display: grid; place-items: center; box-shadow: var(--shadow-brand);
  transition: transform .3s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.05); }
.brand__mark svg { width: 27px; height: 27px; }
.brand__name { font-family: var(--ff-head); font-weight: 800; color: #f5f1e8; font-size: 1.16rem; line-height: 1.05; letter-spacing: -.02em; }
.brand__name span { display: block; font-family: var(--ff-body); font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  position: relative; display: block; padding: 10px 16px; border-radius: 9px;
  color: #e9e5db; font-weight: 600; font-size: .97rem; transition: color .2s;
}
.nav__links a::after {
  content:""; position:absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); border-radius: 2px;
}
.nav__links a:hover, .nav__links a.active { color: var(--accent); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
/* Nav dropdown */
.nav__has-dropdown { position: relative; }
.nav__chevron { width: 13px; height: 13px; margin-left: 3px; vertical-align: middle; transition: transform .2s var(--ease); }
.nav__dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: #1a1814; border: 1px solid rgba(200,162,74,.18);
  border-radius: 12px; min-width: 210px; padding: 6px 0;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.55); z-index: 200;
  list-style: none; margin: 0;
}
.nav__dropdown li a {
  display: block; padding: 10px 20px; color: #cdc7bb; font-size: .9rem;
  font-weight: 500; transition: color .15s, background .15s; border-radius: 0;
}
.nav__dropdown li a::after { display: none; }
.nav__dropdown li a:hover { color: var(--accent); background: rgba(200,162,74,.08); }
.nav__has-dropdown:hover .nav__dropdown,
.nav__has-dropdown:focus-within .nav__dropdown { display: block; }
.nav__has-dropdown:hover .nav__chevron,
.nav__has-dropdown:focus-within .nav__chevron { transform: rotate(180deg); }

.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { font-family: var(--ff-head); font-weight: 800; color: #f5f1e8; font-size: 1.05rem; white-space: nowrap; }
.nav__phone span { display:block; font-family: var(--ff-body); font-size: .64rem; font-weight: 600; color: #b6ad9e; letter-spacing: .04em; margin-top: 1px; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 9px; }
.burger span { display: block; width: 26px; height: 2.5px; background: #ece7da; border-radius: 3px; margin: 5px 0; transition: .3s var(--ease); }
.burger.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #f0ead9; padding: 120px 0 130px; overflow: hidden;
  background: var(--brand-900);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__bg::after {
  content:""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(8,8,10,.95) 0%, rgba(12,12,15,.78) 48%, rgba(8,8,10,.32) 100%),
    linear-gradient(0deg, rgba(8,8,10,.6), transparent 42%);
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
  background: rgba(200,162,74,.12); border: 1px solid rgba(200,162,74,.32);
  padding: 8px 16px; border-radius: 50px; font-size: .85rem; font-weight: 600; color: #f0ead9;
  backdrop-filter: blur(6px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 0 rgba(200,162,74,.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(200,162,74,.6);} 70%{box-shadow:0 0 0 10px rgba(200,162,74,0);} 100%{box-shadow:0 0 0 0 rgba(200,162,74,0);} }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .grad { background: linear-gradient(100deg, #f4dd92, #c8a24a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: 1.22rem; color: #ded6c4; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 15px; margin: 30px 0 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 26px; font-size: .95rem; color: #d8cfba; }
.hero__trust div { display: flex; align-items: center; gap: 9px; }
.hero__trust svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

/* Glass quote card */
.quote-card {
  background: rgba(255,255,255,.97); color: var(--body);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 32px 30px; border: 1px solid rgba(255,255,255,.6);
}
.quote-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.quote-card p.sub { font-size: .94rem; color: var(--muted); margin-bottom: 20px; }
.field { margin-bottom: 15px; }
.field label { display:block; font-size:.8rem; font-weight:700; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: .95rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-xs);
  background: var(--bg-soft); color: var(--ink); transition: border .2s, background .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #b0a89c; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(200,162,74,.18);
}
.field textarea { resize: vertical; min-height: 88px; }
.form-note { font-size: .79rem; color: var(--muted); margin: 8px 0 0; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

/* ---------- Stats bar ---------- */
.stats { margin-top: -52px; position: relative; z-index: 5; }
.stats__inner {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 8px; border: 1px solid var(--line-soft);
}
.stat { text-align: center; padding: 24px 18px; position: relative; }
.stat + .stat::before { content:""; position:absolute; left:0; top: 22%; height: 56%; width: 1px; background: var(--line); }
.stat b { display: block; font-family: var(--ff-head); font-size: 2.3rem; font-weight: 800; color: var(--brand-600); line-height: 1; letter-spacing: -.03em; }
.stat span { font-size: .9rem; color: var(--muted); font-weight: 500; }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.scard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.scard:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: #ecdcae; }
.scard__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.scard:hover .scard__media img { transform: scale(1.08); }
.scard__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 45%, rgba(8,8,10,.6)); }
.scard__tag {
  position: absolute; left: 16px; top: 16px; z-index: 2;
  background: rgba(11,11,13,.82); color: var(--accent);
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 50px; backdrop-filter: blur(4px); border: 1px solid rgba(200,162,74,.3);
}
.scard__icon {
  position: absolute; right: 16px; bottom: 16px; z-index: 2;
  width: 56px; height: 56px; border-radius: 15px;
  background: var(--gold-grad);
  display: grid; place-items: center; box-shadow: var(--shadow-brand);
}
.scard__icon svg { width: 28px; height: 28px; color: #1c1505; }
.scard__body { padding: 30px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.scard__body h3 { margin-bottom: 9px; }
.scard__body p { font-size: .97rem; margin-bottom: 16px; }
.scard__list { list-style: none; padding: 0; margin: 0 0 20px; }
.scard__list li { font-size: .9rem; padding-left: 26px; position: relative; margin-bottom: 8px; }
.scard__list li::before {
  content:""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/11px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/11px no-repeat;
}
.scard .tlink { margin-top: auto; font-weight: 700; font-size: .95rem; color: var(--brand-700); display: inline-flex; align-items: center; gap: 7px; }
.scard .tlink svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.scard:hover .tlink svg { transform: translateX(5px); }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.media {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: var(--gold-grad); min-height: 420px;
}
.media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.media--placeholder { display: grid; place-items: center; color: #1c1505; text-align:center; padding: 30px; }
.media--placeholder svg { width: 60px; height: 60px; opacity: .85; margin-bottom: 12px; }
.media__chip {
  position: absolute; left: 22px; bottom: 22px; z-index: 3;
  background: rgba(255,255,255,.96); border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; max-width: 80%;
  backdrop-filter: blur(6px);
}
.media__chip .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-tint); display: grid; place-items: center; flex: none; }
.media__chip .ic svg { width: 23px; height: 23px; color: var(--brand-700); }
.media__chip b { color: var(--ink); display: block; font-family: var(--ff-head); }
.media__chip span { font-size: .85rem; color: var(--muted); }

.feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 20px; }
.feature-list li { display: flex; gap: 16px; }
.feature-list .fi { width: 48px; height: 48px; border-radius: 13px; flex: none; background: var(--bg-tint); display: grid; place-items: center; transition: transform .3s var(--ease); }
.feature-list li:hover .fi { transform: scale(1.08) rotate(-4deg); }
.feature-list .fi svg { width: 24px; height: 24px; color: var(--brand-700); }
.feature-list b { color: var(--ink); display: block; font-family: var(--ff-head); margin-bottom: 2px; }
.feature-list span { font-size: .95rem; }
.section--dark .feature-list .fi { background: rgba(231,201,111,.1); }
.section--dark .feature-list .fi svg { color: var(--accent); }
.section--dark .feature-list span { color: #cabfa6; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { position: relative; padding: 30px 26px; background: rgba(255,255,255,.04); border: 1px solid rgba(200,162,74,.16); border-radius: var(--radius); transition: transform .3s var(--ease), background .3s, border-color .3s; }
.step:hover { transform: translateY(-6px); background: rgba(255,255,255,.06); border-color: rgba(200,162,74,.3); }
.step__num { font-family: var(--ff-head); font-size: 2.6rem; font-weight: 800; line-height: 1; background: linear-gradient(135deg, #f4dd92, var(--brand)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; }
.step h3 { font-size: 1.12rem; margin-bottom: 7px; }
.step p { font-size: .93rem; color: #cabfa6; margin: 0; }

/* ---------- Before & after slider ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; align-items: start; }
.ba {
  --pos: 50%;
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); cursor: ew-resize;
  touch-action: pan-y; -webkit-user-select: none; user-select: none;
}
.ba:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__before-wrap { position: absolute; inset: 0; z-index: 2; overflow: hidden; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba::after { content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(8,8,10,.65)); }
.ba__label {
  position: absolute; top: 14px; z-index: 4; pointer-events: none;
  background: rgba(11,11,13,.75); color: #fff; font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 50px; backdrop-filter: blur(4px);
}
.ba__label--before { left: 14px; }
.ba__label--after { right: 14px; }
.ba__caption {
  position: absolute; left: 16px; bottom: 14px; z-index: 4; pointer-events: none; color: #fff;
  font-weight: 700; font-family: var(--ff-head); font-size: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.ba__divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; z-index: 5; transform: translateX(-50%); pointer-events: none; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.15), 0 2px 14px rgba(0,0,0,.4); }
.ba__handle {
  position: absolute; top: 50%; left: var(--pos); z-index: 6; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center; pointer-events: none; transition: transform .15s var(--ease);
}
.ba.dragging .ba__handle { transform: translate(-50%,-50%) scale(1.1); }
.ba__handle svg { width: 20px; height: 20px; color: var(--brand-700); }

/* ---------- Cards (promise / values) ---------- */
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); height: 100%; transition: transform .3s var(--ease), box-shadow .3s; }
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tcard .ic { width: 56px; height: 56px; border-radius: 15px; background: var(--bg-tint); display: grid; place-items: center; margin-bottom: 18px; }
.tcard .ic svg { width: 28px; height: 28px; color: var(--brand-700); }
.tcard h3 { margin-bottom: 8px; }
.tcard p { font-size: .96rem; margin: 0; }
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.stars svg { width: 19px; height: 19px; color: var(--brand); }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.tcard .avatar { width: 44px; height: 44px; border-radius: 50%; flex: none; background: var(--gold-grad); color:#1c1505; display: grid; place-items: center; font-weight: 800; font-family: var(--ff-head); }
.tcard .who b { color: var(--ink); font-size: .95rem; }
.tcard .who span { font-size: .82rem; color: var(--muted); }

/* ---------- Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 11px; max-width: 800px; margin: 26px auto 0; justify-content: center; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 10px 20px; font-size: .92rem; font-weight: 600; color: var(--ink); transition: transform .2s var(--ease), border-color .2s, color .2s; }
.chip:hover { transform: translateY(-3px); border-color: var(--brand); color: var(--brand-700); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius); padding: 60px 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg); color: #fff;
  background:
    radial-gradient(90% 130% at 0% 0%, rgba(200,162,74,.22) 0%, transparent 55%),
    linear-gradient(120deg, #121216, #1d1d22 70%, #121216);
  border: 1px solid rgba(200,162,74,.28);
}
.cta-band::before { content:""; position:absolute; right:-60px; top:-60px; width: 260px; height: 260px; border-radius:50%; background: rgba(200,162,74,.1); }
.cta-band h2 { color: #fff; margin-bottom: 8px; position: relative; }
.cta-band p { color: #ded6c4; margin: 0; position: relative; font-size: 1.1rem; }
.cta-band .actions { display: flex; gap: 15px; flex-wrap: wrap; position: relative; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq details[open] { box-shadow: var(--shadow-sm); border-color: #ecdcae; }
.faq summary { cursor: pointer; padding: 22px 58px 22px 24px; font-weight: 700; font-family: var(--ff-head); color: var(--ink); list-style: none; position: relative; font-size: 1.06rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content:"+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--brand-700); font-weight: 300; transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(135deg); }
.faq details p { padding: 0 24px 22px; margin: 0; font-size: .98rem; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; overflow: hidden; color: #f0ead9; padding: 92px 0 96px; text-align: center; background: var(--brand-900); }
.page-hero__bg { position:absolute; inset:0; z-index:0; }
.page-hero__bg img { width:100%; height:100%; object-fit: cover; }
.page-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(8,8,10,.82), rgba(8,8,10,.92)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #ded6c4; max-width: 640px; margin: 0 auto; font-size: 1.12rem; }
.crumbs { font-size: .85rem; color: #c0b59c; margin-bottom: 16px; }
.crumbs a { color: var(--accent); }
.crumbs a:hover { color: #fff; }

/* ---------- Info box ---------- */
.info-box { background: var(--bg-tint); border: 1px solid #ecdcae; border-left: 4px solid var(--brand); border-radius: var(--radius-sm); padding: 18px 22px; margin: 22px 0; }
.info-box b { color: var(--brand-700); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-card { background: #fff; border:1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-line { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 22px; }
.contact-line .ci { width:48px; height:48px; border-radius:13px; background: var(--bg-tint); display:grid; place-items:center; flex:none; }
.contact-line .ci svg { width: 23px; height: 23px; color: var(--brand-700); }
.contact-line b { color: var(--ink); display:block; font-family: var(--ff-head); }
.contact-line a, .contact-line span { color: var(--body); }
.contact-line a:hover { color: var(--brand-700); }
.form-success { display: none; background: #eaf7e6; border: 1px solid #bfe3ac; color: #38661e; border-radius: var(--radius-xs); padding: 16px 18px; font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }
.form-error { display: none; background: #fbeaea; border: 1px solid #e3acac; color: #7a1f1f; border-radius: var(--radius-xs); padding: 16px 18px; font-weight: 600; margin-bottom: 18px; }
.form-error.show { display: block; }

/* ---------- Footer ---------- */
.footer { background:
    radial-gradient(80% 140% at 100% 0%, rgba(200,162,74,.14) 0%, transparent 55%),
    var(--brand-900); color: #a59c89; padding: 76px 0 28px; font-size: .95rem; }
.footer a { color: #cfc6b3; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 44px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 11px; white-space: nowrap; }
.footer .brand__logo { height: 60px; }
.footer .brand__name { color: #fff; }
.footer .brand__name span { color: var(--accent); }
.footer__about p { margin-top: 16px; max-width: 330px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: #8a8273; }
.social { display: flex; gap: 11px; margin-top: 18px; }
.social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .25s, transform .25s var(--ease); }
.social a:hover { background: var(--brand); transform: translateY(-3px); }
.social a:hover svg { color: #1c1505; }
.social svg { width: 19px; height: 19px; color: #fff; transition: color .25s; }

/* ---------- Floating buttons ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: none; width: 60px; height: 60px; border-radius: 50%; background: var(--gold-grad); box-shadow: var(--shadow-accent); place-items: center; animation: pulse 2.4s infinite; }
.fab svg { width: 27px; height: 27px; color: #1c1505; }
.fab--wa { bottom: 20px; background: #25D366; box-shadow: 0 4px 18px rgba(37,211,102,.45); animation: none; }
.fab--wa svg { color: #fff; }

/* ---------- Polish & smoothness ---------- */

/* Thin gold scrollbar (Chromium / Safari) */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(200,162,74,.45); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* Button — satisfying click press */
.btn:active { transform: translateY(-1px) scale(.97); transition-duration: .08s; }

/* Stats — lift + number goes gold on hover */
.stat { transition: transform .3s var(--ease); }
.stat b { transition: color .3s; }
.stat:hover { transform: translateY(-4px); }
.stat:hover b { color: var(--brand); }

/* Split-section images — zoom on hover (same as service cards) */
.media { overflow: hidden; }
.media img { transition: transform .7s var(--ease); }
.media:hover img { transform: scale(1.05); }

/* WhatsApp FAB — hover lift + green glow */
.fab--wa { transition: transform .25s var(--ease), box-shadow .25s; }
.fab--wa:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 16px 40px rgba(37,211,102,.65); }

/* Link arrows — slide even when hovering the link directly (not just the card) */
.tlink svg { transition: transform .25s var(--ease); }
.tlink:hover svg { transform: translateX(5px); }

/* Soft sections — subtle warm gold shimmer in the top-right corner */
.section--soft {
  background:
    radial-gradient(65% 70% at 92% 0%, rgba(200,162,74,.06) 0%, transparent 100%),
    var(--bg-soft);
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (min-width: 761px) {
  .reveal--left { transform: translateX(-40px); }
  .reveal--right { transform: translateX(40px); }
}
.reveal--scale { transform: scale(.94); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__bg img { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .split { grid-template-columns: 1fr; gap: 38px; }
  /* Image always appears above text when split stacks */
  .split .media { order: -1; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before, .stat:nth-child(1)::before { display: none; }
}
@media (max-width: 920px) {
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #0e0e11; border-bottom: 1px solid rgba(200,162,74,.2); padding: 12px 16px 20px; box-shadow: var(--shadow);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 15px 12px; color: #e9e5db; }
  .nav__links a::after { display: none; }
  .nav__phone { display: none; }
  .burger { display: block; }
  /* Mobile dropdown — always visible, indented */
  .nav__dropdown {
    position: static; display: block; background: transparent;
    border: none; border-left: 2px solid rgba(200,162,74,.25);
    border-radius: 0; box-shadow: none; padding: 2px 0 4px 10px;
    margin: -6px 0 4px 12px;
  }
  .nav__dropdown li a { padding: 8px 10px; font-size: .88rem; color: #b0a898; }
  .nav__chevron { display: none; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 26px; text-align: center; justify-content: center; }
  .cta-band .actions { justify-content: center; width: 100%; flex-direction: column; }
  .cta-band .actions .btn { width: 100%; }
  .fab { display: grid; }
  .form-row { grid-template-columns: 1fr; }
  .topbar__badges { display: none; }
  .topbar .container { justify-content: center; }
  .hero { padding: 72px 0 80px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__actions .btn { width: 100%; }
  /* On phones the stacked card bloats the hero — CTA buttons handle conversions */
  .quote-card { display: none; }
  .brand__logo { height: 46px; }
  /* Page hero — reduce vertical padding on phones */
  .page-hero { padding: 60px 0 66px; }
  /* Service split images — don't force 420px height when stacked */
  .split .media { min-height: 280px; }
  /* Suppress horizontal slide animations that can bleed off-screen */
  /* lighten text density on phones */
  .lead { font-size: 1.06rem; }
  .scard__list { display: none; }
  .scard__body { padding: 22px 22px 22px; }
  .scard__body p { margin-bottom: 14px; }
  .feature-list { gap: 14px; }
  .feature-list li { align-items: center; }
  .feature-list span { display: none; }
  .feature-list b { margin-bottom: 0; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .section { padding: 54px 0; }
  .hero { padding: 56px 0 64px; }
  .hero h1 { font-size: 2.15rem; }
  .hero p { font-size: 1.08rem; }
  .hero__trust { gap: 10px 18px; font-size: .9rem; }
  .stats { margin-top: -36px; }
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .stat { padding: 18px 12px; }
  .stat b { font-size: 1.95rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer { padding: 56px 0 26px; }
  .topbar__item:nth-child(2) { display: none; }
  .container { padding: 0 18px; }
  .contact-card { padding: 24px 20px; }
  .cta-band h2 { font-size: 1.6rem; }
  .page-hero { padding: 48px 0 54px; }
  .page-hero h1 { font-size: 1.9rem; }
  .page-hero p { font-size: 1rem; }
  .split .media { min-height: 220px; }
  .steps { gap: 12px; }
  .step { padding: 18px 16px; border-radius: 16px; }
  .step__num { font-size: 2rem; margin-bottom: 6px; }
  .step h3 { font-size: 1rem; margin-bottom: 4px; }
  .step p { font-size: .86rem; line-height: 1.5; }
  /* Nav CTA — hide Get a Quote text, show only burger on very small screens */
  .nav__cta .btn--primary { display: none; }
  .split { gap: 28px; }
}

/* =====================================================================
   Content protection (deterrent only — see note in js/main.js)
   Disables text selection, image dragging and the long-press image menu.
   Form fields stay fully usable.
   ===================================================================== */
body {
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
  -webkit-touch-callout: none;
}
input, textarea, select, [contenteditable="true"] {
  -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text;
  -webkit-touch-callout: default;
}
img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }

