/* ==========================================================================
   KeySos — premium design tokens
   ========================================================================== */
:root {
  --color-bg: #050609;
  --color-bg-alt: #08090d;
  --color-surface: rgba(255, 255, 255, 0.04);
  --color-surface-2: rgba(255, 255, 255, 0.065);
  --color-border: rgba(224, 178, 98, 0.1);
  --color-border-strong: rgba(224, 178, 98, 0.22);
  --color-text: #f3f1ec;
  --color-text-dim: #9a9caa;
  --color-gold: #d3aa62;
  --color-gold-soft: #f0dcae;
  --color-gold-deep: #a97a3a;
  --gold-foil: linear-gradient(115deg, #f0dcae 0%, #d3aa62 35%, #a97a3a 60%, #e8c988 80%, #f0dcae 100%);
  --color-urgent: #d9432a;
  --color-urgent-soft: #ef7a5c;
  --color-success: #3ecf8e;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-1: 0 4px 22px rgba(0, 0, 0, 0.4);
  --shadow-2: 0 26px 64px -20px rgba(0, 0, 0, 0.6);
  --glow-gold: 0 0 0 1px rgba(211, 170, 98, 0.28), 0 14px 40px -12px rgba(211, 170, 98, 0.3);
  --glow-urgent: 0 12px 34px -8px rgba(217, 67, 42, 0.5);
  --container: 1160px;
  --header-h: 76px;
  --mobile-bar-h: 66px;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar-h);
  position: relative;
}
/* Subtle film-grain overlay for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; font-weight: 700; letter-spacing: -0.005em; }
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
section { padding: 76px 0; position: relative; }
@media (max-width: 640px) {
  section { padding: 52px 0; }
}
.icon-svg { display: block; flex-shrink: 0; }

/* Scroll-reveal (progressive enhancement — visible unless JS confirms it can animate) */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* On-load entrance choreography for above-the-fold content (hero / page-hero).
   Deliberate, one-time, staggered — not a scroll trigger like .reveal. */
@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero .subtitle, .hero .usp-list, .hero-actions, .hero .rating-badge,
  .hero-card, .page-hero .breadcrumbs, .page-hero h1, .page-hero p.lead, .page-hero .rating-badge {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.22) 48%, transparent 66%);
  background-size: 220% 100%;
  background-position: 130% 0;
  transition: background-position 0.55s var(--ease);
  pointer-events: none;
}
.btn:hover::after { background-position: -30% 0; }
.btn-primary {
  background: linear-gradient(135deg, #ff6a48, var(--color-urgent) 60%, #e8431f);
  color: #fff;
  box-shadow: var(--glow-urgent), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover { box-shadow: 0 16px 40px -6px rgba(217, 67, 42, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3); transform: translateY(-1px); }
.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(224, 178, 98, 0.4); }
.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid rgba(224, 178, 98, 0.5);
}
.btn-block { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 16.5px; }

/* ==========================================================================
   Glass surface mixin (applied via multiple component classes below)
   ========================================================================== */
.glass-surface {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--color-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-1);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.logo .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(150deg, #1a1b21, #0c0d10 65%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px -4px rgba(217, 67, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.logo .logo-mark img {
  display: block;
  width: 22px;
  height: 22px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 14.5px;
  color: var(--color-text-dim);
  font-weight: 500;
  transition: color 0.15s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--color-gold-soft); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switch {
  display: flex;
  gap: 2px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch a {
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-dim);
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-switch a.active {
  background: var(--color-gold);
  color: #14100a;
}
.lang-switch a:not(.active):hover { color: var(--color-text); }
.header-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header-phone .label {
  font-size: 11.5px;
  color: var(--color-text-dim);
}
.header-phone .number {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  width: 26px;
  height: 22px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--color-text);
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  /* The sticky bottom bar (.mobile-bar) already covers call/Telegram/WhatsApp
     access on mobile, so the header's call button is redundant weight that
     would otherwise overflow a narrow viewport alongside the logo, language
     switch, and hamburger. */
  .header-cta > a.btn-primary { display: none; }
}
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(10, 11, 15, 0.97);
  backdrop-filter: blur(20px);
  padding: 18px 20px 28px;
  border-bottom: 1px solid var(--color-border);
  gap: 16px;
}

/* Services dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " ▾"; font-size: 11px; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: rgba(15, 17, 23, 0.96);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 8px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-2);
  flex-direction: column;
  gap: 2px;
}
.has-dropdown:hover .dropdown { display: flex; }
.dropdown a {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dim);
}
.dropdown a:hover { background: var(--color-surface-2); color: var(--color-gold-soft); }
@media (max-width: 900px) {
  .dropdown { display: flex; position: static; border: none; background: none; box-shadow: none; padding: 8px 0 0 12px; backdrop-filter: none; }
  .has-dropdown > a::after { display: none; }
}

/* ==========================================================================
   Rating badge
   ========================================================================== */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--color-text-dim);
}
.rating-badge .stars { color: var(--color-gold); letter-spacing: 1px; }
.rating-badge strong { color: var(--color-text); font-family: var(--font-body); }
.hero .rating-badge { opacity: 0; animation: fade-up-in 0.8s var(--ease) 0.58s both; }
.page-hero .rating-badge { opacity: 0; animation: fade-up-in 0.8s var(--ease) 0.32s both; margin-top: 16px; }

