/* ==========================================================================
   RODRIGUEZ ENGRAVING — "PRECISION LUXURY" DESIGN SYSTEM
   Vanilla CSS. No frameworks.
   Palette derived from the company logo (sampled #005FB3 cobalt + teal).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces — graphite canvas */
  --ink-900: #0a0d12;
  --ink-850: #0d1117;
  --ink-800: #11161f;
  --ink-700: #1a212d;
  --ink-600: #222b3a;

  /* Steel — borders + secondary text */
  --steel-600: #2a3441;
  --steel-500: #3b485a;
  --steel-400: #7c8a9e;   /* 4.5:1 on --ink-900 */
  --steel-300: #9aa8ba;
  --steel-200: #c3ccd9;
  --white: #f7f9fc;

  /* Brand — sampled from logo */
  --brand-700: #004a8d;
  --brand-600: #005fb3;
  --brand-500: #0a78d8;
  --brand-400: #3d9bef;
  --brand-300: #7bbcf7;
  --brand-glow: rgba(0, 95, 179, 0.42);

  /* Secondary — combination-square teal */
  --teal-500: #17a2a8;
  --teal-400: #2cc3c9;

  /* Brass — awards + ratings */
  --brass-500: #a8841c;
  --brass-400: #c9a227;
  --brass-300: #e3c765;
  --brass-200: #fff6d4;

  /* Semantic */
  --success: #2fbf71;
  --danger: #ff6b6b;
  --whatsapp: #25d366;

  /* Signature metal gradient */
  --metal: linear-gradient(135deg, #8a6f1e 0%, #e3c765 22%, #fff6d4 38%, #c9a227 55%, #6e5514 78%, #e3c765 100%);
  --metal-rule: linear-gradient(90deg, transparent 0%, #8a6f1e 12%, #e3c765 38%, #fff6d4 50%, #e3c765 62%, #8a6f1e 88%, transparent 100%);
  --steel-sheen: linear-gradient(135deg, #1a212d 0%, #2a3441 30%, #3b485a 50%, #2a3441 70%, #1a212d 100%);

  /* Glass */
  --glass-bg: rgba(17, 22, 31, 0.62);
  --glass-bg-strong: rgba(13, 17, 23, 0.86);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-hi: rgba(255, 255, 255, 0.16);
  --glass-blur: blur(20px) saturate(1.6);

  /* Multi-layer elevation */
  --shadow-sm:
    0 1px 1px rgba(0, 0, 0, 0.28),
    0 2px 4px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --shadow-md:
    0 1px 1px rgba(0, 0, 0, 0.28),
    0 4px 8px rgba(0, 0, 0, 0.32),
    0 12px 24px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --shadow-lg:
    0 1px 1px rgba(0, 0, 0, 0.28),
    0 4px 8px rgba(0, 0, 0, 0.32),
    0 12px 24px rgba(0, 0, 0, 0.36),
    0 28px 60px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  --shadow-brand:
    0 4px 12px rgba(0, 95, 179, 0.28),
    0 12px 32px rgba(0, 95, 179, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  /* Type */
  --font-display: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing + radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --pad-section: clamp(4.5rem, 9vw, 8.5rem);
  --container: 1280px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-mid: 320ms;
  --dur-slow: 620ms;

  /* Z-index scale */
  --z-base: 1;
  --z-raised: 10;
  --z-sticky: 20;
  --z-nav: 30;
  --z-drawer: 40;
  --z-modal: 50;
  --z-toast: 60;
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background-color: var(--ink-900);
  color: var(--steel-200);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* Ambient background field */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 18% 0%, rgba(0, 95, 179, 0.16), transparent 62%),
    radial-gradient(ellipse 55% 45% at 88% 12%, rgba(23, 162, 168, 0.09), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 105%, rgba(201, 162, 39, 0.07), transparent 65%);
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

p { margin: 0; }

a { color: var(--brand-400); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--brand-300); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; padding: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--brand-600); color: #fff; }

/* Focus — visible, brand-coloured, never removed */
:focus-visible {
  outline: 2px solid var(--brand-400);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--ink-850); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--steel-600), var(--ink-700));
  border-radius: var(--r-pill);
  border: 2px solid var(--ink-850);
}
::-webkit-scrollbar-thumb:hover { background: var(--brand-700); }

/* Skip link */
.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: var(--z-toast);
  padding: 0.85rem 1.6rem;
  background: var(--brand-600);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: top var(--dur-mid) var(--ease-out);
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  z-index: var(--z-base);
  padding-block: var(--pad-section);
}
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--alt { background: linear-gradient(180deg, transparent, var(--ink-850) 18%, var(--ink-850) 82%, transparent); }