/* ==========================================================================
   Hero (aurora background)
   ========================================================================== */
.hero {
  padding: 76px 0 68px;
  overflow: hidden;
}
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.2;
  mix-blend-mode: screen;
  animation: aurora-drift 28s ease-in-out infinite alternate;
}
.aurora-blob-1 {
  width: 520px; height: 520px;
  top: -180px; right: -80px;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
  animation-delay: 0s;
}
.aurora-blob-2 {
  width: 460px; height: 460px;
  bottom: -220px; left: -100px;
  background: radial-gradient(circle, var(--color-urgent) 0%, transparent 70%);
  animation-delay: -6s;
}
.aurora-blob-3 {
  width: 380px; height: 380px;
  top: 30%; left: 40%;
  background: radial-gradient(circle, #8a6a3a 0%, transparent 70%);
  opacity: 0.16;
  animation-delay: -11s;
}
@keyframes aurora-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .aurora-blob { animation: none; }
}

/* ==========================================================================
   Services section — faint brand-mark watermark background
   ========================================================================== */
#services {
  position: relative;
  overflow: hidden;
}
.services-bg-mark {
  position: absolute;
  top: -140px;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  filter: blur(1px);
}
.services-bg-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#services .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 700px) {
  .services-bg-mark { width: 560px; height: 560px; top: -80px; }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 22px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  opacity: 0;
  animation: fade-up-in 0.8s var(--ease) 0s both;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-eyebrow:hover { background: rgba(255, 255, 255, 0.075); border-color: rgba(211, 170, 98, 0.4); }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-urgent);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(217, 67, 42, 0.18);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(217, 67, 42, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(217, 67, 42, 0.06); }
}
.hero h1 {
  font-size: clamp(33px, 4.8vw, 54px);
  font-weight: 600;
  margin-bottom: 18px;
  background: linear-gradient(100deg,
    #ffffff 0%, #ffffff 38%,
    var(--color-gold-soft) 60%, var(--color-gold) 76%,
    var(--color-gold-deep) 86%, var(--color-gold-soft) 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-h1-in 1.15s var(--ease) 0.1s both;
}
@keyframes hero-h1-in {
  0% { opacity: 0; transform: translateY(14px); background-position: 100% 0; }
  100% { opacity: 1; transform: translateY(0); background-position: 0% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 { animation: none; opacity: 1; transform: none; background-position: 0% 0; }
}
.hero .subtitle {
  font-size: 18px;
  color: var(--color-text-dim);
  margin-bottom: 24px;
  max-width: 48ch;
  opacity: 0;
  animation: fade-up-in 0.8s var(--ease) 0.22s both;
}
.hero .usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up-in 0.8s var(--ease) 0.34s both;
}
.hero .usp-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text);
}
.hero .usp-list li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: 800;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  opacity: 0;
  animation: fade-up-in 0.8s var(--ease) 0.46s both;
}
.hero-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--color-border-strong);
  opacity: 0;
  animation: fade-up-in 0.9s var(--ease) 0.3s both;
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 170, 98, 0.16), transparent 70%);
  pointer-events: none;
}
.hero-stat-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.hero-stat-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(211, 170, 98, 0.4);
  background: radial-gradient(circle at 35% 30%, rgba(211, 170, 98, 0.18), rgba(211, 170, 98, 0.03));
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stat-value { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--color-gold); line-height: 1.1; }
.hero-stat-label { font-size: 13.5px; color: var(--color-text-dim); margin-top: 2px; }
.hero-progress { position: relative; margin-bottom: 20px; }
.hero-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--color-text-dim);
  margin-bottom: 9px;
}
.hero-progress-row span:last-child { color: var(--color-text); font-weight: 600; font-family: var(--font-body); }
.hero-progress-track {
  height: 6px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.hero-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold-soft));
}
.hero-divider { height: 1px; background: var(--color-border-strong); margin-bottom: 20px; }
.hero-mini-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 22px;
}
.hero-mini-stat {
  text-align: center;
  padding: 0 4px;
  border-left: 1px solid var(--color-border);
}
.hero-mini-stat:first-child { border-left: none; }
.hero-mini-stat strong { display: block; font-family: var(--font-head); font-size: 18px; color: var(--color-text); }
.hero-mini-stat span { font-size: 11px; color: var(--color-text-dim); text-transform: uppercase; letter-spacing: 0.04em; }
.hero-tags { position: relative; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-dim);
}
.hero-tag .icon-svg { width: 13px; height: 13px; color: var(--color-gold); }
.hero-tag .dot { animation: none; box-shadow: 0 0 0 3px rgba(217, 67, 42, 0.18); }

/* ==========================================================================
   Brand marquee (lock manufacturers we service)
   ========================================================================== */
.marquee-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 0;
  backdrop-filter: blur(16px);
}
.marquee-card h3 {
  padding: 0 30px;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-dim);
  text-align: center;
}
.marquee-viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-dim);
  white-space: nowrap;
  opacity: 0.65;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.marquee-track span:hover { opacity: 1; color: var(--color-gold-soft); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ==========================================================================
   Section heading
   ========================================================================== */
.section-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head .tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(25px, 3.2vw, 36px); margin-bottom: 12px; }
.section-head p { color: var(--color-text-dim); font-size: 16px; }
.section-head.align-left { text-align: left; margin-inline: 0; }

/* ==========================================================================
   Advantage cards
   ========================================================================== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }
.adv-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  backdrop-filter: blur(14px);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.adv-card:hover { border-color: rgba(224, 178, 98, 0.35); transform: translateY(-3px); box-shadow: var(--glow-gold); }
.adv-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(211, 170, 98, 0.4);
  background: radial-gradient(circle at 35% 30%, rgba(211, 170, 98, 0.16), rgba(211, 170, 98, 0.03));
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.adv-card h3 { font-size: 17px; margin-bottom: 9px; }
.adv-card p { color: var(--color-text-dim); font-size: 14.5px; }

/* ==========================================================================
   Services / pricing
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3 { grid-template-columns: 1fr; } }
.svc-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.svc-card:hover { border-color: rgba(224, 178, 98, 0.4); transform: translateY(-4px); box-shadow: var(--glow-gold); }
.svc-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(211, 170, 98, 0.4);
  background: radial-gradient(circle at 35% 30%, rgba(211, 170, 98, 0.16), rgba(211, 170, 98, 0.03));
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.svc-card h3 { font-size: 18.5px; margin-bottom: 9px; }
.svc-card p.desc { color: var(--color-text-dim); font-size: 14px; margin-bottom: 18px; flex-grow: 1; }
.svc-card .price {
  font-family: var(--font-head);
  font-size: 23px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.svc-card .price span { font-size: 13px; color: var(--color-text-dim); font-weight: 500; font-family: var(--font-body); }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 17px 22px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}
.price-table th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-dim);
  font-family: var(--font-body);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.price-table td.price { color: var(--color-gold); font-family: var(--font-head); font-weight: 700; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: rgba(255, 255, 255, 0.02); }
.price-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--color-text-dim);
}
@media (max-width: 640px) {
  .price-table { display: block; overflow-x: auto; }
}

/* ==========================================================================
   About / master block
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--color-border-strong);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dim);
  font-size: 14px;
  text-align: center;
  padding: 20px;
  box-shadow: var(--shadow-1);
}
.quote {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--color-text);
  border-left: 2px solid var(--color-gold);
  padding-left: 20px;
  margin: 20px 0 24px;
}
.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.about-stats .stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 27px;
  color: var(--color-gold);
}
.about-stats .stat span { font-size: 13.5px; color: var(--color-text-dim); }

/* ==========================================================================
   Reviews
   ========================================================================== */
.grid-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .grid-reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-reviews { grid-template-columns: 1fr; } }
.review-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(14px);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(224, 178, 98, 0.3); }
.review-card .stars { color: var(--color-gold); margin-bottom: 12px; letter-spacing: 2px; }
.review-card p.text { font-size: 14.5px; color: var(--color-text-dim); margin-bottom: 18px; font-style: italic; }
.review-card .who {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 13.5px;
  color: var(--color-text);
  font-weight: 600;
}
.review-card .who span { font-weight: 400; font-family: var(--font-body); color: var(--color-text-dim); }
.review-placeholder-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--color-text-dim);
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: rgba(224, 178, 98, 0.3); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 24px 22px;
  color: var(--color-text-dim);
  font-size: 14.5px;
}

/* ==========================================================================
   Offer banner
   ========================================================================== */