.section-head { max-width: 780px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-400);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--metal-rule);
}
.section-head--center .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--metal-rule);
}
.eyebrow--brass { color: var(--brass-300); }

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  margin-bottom: 1.15rem;
  /* Engraved effect — incised into the surface */
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.10), 0 -1px 1px rgba(0, 0, 0, 0.85);
}

.section-sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--steel-300);
  max-width: 62ch;
  line-height: 1.8;
}
.section-head--center .section-sub { margin-inline: auto; }

/* Metal gradient text */
.metal-text {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.rule-metal {
  height: 1px;
  background: var(--metal-rule);
  border: 0;
  margin: 0;
  opacity: 0.55;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.9rem 1.85rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Travelling sheen */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.28) 48%, transparent 76%);
  transform: translateX(-130%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.btn:hover::after { transform: translateX(130%); }

.btn--primary {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow:
    0 6px 16px rgba(0, 95, 179, 0.36),
    0 18px 44px rgba(0, 95, 179, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-hi);
  color: var(--white);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}
.btn--ghost:hover {
  color: #fff;
  transform: translateY(-3px);
  border-color: var(--brand-400);
  background: rgba(0, 95, 179, 0.16);
  box-shadow: var(--shadow-md);
}

.btn--brass {
  background: var(--metal);
  color: #241c04;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.3), 0 14px 34px rgba(201, 162, 39, 0.18);
}
.btn--brass:hover {
  color: #241c04;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4), 0 20px 48px rgba(201, 162, 39, 0.26);
}

.btn--sm { min-height: 40px; padding: 0.55rem 1.2rem; font-size: 0.82rem; }
.btn--wide { width: 100%; }
.btn:disabled, .btn[aria-busy="true"] { opacity: 0.6; cursor: not-allowed; transform: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-400);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--dur-mid) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   5. TOP BAR
   -------------------------------------------------------------------------- */
.topbar {
  position: relative;
  z-index: var(--z-nav);
  background: var(--ink-850);
  border-bottom: 1px solid var(--steel-600);
  font-size: 0.8rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  min-height: 44px;
  padding-block: 0.35rem;
}
.topbar__contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--steel-300);
  white-space: nowrap;
}
a.topbar__item:hover { color: var(--brand-300); }
.topbar__item svg { width: 15px; height: 15px; color: var(--brand-400); flex-shrink: 0; }
.topbar__hours { color: var(--steel-400); }

.socials { display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem; }
.socials__link {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-pill);
  color: var(--steel-300);
  border: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.socials__link svg { width: 16px; height: 16px; }
.socials__link:hover {
  color: #fff;
  background: var(--brand-600);
  border-color: var(--brand-500);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   6. HEADER / NAV
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              backdrop-filter var(--dur-mid) var(--ease-out);
}
.header.is-stuck {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.5);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h, 80px);
  transition: min-height var(--dur-mid) var(--ease-out);
}

/* Shrink-on-scroll: header condenses once past the fold */
.header.is-stuck .header__inner { --header-h: 62px; }

/* Brand — logo image is mandatory, never a text-only logotype */
.brand { display: inline-flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.brand__mark {
  width: auto;
  height: var(--logo-h, 52px);
  filter: drop-shadow(0 2px 8px rgba(0, 95, 179, 0.45));
  transition: height var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out),
              filter var(--dur-mid) var(--ease-out);
}
.header.is-stuck .brand__mark { --logo-h: 40px; }
.brand:hover .brand__mark {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 4px 14px rgba(0, 95, 179, 0.7));
}
.brand__wordmark { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name {
  font-family: var(--font-display);
  font-size: var(--brand-name-size, 1.22rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: font-size var(--dur-mid) var(--ease-out);
}
.header.is-stuck .brand__name { --brand-name-size: 1.06rem; }
.brand__tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-400);
  max-height: 1.4em;
  opacity: 1;
  overflow: hidden;
  transition: max-height var(--dur-mid) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out);
}
/* Tagline folds away when condensed, keeping the wordmark on one line */
.header.is-stuck .brand__tag { max-height: 0; opacity: 0; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav__link {
  position: relative;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--steel-200);
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.28rem;
  height: 1.5px;
  background: var(--metal-rule);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out);
}
.nav__link:hover, .nav__link:focus-visible { color: #fff; }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--brand-300); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.header.is-stuck .nav__link { padding-block: 0.4rem; }

.header__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
/* Condensed CTA — smaller target but still above the 44px minimum on touch */
.header.is-stuck .header__actions .btn--sm { min-height: 38px; padding: 0.45rem 1.05rem; }

/* Burger */
.burger {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  border: 1px solid var(--glass-border-hi);
  background: rgba(255, 255, 255, 0.04);
}
.burger__box { display: block; width: 22px; height: 15px; position: relative; }
.burger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.burger__bar:nth-child(1) { top: 0; }
.burger__bar:nth-child(2) { top: 6.5px; }
.burger__bar:nth-child(3) { top: 13px; }
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  display: grid;
  place-items: center;
  background: rgba(6, 9, 13, 0.94);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid) var(--ease-out), visibility var(--dur-mid);
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__panel {
  width: min(90vw, 460px);
  max-height: 88vh;
  overflow-y: auto;
  text-align: center;
  padding: 2rem 1.25rem;
}
.drawer__list { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 2rem; }
.drawer__link {
  display: block;
  padding: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  border-radius: var(--r-md);
  opacity: 0;
  transform: translateY(20px);
}
.drawer.is-open .drawer__link {
  animation: drawerIn var(--dur-slow) var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 55ms + 90ms);
}
.drawer__link:hover, .drawer__link[aria-current="page"] {
  color: var(--brand-300);
  background: rgba(0, 95, 179, 0.12);
}
@keyframes drawerIn { to { opacity: 1; transform: translateY(0); } }
.drawer__actions { display: flex; flex-direction: column; gap: 0.7rem; }
.drawer__socials { justify-content: center; margin-top: 1.75rem; }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(600px, 92vh, 940px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -12% 0 -12% 0;
  z-index: -3;
  will-change: transform;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    /* Left-weighted wash keeps headline contrast while the photo stays visible right */
    linear-gradient(100deg, rgba(10, 13, 18, 0.92) 0%, rgba(10, 13, 18, 0.78) 34%, rgba(10, 13, 18, 0.44) 62%, rgba(10, 13, 18, 0.22) 100%),
    linear-gradient(180deg, rgba(10, 13, 18, 0.38) 0%, rgba(10, 13, 18, 0.24) 34%, rgba(10, 13, 18, 0.74) 82%, var(--ink-900) 100%),
    radial-gradient(ellipse 60% 55% at 22% 42%, rgba(0, 95, 179, 0.16), transparent 68%);
}
/* Rotating conic glow */
.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130vmax;
  height: 130vmax;
  z-index: -3;
  margin: -65vmax 0 0 -65vmax;
  background: conic-gradient(from 0deg,
    transparent 0deg, rgba(0, 95, 179, 0.14) 55deg, transparent 120deg,
    rgba(201, 162, 39, 0.09) 190deg, transparent 250deg,
    rgba(23, 162, 168, 0.10) 310deg, transparent 360deg);
  animation: slowSpin 46s linear infinite;
  pointer-events: none;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }

.hero__inner { position: relative; z-index: var(--z-raised); padding-block: clamp(4rem, 10vh, 7rem); }
.hero__content { max-width: 900px; }

.hero__title {
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.09), 0 -1px 2px rgba(0, 0, 0, 0.9);
}
/* Word-by-word mask reveal */
.hero__word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero__word > span {
  display: inline-block;
  transform: translateY(105%);
  animation: wordUp 900ms var(--ease-out) forwards;
  animation-delay: calc(var(--w, 0) * 85ms + 250ms);
}
@keyframes wordUp { to { transform: translateY(0); } }

.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--steel-200);
  max-width: 58ch;
  line-height: 1.8;
  margin-bottom: 2.4rem;
  /* Keeps copy legible over the brighter parts of the workshop photo */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75), 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 3rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; }
.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.87rem;
  color: var(--steel-200);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}
.hero__badge svg { width: 19px; height: 19px; color: var(--brass-400); flex-shrink: 0; }
.hero__badge strong { color: var(--white); font-weight: 600; }

/* Entrance stagger for hero children */
.hero .fade-seq { opacity: 0; transform: translateY(24px); animation: fadeUp 800ms var(--ease-out) forwards; }
.hero .fade-seq:nth-of-type(1) { animation-delay: 120ms; }
.hero__sub.fade-seq { animation-delay: 620ms; }
.hero__cta.fade-seq { animation-delay: 740ms; }
.hero__badges.fade-seq { animation-delay: 860ms; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Floating motes */
.motes { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.mote {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 199, 101, 0.85), rgba(227, 199, 101, 0));
  animation: drift linear infinite;
  will-change: transform, opacity;
}
@keyframes drift {
  0%   { transform: translate3d(0, 20px, 0) scale(0.6); opacity: 0; }
  12%  { opacity: 0.75; }
  88%  { opacity: 0.5; }
  100% { transform: translate3d(var(--dx, 30px), -110px, 0) scale(1.1); opacity: 0; }
}