.offer-banner {
  background: linear-gradient(120deg, rgba(224, 178, 98, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(224, 178, 98, 0.35);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  backdrop-filter: blur(14px);
}
.offer-banner h3 {
  font-size: 22px;
  margin-bottom: 6px;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.offer-banner p { color: var(--color-text-dim); font-size: 14.5px; }

/* ==========================================================================
   Districts
   ========================================================================== */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
@media (max-width: 700px) { .districts-grid { grid-template-columns: 1fr; } }
.district-block h4 {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--color-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.district-block .areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.district-block .areas a {
  font-size: 13.5px;
  color: var(--color-text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  padding: 7px 13px;
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.district-block .areas a:hover { border-color: rgba(224, 178, 98, 0.4); color: var(--color-gold-soft); }
.suburb-block { margin-top: 30px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
  font-size: 14px;
  color: var(--color-text-dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 13.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a:hover { color: var(--color-gold-soft); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.todo-flag {
  background: rgba(255, 90, 60, 0.1);
  border: 1px dashed rgba(255, 130, 97, 0.6);
  color: #ffb199;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
}

/* ==========================================================================
   Sticky mobile action bar
   ========================================================================== */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--mobile-bar-h);
  display: none;
  z-index: 200;
  background: rgba(12, 14, 19, 0.9);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-top: 1px solid var(--color-border-strong);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
}
.mobile-bar .container { display: flex; gap: 10px; height: 100%; padding-block: 10px; }
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
}
.mobile-bar .mb-call { background: linear-gradient(135deg, #ff6a48, var(--color-urgent)); color: #fff; }
.mobile-bar .mb-tg { background: rgba(255, 255, 255, 0.06); color: var(--color-text); border: 1px solid var(--color-border-strong); }
.mobile-bar .mb-wa { background: rgba(255, 255, 255, 0.06); color: var(--color-text); border: 1px solid var(--color-border-strong); }
@media (max-width: 900px) {
  .mobile-bar { display: block; }
}

/* ==========================================================================
   Breadcrumbs / page hero (inner pages)
   ========================================================================== */
.page-hero {
  padding: 48px 0 44px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
  opacity: 0.14;
  filter: blur(90px);
  pointer-events: none;
}
.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  font-size: 13.5px;
  color: var(--color-text-dim);
  margin-bottom: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up-in 0.6s var(--ease) 0s both;
}
.breadcrumbs a:hover { color: var(--color-gold-soft); }
.page-hero h1 {
  position: relative; z-index: 1; font-size: clamp(27px, 3.6vw, 40px); margin-bottom: 14px;
  opacity: 0;
  animation: fade-up-in 0.75s var(--ease) 0.1s both;
}
.page-hero p.lead {
  position: relative; z-index: 1; color: var(--color-text-dim); font-size: 16.5px; max-width: 60ch;
  opacity: 0;
  animation: fade-up-in 0.75s var(--ease) 0.2s both;
}

.content-block { max-width: 780px; }
.content-block h2 { font-size: 22px; margin: 34px 0 13px; }
.content-block h2:first-child { margin-top: 0; }
.content-block p { color: var(--color-text-dim); margin-bottom: 15px; font-size: 15.5px; }
.content-block ul.plain { margin: 0 0 15px; display: flex; flex-direction: column; gap: 9px; }
.content-block ul.plain li {
  color: var(--color-text-dim);
  font-size: 15.5px;
  padding-left: 20px;
  position: relative;
}
.content-block ul.plain li::before {
  content: "•";
  color: var(--color-gold);
  position: absolute;
  left: 0;
}

/* ==========================================================================
   Service page: hero icon, quick-facts strip, signs icon-grid
   ========================================================================== */
.svc-hero-icon {
  position: absolute;
  top: 40px;
  right: 20px;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid rgba(211, 170, 98, 0.35);
  background: radial-gradient(circle at 35% 30%, rgba(211, 170, 98, 0.16), rgba(211, 170, 98, 0.02));
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.svc-hero-icon .icon-svg { width: 42px; height: 42px; }
@media (max-width: 700px) {
  .svc-hero-icon { display: none; }
}
.svc-quickfacts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.svc-quickfact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  backdrop-filter: blur(10px);
}
.svc-quickfact .icon-svg { width: 15px; height: 15px; color: var(--color-gold); }
.signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 20px;
}
@media (max-width: 560px) { .signs-grid { grid-template-columns: 1fr; } }
.sign-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
}
.sign-card .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(211, 170, 98, 0.35);
  background: rgba(211, 170, 98, 0.08);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sign-card .icon .icon-svg { width: 17px; height: 17px; }
.sign-card span { font-size: 14px; color: var(--color-text-dim); line-height: 1.4; padding-top: 6px; }

.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .side-card { position: static; top: auto; }
}
.side-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-1);
}
.side-card h3 { font-size: 18.5px; margin-bottom: 6px; }
.side-card p { color: var(--color-text-dim); font-size: 14px; margin-bottom: 20px; }
.side-card .btn { margin-bottom: 10px; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  backdrop-filter: blur(14px);
}
.info-card h3 { font-size: 15px; margin-bottom: 9px; display: flex; align-items: center; gap: 9px; color: var(--color-gold-soft); }
.info-card p, .info-card a { color: var(--color-text-dim); font-size: 14.5px; }

.map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}