.scroll-cue {
  position: absolute;
  bottom: 1.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-raised);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.scroll-cue__line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--brass-400), transparent);
  animation: cueDrop 2.1s var(--ease-in-out) infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0%, 100% { transform: scaleY(0.35); opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* Page banner (interior pages) */
.pagehead {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  isolation: isolate;
}
.pagehead::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 70% 100% at 20% 0%, rgba(0, 95, 179, 0.20), transparent 66%);
}
.pagehead__title { font-size: clamp(2.3rem, 5.6vw, 4.2rem); margin-bottom: 1rem; }
.pagehead__sub { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--steel-300); max-width: 64ch; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--steel-400); margin-bottom: 1.4rem; }
.crumbs a { color: var(--steel-300); }
.crumbs a:hover { color: var(--brand-300); }
.crumbs svg { width: 13px; height: 13px; opacity: 0.5; }

/* --------------------------------------------------------------------------
   8. TRUST STRIP
   -------------------------------------------------------------------------- */
.trust {
  position: relative;
  z-index: var(--z-raised);
  border-block: 1px solid var(--steel-600);
  background: linear-gradient(180deg, rgba(17, 22, 31, 0.9), rgba(10, 13, 18, 0.9));
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--steel-600);
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: clamp(1.6rem, 3vw, 2.4rem) 1rem;
  text-align: center;
  background: var(--ink-900);
  transition: background-color var(--dur-mid) var(--ease-out);
}
.trust__item:hover { background: var(--ink-800); }
.trust__value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
}
.trust__label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.trust__stars { display: inline-flex; gap: 2px; color: var(--brass-400); }
.trust__stars svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   9. CARDS / GRIDS
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.8rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--services { grid-template-columns: repeat(auto-fit, minmax(min(285px, 100%), 1fr)); }

/* 3D tilt wrapper */
.tilt { perspective: 1200px; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out);
}
a.card, .card--link { cursor: pointer; }
.card:hover {
  border-color: var(--glass-border-hi);
  box-shadow: var(--shadow-lg);
}
/* Specular highlight tracking the cursor */
.card__spec {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.10), transparent 62%);
  transition: opacity var(--dur-mid) var(--ease-out);
}
.card:hover .card__spec { opacity: 1; }

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-700);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(10, 13, 18, 0.88) 100%);
}
.card__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  padding: 0.32rem 0.75rem;
  border-radius: var(--r-pill);
  background: rgba(10, 13, 18, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border-hi);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brass-300);
}

.card__body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.35rem, 2.4vw, 1.85rem); gap: 0.7rem; }
.card__title { font-size: 1.42rem; }
.card__text { font-size: 0.93rem; color: var(--steel-300); line-height: 1.75; flex: 1; }
.card__foot { margin-top: 0.35rem; }

.card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(0, 95, 179, 0.22), rgba(23, 162, 168, 0.12));
  border: 1px solid rgba(61, 155, 239, 0.28);
  color: var(--brand-300);
  margin-bottom: 0.35rem;
}
.card__icon svg { width: 25px; height: 25px; }

/* Feature list */
.ticks { display: flex; flex-direction: column; gap: 0.6rem; }
.ticks li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.92rem; color: var(--steel-300); }
.ticks svg { width: 17px; height: 17px; color: var(--brass-400); flex-shrink: 0; margin-top: 4px; }

/* --------------------------------------------------------------------------
   10. SPLIT FEATURE (layered images)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--flip .split__visual { order: -1; }

.split__visual { position: relative; }
.split__img-main {
  position: relative;
  z-index: 2;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}
.split__img-main img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split__img-float {
  position: absolute;
  right: -6%;
  bottom: -12%;
  z-index: 3;
  width: 46%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border-hi);
  box-shadow: var(--shadow-lg);
  will-change: transform;
}
.split__img-float img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.split__frame {
  position: absolute;
  inset: -1.6rem -1.6rem auto auto;
  z-index: 1;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 162, 39, 0.32);
  border-radius: var(--r-xl);
  pointer-events: none;
}
.split__watermark {
  position: absolute;
  left: -3%;
  top: -8%;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 14rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.028);
  pointer-events: none;
  user-select: none;
}

.stat-row { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2rem; }
.stat__value { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; line-height: 1; }
.stat__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: var(--steel-400); margin-top: 0.35rem; }

/* --------------------------------------------------------------------------
   11. GALLERY / MASONRY
   -------------------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 2.4rem; }
.filters--center { justify-content: center; }
.filter {
  padding: 0.6rem 1.25rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--steel-300);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.filter:hover { color: #fff; border-color: var(--glass-border-hi); background: rgba(255, 255, 255, 0.07); }
.filter[aria-selected="true"] {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  border-color: var(--brand-500);
  box-shadow: 0 4px 14px rgba(0, 95, 179, 0.3);
}

.masonry { columns: 3; column-gap: clamp(0.9rem, 1.8vw, 1.4rem); }
.masonry__item {
  position: relative;
  break-inside: avoid;
  margin-bottom: clamp(0.9rem, 1.8vw, 1.4rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 0;
  background: var(--ink-700);
  transition: transform var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out);
}
.masonry__item:hover { transform: translateY(-5px); border-color: var(--brand-500); box-shadow: var(--shadow-lg); }
.masonry__item img { width: 100%; transition: transform var(--dur-slow) var(--ease-out); }
.masonry__item:hover img { transform: scale(1.05); }
.masonry__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(10, 13, 18, 0.94));
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-mid) var(--ease-out);
}
.masonry__item:hover .masonry__cap, .masonry__item:focus-visible .masonry__cap { transform: translateY(0); opacity: 1; }
.masonry__item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(4, 6, 9, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid) var(--ease-out), visibility var(--dur-mid);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(94vw, 1200px);
  max-height: 82vh;
  width: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  transform: scale(0.94);
  transition: transform var(--dur-mid) var(--ease-out);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__cap { margin-top: 1rem; text-align: center; color: var(--steel-300); font-size: 0.9rem; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border-hi);
  color: var(--white);
  transition: background-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav--prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--brand-600); }
.lightbox__close svg, .lightbox__nav svg { width: 22px; height: 22px; }

/* --------------------------------------------------------------------------
   12. REVIEWS
   -------------------------------------------------------------------------- */
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.75rem, 3.5vw, 2.6rem);
  margin-bottom: 2.6rem;
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-md);
}
.rating-summary__score { text-align: center; }
.rating-summary__value { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.4rem); font-weight: 700; line-height: 1; }
.rating-summary__stars { display: flex; justify-content: center; gap: 3px; color: var(--brass-400); margin: 0.5rem 0 0.3rem; }
.rating-summary__stars svg { width: 20px; height: 20px; }
.rating-summary__meta { font-size: 0.85rem; color: var(--steel-400); }
.rating-summary__divider { width: 1px; align-self: stretch; background: var(--steel-600); }
.rating-summary__text { max-width: 44ch; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr)); gap: clamp(1.1rem, 2vw, 1.6rem); }

.review {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out);
}
.review:hover { transform: translateY(-4px); border-color: var(--glass-border-hi); box-shadow: var(--shadow-lg); }
.review::before {
  content: "\201C";
  position: absolute;
  top: -1.6rem;
  right: 0.6rem;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}
.review__top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.review__stars { display: inline-flex; gap: 2px; color: var(--brass-400); }
.review__stars svg { width: 15px; height: 15px; }
.review__chip {
  padding: 0.24rem 0.66rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(61, 155, 239, 0.28);
  background: rgba(0, 95, 179, 0.14);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-300);
  white-space: nowrap;
}
.review__text { font-size: 0.93rem; line-height: 1.78; color: var(--steel-200); flex: 1; }
.review__reply {
  padding: 0.85rem 1rem;
  border-left: 2px solid var(--brass-400);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: rgba(201, 162, 39, 0.06);
  font-size: 0.85rem;
  color: var(--steel-300);
  line-height: 1.65;
}
.review__reply strong { display: block; color: var(--brass-300); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.28rem; }
.review__foot { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.9rem; border-top: 1px solid var(--steel-600); }
.review__avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.review__who { flex: 1; min-width: 0; }
.review__name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.review__date { font-size: 0.76rem; color: var(--steel-400); }
.review__src { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; color: var(--steel-400); }
.review__src svg { width: 15px; height: 15px; }
.review.is-hidden { display: none; }

.reviews-more { display: flex; justify-content: center; margin-top: 2.4rem; }

/* --------------------------------------------------------------------------
   13. VIDEO FACADE
   -------------------------------------------------------------------------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(1.1rem, 2vw, 1.7rem); }
.vfacade {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  background: var(--ink-700);
  transition: transform var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out);
}
.vfacade:hover { transform: translateY(-5px); border-color: var(--brand-500); box-shadow: var(--shadow-lg); }
.vfacade img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.vfacade:hover img { transform: scale(1.05); }
.vfacade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.15) 0%, rgba(10, 13, 18, 0.82) 100%);
}
.vfacade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: var(--r-pill);
  background: rgba(10, 13, 18, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border-hi);
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-mid) var(--ease-out), background-color var(--dur-mid) var(--ease-out);
}
.vfacade__play svg { width: 26px; height: 26px; margin-left: 3px; }
.vfacade:hover .vfacade__play { transform: translate(-50%, -50%) scale(1.1); background: var(--brand-600); }
.vfacade__title {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
}
.vfacade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4; }

/* --------------------------------------------------------------------------
   14. LOGO / BRAND STRIP
   -------------------------------------------------------------------------- */
.brands { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(0.6rem, 1.6vw, 1.1rem); }
.brands__item {
  padding: 0.75rem 1.4rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--steel-400);
  letter-spacing: 0.02em;
  transition: color var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out),
              background-color var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out);
}
.brands__item:hover {
  color: var(--brass-300);
  border-color: rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.08);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   15. ACCORDION (FAQ)
   -------------------------------------------------------------------------- */
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.acc {
  border-radius: var(--r-md);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  overflow: hidden;
  transition: border-color var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out);
}
.acc:hover { border-color: var(--glass-border-hi); }
.acc.is-open { border-color: rgba(61, 155, 239, 0.4); box-shadow: var(--shadow-md); }
.acc__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  padding: 1.25rem clamp(1.1rem, 2.2vw, 1.6rem);
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out);
}
.acc__btn:hover { color: var(--brand-300); }
.acc__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--r-pill);
  border: 1px solid var(--glass-border-hi);
  color: var(--brand-400);
  transition: transform var(--dur-mid) var(--ease-out), background-color var(--dur-mid) var(--ease-out);
}
.acc__icon svg { width: 15px; height: 15px; }
.acc.is-open .acc__icon { transform: rotate(45deg); background: var(--brand-600); color: #fff; }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-mid) var(--ease-out); }
.acc.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__text {
  padding: 0 clamp(1.1rem, 2.2vw, 1.6rem) 1.4rem;
  font-size: 0.94rem;
  color: var(--steel-300);
  line-height: 1.8;
  max-width: 72ch;
}

/* --------------------------------------------------------------------------
   16. FORM
   -------------------------------------------------------------------------- */
.form-panel {
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--steel-200); letter-spacing: 0.02em; }
.field .req { color: var(--brass-400); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  min-height: 48px;
  border-radius: var(--r-sm);
  border: 1px solid var(--steel-600);
  background: rgba(10, 13, 18, 0.6);
  color: var(--white);
  font-size: 0.94rem;
  font-family: var(--font-body);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.7; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7a8f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 17px;
  padding-right: 2.6rem;
  cursor: pointer;
}
.field select option { background: var(--ink-800); color: var(--white); }
.field input::placeholder, .field textarea::placeholder { color: var(--steel-500); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  background: rgba(10, 13, 18, 0.9);
  box-shadow: 0 0 0 3px rgba(0, 95, 179, 0.22);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.16);
}
.field__err {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 0;
  font-size: 0.78rem;
  color: var(--danger);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.field__err.is-shown { opacity: 1; transform: translateY(0); }
.field__err svg { width: 14px; height: 14px; flex-shrink: 0; }
.field__hint { font-size: 0.78rem; color: var(--steel-400); }

.checkbox { display: flex; align-items: flex-start; gap: 0.7rem; cursor: pointer; }
.checkbox input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brand-600);
  cursor: pointer;
}
.checkbox span { font-size: 0.85rem; color: var(--steel-300); line-height: 1.6; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
}
.form-success.is-shown { display: flex; }
.form-success__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: var(--r-pill);
  background: rgba(47, 191, 113, 0.14);
  border: 1px solid rgba(47, 191, 113, 0.4);
  color: var(--success);
  animation: popIn 520ms var(--ease-out);
}
.form-success__icon svg { width: 34px; height: 34px; }
@keyframes popIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   17. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid var(--steel-600);
  background:
    radial-gradient(ellipse 65% 130% at 50% 50%, rgba(0, 95, 179, 0.22), transparent 68%),
    linear-gradient(180deg, var(--ink-850), var(--ink-900));
}
.cta-band__title { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 1rem; }
.cta-band__sub { color: var(--steel-300); max-width: 56ch; margin: 0 auto 2rem; font-size: 1.03rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.footer { position: relative; z-index: var(--z-base); background: var(--ink-900); border-top: 1px solid var(--steel-600); }
.footer::before { content: ""; display: block; height: 1px; background: var(--metal-rule); opacity: 0.65; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: clamp(1.8rem, 4vw, 3.2rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer__brand { display: inline-flex; align-items: center; gap: 0.8rem; margin-bottom: 1.1rem; }
.footer__logo { height: 56px; width: auto; }
.footer__about { font-size: 0.9rem; color: var(--steel-400); line-height: 1.8; margin-bottom: 1.3rem; max-width: 38ch; }
.footer__title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-400);
  margin-bottom: 1.2rem;
}
.footer__list { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__list a, .footer__list span { font-size: 0.9rem; color: var(--steel-400); }
.footer__list a:hover { color: var(--brand-300); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: var(--steel-400); line-height: 1.7; }
.footer__contact-item svg { width: 16px; height: 16px; color: var(--brand-400); flex-shrink: 0; margin-top: 4px; }
.footer__contact-item a { color: var(--steel-400); }
.footer__contact-item a:hover { color: var(--brand-300); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--steel-600);
  font-size: 0.84rem;
  color: var(--steel-400);
}
.footer__credit a { color: var(--brass-400); font-weight: 600; }
.footer__credit a:hover { color: var(--brass-300); text-decoration: underline; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer__legal a { color: var(--steel-400); }
.footer__legal a:hover { color: var(--brand-300); }

/* --------------------------------------------------------------------------
   19. STICKY MOBILE BAR
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  display: none;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.55);
}
.mobile-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  transition: transform var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-out);
}
.mobile-bar__btn:hover, .mobile-bar__btn:active { color: #fff; transform: translateY(-2px); filter: brightness(1.08); }
.mobile-bar__btn svg { width: 19px; height: 19px; }
.mobile-bar__btn--call { background: linear-gradient(135deg, var(--brand-600), var(--brand-500)); box-shadow: 0 4px 16px rgba(0, 95, 179, 0.4); animation: pulseBrand 4s var(--ease-in-out) infinite; }
/* Darker than WhatsApp's #25D366 so white label text clears 4.5:1 */
.mobile-bar__btn--wa { background: linear-gradient(135deg, #0b5c2b, #12793a); box-shadow: 0 4px 16px rgba(37, 211, 102, 0.34); animation: pulseWa 4s var(--ease-in-out) infinite 2s; }
@keyframes pulseBrand {
  0%, 88%, 100% { box-shadow: 0 4px 16px rgba(0, 95, 179, 0.4); }
  94%           { box-shadow: 0 4px 16px rgba(0, 95, 179, 0.4), 0 0 0 9px rgba(0, 95, 179, 0); }
  91%           { box-shadow: 0 4px 16px rgba(0, 95, 179, 0.4), 0 0 0 0 rgba(0, 95, 179, 0.5); }
}
@keyframes pulseWa {
  0%, 88%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.34); }
  94%           { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.34), 0 0 0 9px rgba(37, 211, 102, 0); }
  91%           { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.34), 0 0 0 0 rgba(37, 211, 102, 0.5); }
}

/* --------------------------------------------------------------------------
   20. DEMO POPUP
   -------------------------------------------------------------------------- */
.popup {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(4, 6, 9, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid) var(--ease-out), visibility var(--dur-mid);
}
.popup.is-open { opacity: 1; visibility: visible; }
.popup__panel {
  position: relative;
  width: min(100%, 545px);
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(1.9rem, 4.5vw, 3rem);
  text-align: center;
  border-radius: var(--r-xl);
  /* Two-layer background: solid panel over the metal gradient, so the gradient
     is only ever visible as a 1px rim (padding-box vs border-box). */
  background:
    linear-gradient(165deg, #1b2230 0%, #0d1117 100%) padding-box,
    var(--metal) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(18px);
  transition: transform var(--dur-slow) var(--ease-out);
}
.popup.is-open .popup__panel { transform: scale(1) translateY(0); }
.popup__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  border: 1px solid var(--glass-border-hi);
  background: rgba(255, 255, 255, 0.05);
  color: var(--steel-300);
  transition: color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.popup__close:hover { color: #fff; background: var(--danger); transform: rotate(90deg); }
.popup__close svg { width: 17px; height: 17px; }
.popup__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 1rem;
  margin-bottom: 1.3rem;
  border-radius: var(--r-pill);
  background: rgba(201, 162, 39, 0.13);
  border: 1px solid rgba(201, 162, 39, 0.36);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-300);
}
.popup__badge svg { width: 14px; height: 14px; }
.popup__title { font-size: clamp(1.6rem, 3.6vw, 2.25rem); margin-bottom: 0.9rem; line-height: 1.14; color: var(--white); }
.popup__title .metal-text { font-weight: 700; }
.popup__text { font-size: 0.96rem; color: var(--steel-200); line-height: 1.8; margin-bottom: 1.1rem; }
.popup__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem;
  margin-bottom: 1.5rem;
  border-radius: var(--r-md);
  background: rgba(0, 95, 179, 0.12);
  border: 1px solid rgba(61, 155, 239, 0.3);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-300);
}
.popup__timer svg { width: 17px; height: 17px; }
.popup__actions { display: flex; flex-direction: column; gap: 0.65rem; }
.popup__later { font-size: 0.85rem; color: var(--steel-400); padding: 0.5rem; transition: color var(--dur-fast) var(--ease-out); }
.popup__later:hover { color: var(--steel-200); }
.popup__credit { margin-top: 1.2rem; font-size: 0.75rem; color: var(--steel-500); }
.popup__credit a { color: var(--brass-400); }

/* --------------------------------------------------------------------------
   21. SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* Parallax layers */
.parallax { will-change: transform; }

/* --------------------------------------------------------------------------
   22. UTILITIES
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.prose p + p { margin-top: 1.15rem; }
.prose p { color: var(--steel-300); line-height: 1.85; }
.prose strong { color: var(--white); font-weight: 600; }

/* Map */
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  background: var(--ink-700);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.35) invert(0.9) hue-rotate(180deg) contrast(0.88); }

/* Info tiles */
.info-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 1.1rem; }
.info-tile {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.5rem;
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-mid) var(--ease-out), border-color var(--dur-mid) var(--ease-out);
}
.info-tile:hover { transform: translateY(-4px); border-color: var(--glass-border-hi); }
.info-tile__icon { color: var(--brand-400); }
.info-tile__icon svg { width: 24px; height: 24px; }
.info-tile__label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--brass-400); }
.info-tile__value { font-size: 1.02rem; color: var(--white); font-weight: 500; line-height: 1.6; }
.info-tile__value a { color: var(--white); }
.info-tile__value a:hover { color: var(--brand-300); }
.info-tile__note { font-size: 0.82rem; color: var(--steel-400); }

/* Hours table */
.hours { display: flex; flex-direction: column; gap: 0.15rem; }
.hours__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.62rem 0; border-bottom: 1px solid var(--steel-600); font-size: 0.9rem; }
.hours__row:last-child { border-bottom: 0; }
.hours__day { color: var(--steel-300); }
.hours__time { color: var(--white); font-weight: 500; }
.hours__row--closed .hours__time { color: var(--steel-500); }
.hours__row.is-today { background: rgba(0, 95, 179, 0.1); margin-inline: -0.75rem; padding-inline: 0.75rem; border-radius: var(--r-sm); }
.hours__row.is-today .hours__day { color: var(--brand-300); font-weight: 600; }

/* Price / catalog list */
.catalog-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(215px, 100%), 1fr)); gap: 0.7rem; }
.catalog-list a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.025);
  color: var(--steel-200);
  font-size: 0.89rem;
  transition: color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.catalog-list a:hover { color: #fff; border-color: var(--brand-500); background: rgba(0, 95, 179, 0.14); transform: translateX(4px); }
.catalog-list svg { width: 15px; height: 15px; color: var(--brass-400); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   23. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: grid; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--flip .split__visual { order: 0; }
  .split__img-float { width: 40%; right: -3%; bottom: -8%; }
  .masonry { columns: 2; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .topbar__hours { display: none; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .rating-summary__divider { display: none; }
  .rating-summary { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  body { padding-bottom: 78px; }        /* room for the sticky mobile bar */
  .mobile-bar { display: flex; }
  html { scroll-padding-top: 90px; }
}

@media (max-width: 640px) {
  .topbar__item--email { display: none; }
  .topbar__inner { justify-content: space-between; gap: 0.75rem; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .brand__wordmark { display: none; }
  .brand__mark { height: 46px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .split__img-float, .split__frame, .split__watermark { display: none; }
  .header__inner { min-height: 68px; }
}

@media (max-width: 420px) {
  .trust__grid { grid-template-columns: 1fr; }
  .socials__link { width: 30px; height: 30px; }
}

/* --------------------------------------------------------------------------
   24. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero .fade-seq { opacity: 1 !important; transform: none !important; }
  .hero__word > span { transform: none !important; }
  .drawer.is-open .drawer__link { opacity: 1 !important; transform: none !important; }
  .hero__glow, .mote, .scroll-cue__line { display: none !important; }
  .parallax, .hero__bg { transform: none !important; }
  .card:hover, .review:hover, .masonry__item:hover, .vfacade:hover,
  .btn:hover, .info-tile:hover { transform: none !important; }
}

/* --------------------------------------------------------------------------
   25. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .topbar, .header, .mobile-bar, .popup, .drawer, .lightbox, .cta-band, .scroll-cue { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  body::before { display: none; }
  .card, .review, .form-panel { border: 1px solid #ccc; background: #fff; box-shadow: none; }
  h1, h2, h3 { color: #000; text-shadow: none; }
}
