/* ═══════════════════════════════════════════════
   DESIGN SYSTEM — Getman Construction
   Steel Blue · Black · White · Clean & Bold
   ═══════════════════════════════════════════════ */

:root {
  /* Neutrals */
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f5f7fa;
  --gray-100: #ebeef2;
  --gray-200: #d4d9e0;
  --gray-300: #b8bfc9;
  --gray-400: #8d96a3;
  --gray-500: #5f6b7a;
  --gray-600: #3d4a5c;
  --gray-700: #2a3444;
  --gray-800: #1a2332;
  --gray-900: #0f1720;

  /* ── Primary — Steel Blue (actions, links, primary CTA) ── */
  --cyan: #2b7cff;
  --cyan-light: #5a9dff;
  --cyan-dark: #1a5fd4;
  --cyan-glow: rgba(43, 124, 255, 0.15);
  --cyan-glow-strong: rgba(43, 124, 255, 0.3);

  /* ── Accent — Ice Blue (highlights, badges, eyebrows) ── */
  --gold: #2b7cff;
  --gold-light: #5a9dff;
  --gold-dark: #1a5fd4;
  --gold-text: #1a5fd4;
  --gold-glow: rgba(43, 124, 255, 0.12);

  /* ── Cool — Slate (secondary accents, borders, subtle UI) ── */
  --slate: #64748b;
  --slate-light: #94a3b8;
  --slate-dark: #475569;

  /* ── Warm Neutral — replaced with cool gray ── */
  --sand: #f0f2f5;
  --sand-dark: #e2e5ea;

  /* ── Accent — removed rose, using blue tints ── */
  --rose: #2b7cff;
  --rose-light: #5a9dff;
  --rose-glow: rgba(43, 124, 255, 0.10);

  /* Supporting colors */
  --navy: #0b1526;
  --navy-light: #142038;

  /* Semantic */
  --success: #22c55e;
  --warning: #eab308;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.5s var(--ease);

  /* Spacing */
  --section-y: clamp(80px, 10vw, 140px);
  --section-x: clamp(20px, 6vw, 100px);
  --gap-xl: clamp(48px, 6vw, 96px);
  --gap-lg: clamp(32px, 4vw, 56px);
  --gap-md: clamp(24px, 3vw, 40px);
  --gap-sm: clamp(16px, 2vw, 24px);

  /* Radius */
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16), 0 8px 20px rgba(0, 0, 0, 0.10);
  --shadow-glow: 0 0 30px var(--cyan-glow), 0 0 60px rgba(43, 124, 255, 0.06);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) var(--navy);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.62;
  font-weight: 500;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

p {
  font-weight: 500;
  line-height: 1.72;
}

body.is-loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

main {
  overflow: hidden;
}

/* ── Skip link ─────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--cyan);
  color: var(--black);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 20px;
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════ */

h1,
h2,
h3,
h4 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -0.028em;
  text-transform: none;
}

h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.15;
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
}

/* ═══════════════════════════════════════════════
   LAYOUT — Sections & Container
   ═══════════════════════════════════════════════ */

.section {
  padding: var(--section-y) var(--section-x);
  position: relative;
}

.section--light {
  background: var(--gray-50);
}

.section--dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}

/* Subtle gradient overlay for depth */
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(43, 124, 255, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 60%, rgba(100, 116, 139, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.section--dark>* {
  position: relative;
  z-index: 1;
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark a {
  color: var(--slate-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── Eyebrow ──────────────────────────────── */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 16px;
  display: inline-block;
}

.section--dark .eyebrow {
  color: var(--gold-light);
}

/* ── Section Header ───────────────────────── */
.section-header {
  margin-bottom: var(--gap-xl);
  max-width: 680px;
}

.section-header h2 {
  position: relative;
  padding-bottom: 28px;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: var(--cyan);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════
   HEADER — Fixed Navigation
   ═══════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(24px, 5vw, 80px);
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled {
  background: rgba(13, 27, 42, 0.95);
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.brand {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: auto;
  height: 32px;
  object-fit: contain;
  transition: opacity var(--transition);
}

.brand:hover {
  color: var(--gold-light);
}

.brand:hover .brand-logo {
  opacity: 0.85;
}

/* ── Main Nav ─────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}

.nav a[aria-current="page"] {
  color: var(--gold-light);
}

/* ── Hamburger ────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--transition);
}

/* ── Home Hero — Full-Bleed Photo ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #080e1a;
}

/* Background photo — fills entire hero */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Gradient overlay — keeps bottom text readable */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(8, 14, 26, 0.25) 0%,
      rgba(8, 14, 26, 0.0) 35%,
      rgba(8, 14, 26, 0.0) 50%,
      rgba(8, 14, 26, 0.50) 70%,
      rgba(8, 14, 26, 0.85) 88%,
      rgba(8, 14, 26, 0.95) 100%);
  pointer-events: none;
}

/* Content — sits at bottom of viewport */
.hero__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 var(--section-x) clamp(40px, 7vh, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

/* Heading */
.hero__heading {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  animation: heroFadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero__heading-line {
  display: block;
  white-space: nowrap;
}

/* Actions — button + phone side by side */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: heroFadeUp 0.8s var(--ease-out) 0.4s both;
}

/* CTA button */
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--cyan);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(43, 124, 255, 0.35);
}

.hero__btn:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(43, 124, 255, 0.45);
}

/* Phone */
.hero__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.hero__tel:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.30);
}

.hero__tel svg {
  flex-shrink: 0;
  opacity: 0.8;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Page Hero (inner pages) — Art Edition ── */
.page-hero {
  position: relative;
  padding-top: calc(var(--section-y) + 100px);
  padding-bottom: var(--section-y);
  background: var(--navy);
  border-bottom: none;
  overflow: hidden;
  color: var(--white);
}

/* Large decorative background number */
.page-hero::before {
  content: attr(data-page-num);
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-size: clamp(200px, 28vw, 400px);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Decorative grid lines / abstract pattern */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 124, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(100, 116, 139, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .hero-content {
  align-items: end;
}

.page-hero .hero-left {
  position: relative;
}

/* Cyan accent line left of title */
.page-hero .hero-left::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--cyan-dark) 60%, transparent 100%);
  border-radius: 3px;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .eyebrow {
  color: var(--gold-light);
}

.page-hero .hero-description {
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
}

.page-hero .hero-right {
  justify-self: start;
  max-width: 520px;
}

.page-hero .hero-meta {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero .hero-meta li:not(:last-child) {
  border-right-color: rgba(255, 255, 255, 0.15);
}

/* Decorative floating shapes */
.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-deco--line {
  width: clamp(80px, 12vw, 160px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.25;
  top: 30%;
  right: 18%;
}

/* Page-specific accent glow */
.page-hero--projects {
  --hero-glow: rgba(123, 147, 176, 0.1);
}

.page-hero--services {
  --hero-glow: rgba(43, 124, 255, 0.08);
}

.page-hero--about {
  --hero-glow: rgba(43, 124, 255, 0.06);
}

.page-hero--reviews {
  --hero-glow: rgba(43, 124, 255, 0.06);
}

.page-hero--contact {
  --hero-glow: rgba(123, 147, 176, 0.08);
}

.page-hero .hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--hero-glow, rgba(0, 212, 200, 0.06));
  filter: blur(120px);
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Hero page label — large watermark word */
.hero-watermark {
  position: absolute;
  bottom: -0.15em;
  left: -0.02em;
  font-family: "Inter", sans-serif;
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.025);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.hero-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
  padding-left: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.hero-meta li:not(:last-child) {
  padding-right: 20px;
  border-right: 1px solid var(--gray-300);
}

/* ═══════════════════════════════════════════════
   BUTTONS & LINKS
   ═══════════════════════════════════════════════ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 42px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  background: var(--cyan);
  color: var(--white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(43, 124, 255, 0.25);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.button::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-sm);
  padding: 1px;
  background: linear-gradient(135deg, var(--cyan-light), var(--cyan-dark), var(--cyan-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
}

.button:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(43, 124, 255, 0.35), 0 0 40px rgba(43, 124, 255, 0.1);
  color: var(--white);
}

.button:hover::before {
  opacity: 1;
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(43, 124, 255, 0.2);
}



/* ── Link Arrow ───────────────────────────── */
.link-arrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--slate-dark);
  position: relative;
  transition: color var(--transition), gap var(--transition);
}

.link-arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width var(--transition);
  position: absolute;
  bottom: -4px;
  left: 0;
}

.link-arrow:hover {
  color: var(--gold-dark);
  gap: 10px;
}

.link-arrow:hover::after {
  width: 100%;
}

.section--dark .link-arrow {
  color: var(--gold-light);
}

.section--dark .link-arrow:hover {
  color: var(--white);
}

/* ── Scroll Button ────────────────────────── */
.scroll-button {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.scroll-button span {
  display: inline-block;
  transition: transform var(--transition);
}

.scroll-button:hover {
  color: var(--gold-light);
}

.scroll-button:hover span {
  transform: translateX(6px);
}

/* ═══════════════════════════════════════════════
   TEXT COLUMNS
   ═══════════════════════════════════════════════ */

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-lg);
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-600);
  max-width: 960px;
}

/* ═══════════════════════════════════════════════
   PROJECT GRID
   ═══════════════════════════════════════════════ */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  margin-bottom: var(--gap-xl);
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: transform var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card--large {
  grid-column: span 2;
}

.project-card--small {
  grid-column: span 1;
}

.project-media {
  position: relative;
  overflow: hidden;
  background: var(--gray-200);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.project-card--large .project-media {
  aspect-ratio: 16 / 9;
}

.project-card--small .project-media {
  aspect-ratio: 4 / 5;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition);
}

.project-card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.project-card:hover .project-media {
  border-color: var(--slate-light);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(123, 147, 176, 0.15);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 20, 35, 0.9) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  border-radius: var(--radius);
}

.project-overlay-content {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(12px);
  opacity: 0;
  transition: all var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-overlay-content {
  opacity: 1;
  transform: translateY(0);
}

.project-meta h3 {
  font-size: clamp(20px, 2vw, 26px);
  color: var(--gray-900);
  transition: color var(--transition);
}

.project-card:hover .project-meta h3 {
  color: var(--navy-light);
}

.project-meta p {
  margin-top: 4px;
  color: var(--gray-500);
  font-size: 14px;
  letter-spacing: 0.03em;
  display: none;
}

/* ═══════════════════════════════════════════════
   SECTION SUBTITLE
   ═══════════════════════════════════════════════ */

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 600px;
  margin: 12px auto 0;
  text-align: center;
}

.section-link-center {
  text-align: center;
  margin-top: var(--gap-md);
}

.cta-inline-phone {
  color: var(--gold-light);
}

.legal-secondary-row {
  margin-top: 24px;
}

.legal-actions-row {
  margin-top: 32px;
}

.insight-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 10px;
}

.expert-2026-playbook {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(18px, 3vw, 28px);
  margin-bottom: clamp(24px, 4vw, 36px);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--white) 0%, var(--gray-50) 100%);
  box-shadow: var(--shadow-sm);
}

.expert-2026-playbook__lead h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
  margin: 8px 0 10px;
}

.expert-2026-playbook__lead p {
  color: var(--gray-600);
  line-height: 1.72;
}

.expert-2026-playbook__points {
  display: grid;
  gap: 10px;
  align-content: center;
}

.expert-2026-playbook__points li {
  position: relative;
  padding: 14px 14px 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  line-height: 1.58;
}

.expert-2026-playbook__points li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 3px;
  height: calc(100% - 28px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--gold) 100%);
}

.expert-2026-playbook__points strong {
  color: var(--gray-900);
}

.insights-grid {
  margin-top: 8px;
}

.insight-card {
  border-radius: var(--radius-lg);
}

.seo-blog-bridge {
  margin-top: var(--gap-lg);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.seo-blog-bridge h3 {
  font-size: clamp(22px, 2.2vw, 32px);
  margin-bottom: 10px;
}

.seo-blog-bridge p {
  max-width: 760px;
  color: var(--gray-600);
}

.seo-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.seo-topic-card {
  padding: 14px 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.seo-topic-card:hover {
  transform: translateY(-3px);
  border-color: var(--slate-light);
  box-shadow: var(--shadow-md);
}

.seo-topic-card__meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.seo-topic-card h4 {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 6px;
  color: var(--gray-900);
}

.seo-topic-card h4 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.seo-topic-card h4 a:hover {
  color: var(--cyan-dark);
  border-color: rgba(43, 124, 255, 0.35);
}

.seo-topic-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.62;
}

.seo-blog-bridge .link-arrow {
  margin-top: 14px;
  display: inline-flex;
}

.human-grid {
  gap: 22px;
}

.human-card {
  border-radius: var(--radius-lg);
}

.human-card__note {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}

.journal-hub {
  position: relative;
}

.journal-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.5fr;
  gap: clamp(18px, 3vw, 30px);
}

.journal-toc {
  position: sticky;
  top: 110px;
  align-self: start;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.journal-toc a {
  display: block;
  color: var(--gray-700);
  text-decoration: none;
  padding: 10px 0;
  border-top: 1px solid var(--gray-200);
  line-height: 1.45;
  font-size: 14px;
}

.journal-toc a:first-of-type {
  border-top: none;
}

.journal-toc a:hover {
  color: var(--cyan-dark);
}

.journal-content {
  display: grid;
  gap: 16px;
}

.journal-article {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
}

.journal-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.journal-article h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.journal-article p {
  color: var(--gray-600);
  line-height: 1.75;
}

.journal-article ul,
.journal-article ol {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.journal-article li {
  color: var(--gray-600);
  line-height: 1.68;
}

.journal-article strong {
  color: var(--gray-900);
}

.journal-meta {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-200);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.contact-readiness .section-subtitle {
  max-width: 760px;
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.readiness-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.readiness-card:hover {
  transform: translateY(-4px);
  border-color: var(--slate-light);
  box-shadow: var(--shadow-md);
}

.readiness-card h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.readiness-card p {
  color: var(--gray-600);
  line-height: 1.68;
  font-size: 14px;
}

.readiness-actions {
  margin-top: 16px;
}

.journal-teaser {
  padding-top: 0;
}

.journal-teaser-box {
  max-width: 920px;
  margin: 0 auto;
}

.journal-teaser-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.journal-teaser-links a {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-decoration: none;
  color: var(--gray-700);
  font-size: 13px;
  line-height: 1.5;
  background: var(--white);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
}

.journal-teaser-links a:hover {
  border-color: var(--slate-light);
  color: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .expert-2026-playbook {
    grid-template-columns: 1fr;
  }

  .seo-topic-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-toc {
    position: static;
  }

  .readiness-grid {
    grid-template-columns: 1fr;
  }

  .journal-teaser-links {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   COMPANY INTRO  —  services.html
   ═══════════════════════════════════════════════ */

.company-intro .section-header,
.company-intro__header {
  margin-bottom: var(--gap-lg);
  max-width: 900px;
}

.company-intro__subtitle {
  max-width: 760px;
  margin-left: 0;
  text-align: left;
}

.company-intro__top {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: var(--gap-md);
  align-items: start;
}

.company-intro__panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
}

.company-intro__panel h3 {
  font-size: clamp(22px, 2.1vw, 30px);
  margin-bottom: 20px;
}

.company-intro__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.company-feature-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.company-feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
}

.company-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-dark);
  background: linear-gradient(135deg, rgba(43, 124, 255, 0.10), rgba(100, 116, 139, 0.08));
}

.company-feature-card h4 {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.company-feature-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
}

.company-intro__benefits {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.company-intro__benefits li {
  position: relative;
  padding-left: 28px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.6;
}

.company-intro__benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan-dark);
  font-weight: 700;
}

.company-intro__partners-note {
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 16px;
}

.company-intro__address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.company-intro__panel--why .button {
  width: 100%;
  text-align: center;
}

@media (max-width: 1024px) {
  .company-intro__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .company-intro__services {
    grid-template-columns: 1fr;
  }

  .company-intro__header h2 {
    max-width: 18ch;
  }

  .company-intro__subtitle {
    font-size: 15px;
    line-height: 1.62;
  }

  .company-intro__panel {
    padding: 22px;
  }

  .company-feature-card {
    padding: 14px;
    gap: 10px;
  }

  .company-feature-card h4 {
    font-size: 15px;
  }

  .company-feature-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .company-intro__panel h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .company-intro__benefits li {
    font-size: 14px;
    line-height: 1.5;
  }

  .company-intro__address {
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════
   GLASS SERVICES GRID  —  services.html
   ═══════════════════════════════════════════════ */

.glass-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap-md);
}

.glass-service-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.glass-service-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.glass-service-card:hover::before {
  opacity: 1;
}

.glass-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(43, 124, 255, 0.08), rgba(100, 116, 139, 0.06));
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--cyan-dark);
}

.glass-service-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.glass-service-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   GLASS GALLERY  —  masonry‐style photo grid
   ═══════════════════════════════════════════════ */

/* ───── GALLERY SHOWCASE (services.html — curated) ───── */

.gallery-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-showcase__hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  grid-row: span 3;
}

.gallery-showcase__hero img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.gallery-showcase__hero:hover img {
  transform: scale(1.04);
}

.gallery-showcase__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

.gallery-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.gallery-showcase__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery-showcase__item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.gallery-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.gallery-showcase__item:hover img {
  transform: scale(1.06);
}

.gallery-showcase__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 14px 10px;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.7) 0%, transparent 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.gallery-showcase__item:hover .gallery-showcase__caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gallery-showcase {
    grid-template-columns: 1fr;
  }

  .gallery-showcase__hero {
    grid-row: span 1;
  }

  .gallery-showcase__hero img {
    min-height: 280px;
  }

  .gallery-showcase__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-showcase__item img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-showcase__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-showcase__item img {
    height: 140px;
  }
}

/* ───── GALLERY GRID (portfolio — full collections) ───── */

.glass-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

/* Masonry-style variable heights */
.glass-gallery-item:nth-child(4n+1) {
  grid-row: span 2;
}

.glass-gallery-item:nth-child(6n+3) {
  grid-row: span 2;
}

.glass-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.glass-gallery-item:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
}

.glass-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}

.glass-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.04) saturate(1.05);
}

/* Gradient overlay on hover */
.glass-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 25, 47, 0.55) 0%,
      rgba(10, 25, 47, 0.15) 35%,
      transparent 65%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  border-radius: var(--radius);
}

.glass-gallery-item:hover::after {
  opacity: 1;
}

/* Optional label inside gallery item */
.glass-gallery-item .gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 2;
}

.glass-gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* ───── HIGHLIGHT ROW (about page, 3 images) ───── */

.glass-highlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.glass-highlight-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.glass-highlight-img:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.glass-highlight-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.glass-highlight-img:hover img {
  transform: scale(1.05);
}

/* ───── Responsive: gallery + highlights ───── */

@media (max-width: 768px) {
  .glass-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .glass-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }

  .glass-gallery-item:nth-child(4n+1),
  .glass-gallery-item:nth-child(6n+3) {
    grid-row: span 1;
  }

  .glass-gallery-item:nth-child(3n+1) {
    grid-row: span 2;
  }

  .glass-highlight-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .glass-highlight-img img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .glass-services-grid {
    grid-template-columns: 1fr;
  }

  .glass-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
    gap: 8px;
  }

  .glass-gallery-item:nth-child(4n+1),
  .glass-gallery-item:nth-child(6n+3),
  .glass-gallery-item:nth-child(3n+1) {
    grid-row: span 1;
  }
}

/* ═══════════════════════════════════════════════
   CUSTOM FURNITURE SERVICES GRID  —  services.html
   ═══════════════════════════════════════════════ */

.furniture-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap-md);
}

.furniture-service-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.furniture-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  opacity: 0;
  transition: opacity var(--transition);
}

.furniture-service-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.furniture-service-card:hover::before {
  opacity: 1;
}

.furniture-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(43, 124, 255, 0.08), rgba(100, 116, 139, 0.06));
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--gold-dark);
}

.furniture-service-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.furniture-service-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .furniture-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .furniture-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   PORTFOLIO SHOWCASE  — Before / After
   ═══════════════════════════════════════════════ */

/* ── Header ── */
.showcase-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.showcase-header__left h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--gray-900);
  margin-top: 14px;
}

.showcase-header__right p {
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 440px;
}

.showcase-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.showcase-stat {
  display: flex;
  flex-direction: column;
}

.showcase-stat strong {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cyan-dark);
  line-height: 1;
}

.showcase-stat span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 6px;
}

/* ── Grid ── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

/* ── Card ── */
.sc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.45s cubic-bezier(.22, 1, .36, 1),
    border-color 0.35s ease;
  animation: scFadeUp 0.6s cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: 0s;
}

.sc-card.sc-i-0 {
  animation-delay: 0s;
}

.sc-card.sc-i-1 {
  animation-delay: 0.08s;
}

.sc-card.sc-i-2 {
  animation-delay: 0.16s;
}

.sc-card.sc-i-3 {
  animation-delay: 0.24s;
}

.sc-card.sc-i-4 {
  animation-delay: 0.32s;
}

.sc-card.sc-i-5 {
  animation-delay: 0.4s;
}

.sc-card.sc-i-6 {
  animation-delay: 0.48s;
}

.sc-card.sc-i-7 {
  animation-delay: 0.56s;
}

.sc-card.sc-i-8 {
  animation-delay: 0.64s;
}

@keyframes scFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sc-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--cyan);
  box-shadow: 0 20px 60px rgba(10, 20, 35, 0.12),
    0 0 0 1px var(--cyan),
    0 0 40px rgba(43, 124, 255, 0.06);
}

.sc-card--wide {
  grid-column: span 2;
}

/* ── Number badge ── */
.sc-num {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 20, 35, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cyan-light);
  border: 1px solid rgba(43, 124, 255, 0.3);
  pointer-events: none;
}

/* ── Image pair ── */
.sc-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}

.sc-card--wide .sc-pair {
  min-height: 380px;
}

.sc-card:not(.sc-card--wide):not(.sc-card--single) .sc-pair {
  min-height: 300px;
}

.sc-img {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}

.sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.sc-card:hover .sc-img img {
  transform: scale(1.06);
}

.sc-img--hero {
  aspect-ratio: 16 / 9;
}

/* ── Labels ── */
.sc-label {
  position: absolute;
  bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sc-label--before {
  left: 14px;
  background: rgba(220, 53, 69, 0.8);
  color: #fff;
}

.sc-label--after {
  right: 14px;
  background: rgba(25, 135, 84, 0.8);
  color: #fff;
}

/* ── Arrow divider ── */
.sc-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  background: linear-gradient(180deg, var(--gray-100), var(--gray-200));
  position: relative;
  flex-shrink: 0;
}

.sc-arrow svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-dark);
  transition: transform 0.35s ease;
}

.sc-card:hover .sc-arrow svg {
  transform: translateX(4px);
}

/* ── Gallery Details ── */
.sc-gallery {
  padding: 12px 20px 8px;
}

.sc-gallery-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}

.sc-gallery-label svg {
  stroke: var(--gold);
  flex-shrink: 0;
}

.sc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
}

.sc-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  aspect-ratio: 3 / 2;
  cursor: zoom-in;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.sc-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 20, 35, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sc-gallery-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%) scale(0.6);
  z-index: 2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230a1423' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3Cpath d='M11 8v6M8 11h6'/%3E%3C/svg%3E") center / 18px no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.sc-gallery-item:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(43, 124, 255, 0.15);
  transform: translateY(-3px);
}

.sc-gallery-item:hover::after {
  opacity: 1;
}

.sc-gallery-item:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.sc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.22, 1, .36, 1);
}

.sc-gallery-item:hover img {
  transform: scale(1.08);
}

/* ── Lightbox ── */
.sc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 20, 35, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  cursor: zoom-out;
}

.sc-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.sc-lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(.22, 1, .36, 1);
}

.sc-lightbox.is-active img {
  transform: scale(1);
}

.sc-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.sc-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Caption ── */
.sc-caption {
  padding: 20px 24px;
}

.sc-caption h3 {
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--gray-900);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.sc-card:hover .sc-caption h3 {
  color: var(--gold-dark);
}

.sc-caption p {
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  display: none;
}

/* ── Single card (no pair) ── */
.sc-card--single .sc-img--hero {
  width: 100%;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .showcase-header {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .sc-card--wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .sc-pair {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .sc-arrow {
    width: 100%;
    height: 36px;
  }

  .sc-arrow svg {
    transform: rotate(90deg);
  }

  .sc-card:hover .sc-arrow svg {
    transform: rotate(90deg) translateX(4px);
  }

  .sc-card--wide .sc-pair,
  .sc-card:not(.sc-card--wide):not(.sc-card--single) .sc-pair {
    min-height: auto;
  }

  .sc-img {
    aspect-ratio: 4 / 3;
  }

  .sc-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .showcase-stats {
    gap: 20px;
  }

  .showcase-stat strong {
    font-size: 26px;
  }
}

/* ═══════════════════════════════════════════════
   CASE STORIES  — portfolio.html
   ═══════════════════════════════════════════════ */

.case-stories {
  position: relative;
}

.case-stories-header {
  margin-bottom: clamp(30px, 5vw, 56px);
}

.case-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.case-story-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.case-story-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 14px 34px rgba(10, 20, 35, 0.1), 0 0 0 1px rgba(43, 124, 255, 0.12);
}

.case-story-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.case-story-card__meta span {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.case-story-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.35;
  color: var(--gray-900);
  margin: 0;
}

.case-story-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.case-story-list li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
}

.case-story-list strong {
  color: var(--gray-900);
  font-weight: 600;
}

.case-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.case-story-tags span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--white);
}

@media (max-width: 1080px) {
  .case-stories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .case-stories-grid {
    grid-template-columns: 1fr;
  }

  .case-story-card {
    padding: 20px 18px;
  }
}

/* ═══════════════════════════════════════════════
   SERVICE BLOCKS
   ═══════════════════════════════════════════════ */

.service-stack {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
  margin-bottom: var(--gap-lg);
}

.service-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
  padding: var(--gap-md);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-block:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}

.service-block.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.service-block.reverse .service-image {
  order: 2;
}

.service-image {
  overflow: hidden;
  border-radius: var(--radius);
}

.service-image img {
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition-slow);
}

.service-block:hover .service-image img {
  transform: scale(1.03);
}

.service-content .eyebrow {
  font-size: 11px;
  color: var(--gold);
}

.service-content h2 {
  margin: 12px 0 20px;
  font-size: clamp(24px, 2.5vw, 36px);
}

.service-content p {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 15px;
}

.service-list {
  margin-top: 20px;
  padding-left: 0;
  color: var(--gray-600);
  font-size: 15px;
}

.service-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════
   SIGNATURE SERVICE EDITIONS  — services.html
   ═══════════════════════════════════════════════ */

.service-signature__header {
  margin-bottom: clamp(26px, 4vw, 44px);
}

.service-signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(22px, 4vw, 34px);
}

.service-signature-card {
  padding: 24px 22px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-signature-card:hover {
  transform: translateY(-6px);
  border-color: var(--slate-light);
  box-shadow: var(--shadow-md), 0 0 24px rgba(123, 147, 176, 0.12);
}

.service-signature-card--featured {
  border-color: rgba(43, 124, 255, 0.25);
  background: linear-gradient(165deg, rgba(43, 124, 255, 0.08) 0%, var(--white) 38%, var(--gray-50) 100%);
}

.service-signature-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.service-signature-card h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.service-signature-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 15px;
}

.service-signature-card ul {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.service-signature-card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.58;
}

.service-signature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-dark);
}

.service-fit-matrix {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 16px;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.service-fit-matrix__intro h3 {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  margin: 8px 0 0;
}

.service-fit-matrix__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.service-fit-cell {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.service-fit-cell span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.service-fit-cell strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.service-fit-cell p {
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.5;
}

.service-fit-cell em {
  font-style: normal;
  font-weight: 600;
  color: var(--cyan-dark);
}

@media (max-width: 1100px) {
  .service-signature-grid {
    grid-template-columns: 1fr;
  }

  .service-fit-matrix {
    grid-template-columns: 1fr;
  }

  .service-fit-matrix__grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   ABOUT EDITORIAL  — about.html
   ═══════════════════════════════════════════════ */

.about-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
  gap: clamp(18px, 3vw, 26px);
}

.about-editorial-lead {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--white) 0%, var(--gray-50) 100%);
  box-shadow: var(--shadow-sm);
}

.about-editorial-lead h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.14;
  margin: 10px 0 14px;
}

.about-editorial-lead p {
  color: var(--gray-600);
  line-height: 1.74;
  margin-bottom: 10px;
}

.about-editorial-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.about-editorial-pills span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.about-quality-timeline {
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.about-quality-timeline h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.about-quality-timeline ol {
  display: grid;
  gap: 10px;
  counter-reset: qstep;
}

.about-quality-timeline li {
  position: relative;
  list-style: none;
  counter-increment: qstep;
  padding: 12px 12px 12px 42px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.about-quality-timeline li::before {
  content: "0" counter(qstep);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--cyan-dark);
}

.about-quality-timeline strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.about-quality-timeline p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
}

@media (max-width: 1024px) {
  .about-editorial-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   VALUES / STATS GRIDS
   ═══════════════════════════════════════════════ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.value-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  border-color: var(--slate-light);
  box-shadow: var(--shadow-md), 0 0 24px rgba(123, 147, 176, 0.12);
  transform: translateY(-4px);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.value-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stats-grid>div {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.stats-grid>div:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
  transform: translateY(-4px);
}

.stats-grid h3 {
  font-size: clamp(40px, 5vw, 56px);
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.stats-grid p {
  color: var(--gray-600);
  font-size: 15px;
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap-xl);
  align-items: start;
}

.contact-grid h2 {
  margin-bottom: 0;
}

.contact-text {
  margin: 20px 0 28px;
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 15px;
}

.contact-details {
  font-size: 15px;
  color: var(--gray-600);
}

.contact-details p {
  margin-bottom: 10px;
}

.contact-details a {
  color: var(--slate-dark);
  transition: color var(--transition);
}

.contact-details a:hover {
  color: var(--gold-dark);
}

/* ── Contact Form ──────────────────────────── */
.contact-form {
  display: grid;
  gap: 24px;
  background: var(--gray-50);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-400);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(123, 147, 176, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .button {
  justify-self: start;
}

/* ═══════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════ */

.review-summary {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap-xl);
  align-items: center;
}

.rating-card {
  padding: 44px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: center;
}

.rating-card .eyebrow {
  margin-bottom: 12px;
}

.rating-score {
  font-size: clamp(56px, 8vw, 80px);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 8px 0;
}

.rating-subtitle {
  color: var(--gray-500);
  font-size: 15px;
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-stats>div {
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.review-stats>div:hover {
  border-color: var(--slate-light);
  box-shadow: 0 0 20px rgba(123, 147, 176, 0.12);
  transform: translateY(-2px);
}

.review-stats h3 {
  font-size: 32px;
  margin-bottom: 6px;
  color: var(--gray-900);
}

.review-stats p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}



/* ═══════════════════════════════════════════════
   THUMBTACK REVIEWS WIDGET
   ═══════════════════════════════════════════════ */

.thumbtack-widget {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: box-shadow var(--transition);
}

.thumbtack-widget:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Badge */
.thumbtack-widget__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--gold-glow);
  border: 1px solid var(--gold);
  border-radius: 50px;
}

.thumbtack-widget__logo {
  width: 22px;
  height: 22px;
}

.thumbtack-widget__badge-text {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* Stars */
.thumbtack-widget__stars {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.thumbtack-widget__stars .star {
  width: 28px;
  height: 28px;
}

.thumbtack-widget__stars .star.filled path {
  fill: #f5a623;
}

.thumbtack-widget__stars .star.half path {
  fill: url(#halfGrad);
}

.thumbtack-widget__stars .star.half {
  position: relative;
}

/* Half-star via clip */
.thumbtack-widget__stars .star.half path {
  fill: #e0e0e0;
}

.thumbtack-widget__stars .star.half::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 60%;
  overflow: hidden;
}

/* Simpler approach: two-tone with CSS */
.thumbtack-widget__stars .star.half {
  background: linear-gradient(90deg, #f5a623 60%, #e0e0e0 60%);
  -webkit-background-clip: text;
  background-clip: text;
}

.thumbtack-widget__stars .star.half path {
  fill: #f5a623;
  clip-path: inset(0 40% 0 0);
}

/* Score */
.thumbtack-widget__score {
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.03em;
}

.thumbtack-widget__subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: -4px;
}

/* Distribution bars */
.thumbtack-widget__bars {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 8px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--cyan);
  border-radius: 100px;
  transition: width 1s var(--ease-out);
}

.bar-fill--0 {
  width: 0%;
}

.bar-fill--10 {
  width: 10%;
}

.bar-fill--90 {
  width: 90%;
}

.bar-pct {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  width: 34px;
  flex-shrink: 0;
}

/* CTA */
.thumbtack-widget__cta-text {
  font-size: 15px;
  color: var(--gray-600);
  margin-top: 8px;
}

.thumbtack-widget__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--cyan);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(43, 124, 255, 0.25);
}

.thumbtack-widget__button:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43, 124, 255, 0.35);
}

.thumbtack-widget__btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Meta tags */
.thumbtack-widget__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .thumbtack-widget {
    padding: 32px 24px;
  }

  .thumbtack-widget__score {
    font-size: 48px;
  }

  .thumbtack-widget__button {
    padding: 14px 28px;
    font-size: 13px;
  }

  .thumbtack-widget__meta {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}

/* ═══════════════════════════════════════════════
   CLIENT TESTIMONIALS
   ═══════════════════════════════════════════════ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  padding: 32px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 32px rgba(43, 124, 255, 0.1);
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate-light), var(--cyan-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
  line-height: 1.3;
}

.testimonial-meta {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
}

.testimonial-stars {
  margin-left: auto;
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  flex-grow: 1;
}

.testimonial-service {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-glow);
  border: 1px solid var(--gold);
  border-radius: 50px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   DETAILS / CREDENTIALS GRID
   ═══════════════════════════════════════════════ */

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.details-card {
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.details-card:hover {
  border-color: var(--sand-dark);
  box-shadow: var(--shadow-sm);
}

.details-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.details-card ul {
  list-style: none;
  padding-left: 0;
  color: var(--gray-600);
  font-size: 14px;
}

.details-card li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.details-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--slate);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════════ */

.map-embed {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  height: 400px;
  background: var(--gray-200);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ═══════════════════════════════════════════════
   FOOTER SECTION (dark CTA)
   ═══════════════════════════════════════════════ */



/* ═══════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════ */

.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-brand {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.preloader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  border-radius: 1px;
  animation: loadingBar 1s ease-in-out infinite;
}

@keyframes loadingBar {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(300%);
  }
}

/* ═══════════════════════════════════════════════
   HEADER PHONE LINK
   ═══════════════════════════════════════════════ */

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  transition: color var(--transition);
  margin-left: auto;
  margin-right: 32px;
  white-space: nowrap;
}

.header-phone svg {
  flex-shrink: 0;
  opacity: 0.8;
  stroke: var(--gold-light);
}

.header-phone:hover {
  color: var(--white);
}

.header-phone:hover svg {
  stroke: var(--white);
}

/* Phone in mobile nav */
.nav-phone {
  margin-top: auto;
  padding-top: 24px;
  color: var(--gold-light) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  border-top: 1px solid rgba(43, 124, 255, 0.2) !important;
  border-bottom: none !important;
}

/* ═══════════════════════════════════════════════
   FOOTER CONTACT INFO
   ═══════════════════════════════════════════════ */

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0 12px;
}

.footer-contact-info a {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-info a svg {
  flex-shrink: 0;
  opacity: .6;
  transition: opacity .3s ease;
}

.footer-contact-info a:hover svg {
  opacity: 1;
}

.footer-contact-info a:hover {
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   CTA CONTACT ROW
   ═══════════════════════════════════════════════ */

.cta-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  transition: color var(--transition);
}

.cta-phone svg {
  stroke: var(--gold-light);
  flex-shrink: 0;
  transition: stroke var(--transition);
}

.cta-phone:hover {
  color: var(--white);
}

.cta-phone:hover svg {
  stroke: var(--white);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Header Phone
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  .header-phone {
    display: none;
  }

  .nav-phone {
    display: block;
  }

  .cta-phone {
    font-size: 16px;
  }
}

@media (min-width: 769px) {
  .nav-phone {
    display: none;
  }
}

body.is-loaded .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {

  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card--large,
  .project-card--small {
    grid-column: span 1;
  }

  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
    padding: var(--gap-sm);
  }

  .service-block.reverse .service-image {
    order: 0;
  }

  .service-image img {
    height: 320px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .details-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .review-summary {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  /* ── Hero — Mobile ── */
  .hero {
    height: 100dvh;
  }

  .hero__bg {
    object-position: center 30%;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(8, 14, 26, 0.30) 0%,
        rgba(8, 14, 26, 0.0) 30%,
        rgba(8, 14, 26, 0.0) 45%,
        rgba(8, 14, 26, 0.55) 65%,
        rgba(8, 14, 26, 0.90) 85%,
        rgba(8, 14, 26, 0.97) 100%);
  }

  .hero__content {
    padding: 0 20px calc(env(safe-area-inset-bottom, 0px) + 24px);
    gap: 18px;
  }

  .hero__heading {
    font-size: clamp(17px, 4.9vw, 22px);
    line-height: 1.18;
    max-width: none;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    gap: 10px;
  }

  .hero__btn {
    width: 100%;
    padding: 17px 32px;
    font-size: 11px;
    letter-spacing: 0.16em;
    border-radius: 12px;
  }

  .hero__tel {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 17px;
    border-radius: 12px;
  }

  .site-header {
    padding: 16px 20px;
  }

  .site-header.is-scrolled {
    padding: 14px 20px;
  }

  /* Mobile Nav */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 100px 32px 40px;
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
  }

  .nav a {
    font-size: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
  }

  .nav a[aria-current="page"] {
    color: var(--gold-light);
  }

  .nav-toggle {
    display: flex;
  }

  body.nav-open .nav {
    transform: translateX(0);
  }

  body.nav-open .nav-toggle span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    animation: fadeOverlay 0.3s ease;
  }

  @keyframes fadeOverlay {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Content */
  .text-columns {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
  }

  .values-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .scroll-button {
    text-align: center;
    justify-content: center;
  }

  .service-image img {
    height: 260px;
  }

  .contact-form {
    padding: 24px;
  }

  .rating-card {
    padding: 28px;
  }

  .page-hero::before,
  .page-hero::after,
  .page-hero .hero-left::before,
  .page-hero .hero-watermark,
  .page-hero .hero-deco,
  .page-hero .hero-glow {
    display: none;
  }

  .page-hero .eyebrow {
    display: inline-block;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .page-hero .eyebrow::before {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Small Mobile
   ═══════════════════════════════════════════════ */

@media (max-width: 480px) {
  .hero__btn {
    min-height: 50px;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    padding: 14px 24px;
  }

  .hero__tel {
    font-size: 15px;
    padding: 12px 20px;
  }

  .hero__heading {
    font-size: clamp(16px, 4.8vw, 19px);
    max-width: none;
  }

  h1 {
    font-size: clamp(32px, 8vw, 44px);
  }

  .page-hero {
    padding-top: calc(var(--section-y) + 60px);
  }

  .brand {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .button {
    padding: 14px 24px;
    font-size: 11px;
  }

  .hero-content {
    padding: 0 16px 24px;
  }

  .hero-media img {
    object-position: center 35%;
  }

  .service-image img {
    height: 220px;
  }

  .service-block {
    padding: 16px;
  }

  .nav {
    width: 100%;
    padding: 100px 24px 40px;
  }
}

/* ═══════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light), var(--cyan));
  z-index: 1100;
  transition: none;
  will-change: width;
}

/* ═══════════════════════════════════════════════
   GRAIN / NOISE TEXTURE OVERLAY
   ═══════════════════════════════════════════════ */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ═══════════════════════════════════════════════
   MARQUEE TICKER
   ═══════════════════════════════════════════════ */

.marquee-section {
  padding: 28px 0;
  background: var(--navy);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  gap: 0;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}

.marquee-item:hover {
  color: var(--gold-light);
}

.marquee-item::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════
   ENHANCED PRELOADER
   ═══════════════════════════════════════════════ */

.preloader-counter {
  font-family: "Inter", sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.preloader-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════
   IMAGE REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */

.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.img-reveal.is-revealed::before {
  transform: scaleX(0);
}

.img-reveal img {
  transform: scale(1.15);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.img-reveal.is-revealed img {
  transform: scale(1);
}

/* ═══════════════════════════════════════════════
   STAGGERED REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-stagger.is-visible>*:nth-child(1) {
  transition-delay: 0s;
}

.reveal-stagger.is-visible>*:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-stagger.is-visible>*:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal-stagger.is-visible>*:nth-child(4) {
  transition-delay: 0.3s;
}

.reveal-stagger.is-visible>*:nth-child(5) {
  transition-delay: 0.4s;
}

.reveal-stagger.is-visible>*:nth-child(6) {
  transition-delay: 0.5s;
}

.reveal-stagger.is-visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   ENHANCED CARD HOVER
   ═══════════════════════════════════════════════ */

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.value-card:hover::before {
  transform: scaleX(1);
}

/* Details card top accent on hover */
.details-card {
  position: relative;
  overflow: hidden;
}

.details-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--slate), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.details-card:hover::before {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════════
   COUNTER ANIMATION
   ═══════════════════════════════════════════════ */

.stats-grid h3,
.review-stats h3,
.rating-score {
  font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════════════
   PROCESS / WORKFLOW SECTION
   ═══════════════════════════════════════════════ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: process;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), var(--gray-200), transparent);
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  counter-increment: process;
}

.process-step::before {
  content: "0" counter(process);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan-dark);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: var(--white);
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease);
}

.process-step:hover::before {
  background: var(--cyan);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(43, 124, 255, 0.3);
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.process-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 220px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   ENHANCED SITE FOOTER
   ═══════════════════════════════════════════════ */

.site-footer {
  padding: 80px var(--section-x) 40px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}

.footer-brand {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 28px;
  width: auto;
  opacity: 0.8;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
  margin-top: 12px;
}

.footer-heading {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer-social a svg {
  flex-shrink: 0;
}

.footer-social a:hover {
  border-color: var(--cyan);
  color: var(--cyan-light);
  background: rgba(43, 124, 255, 0.08);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════
   CUSTOM SCROLLBAR (WebKit)
   ═══════════════════════════════════════════════ */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ═══════════════════════════════════════════════
   ENHANCED CTA SECTION
   ═══════════════════════════════════════════════ */

.section--dark.section--cta {
  text-align: center;
  padding: clamp(100px, 12vw, 180px) var(--section-x);
}

.section--cta h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  max-width: 14ch;
  margin: 0 auto 24px;
}

.section--cta .eyebrow {
  margin-bottom: 20px;
}

.cta-description {
  max-width: 520px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   FIXED ACTION BUTTONS (FAB + Back‑to‑Top)
   ═══════════════════════════════════════════════ */

.fixed-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Contact Links (expand upward) ── */
.fixed-actions__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fixed-actions.is-open .fixed-actions__contacts {
  max-height: 200px;
  padding-bottom: 12px;
}

.fixed-actions__link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}

.fixed-actions__link:hover {
  transform: scale(1.12) !important;
}

.fixed-actions.is-open .fixed-actions__link {
  opacity: 1;
  transform: scale(1);
}

.fixed-actions.is-open .fixed-actions__link:nth-child(1) {
  transition-delay: 0.05s;
}

.fixed-actions.is-open .fixed-actions__link:nth-child(2) {
  transition-delay: 0.10s;
}

.fixed-actions.is-open .fixed-actions__link:nth-child(3) {
  transition-delay: 0.15s;
}

.fixed-actions__link--phone {
  background: var(--cyan-dark);
}

.fixed-actions__link--whatsapp {
  background: #25d366;
}

.fixed-actions__link--telegram {
  background: #2aabee;
}

/* Tooltip */
.fixed-actions__link::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-900);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
}

.fixed-actions__link:hover::before {
  opacity: 1;
}

/* ── Back‑to‑Top ── */
.fixed-actions__top {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0);
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, width 0.3s ease, height 0.3s ease, margin 0.3s ease, background 0.3s ease;
}

.fixed-actions__top.is-visible {
  opacity: 1;
  transform: scale(1);
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}

.fixed-actions__top:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ── FAB Trigger ── */
.fixed-actions__fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--cyan);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 212, 200, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
  z-index: 2;
}

.fixed-actions__fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 212, 200, 0.45);
}

.fixed-actions__fab svg {
  transition: transform 0.3s var(--ease);
}

.fixed-actions.is-open .fixed-actions__fab {
  background: var(--gray-700);
}

.fixed-actions.is-open .fixed-actions__fab svg {
  transform: rotate(45deg);
}

/* Pulse ring */
.fixed-actions__fab::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  opacity: 0;
  animation: fabPulse 2.5s var(--ease) infinite;
}

.fixed-actions.is-open .fixed-actions__fab::after {
  animation: none;
  opacity: 0;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — PROCESS & NEW SECTIONS
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-grid::before {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .marquee-item {
    font-size: 10px;
    padding: 0 24px;
    gap: 24px;
  }
}

/* ═══════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  max-width: 560px;
}

.cookie-banner a {
  color: var(--cyan-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.cookie-banner__btn--accept {
  background: var(--cyan);
  color: var(--white);
}

.cookie-banner__btn--accept:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
}

.cookie-banner__btn--decline {
  background: var(--gray-700);
  color: var(--gray-300);
}

.cookie-banner__btn--decline:hover {
  background: var(--gray-600);
}

/* Push FAB up when cookie banner visible */
.cookie-banner.is-visible~.fixed-actions {
  bottom: 80px;
}

/* ═══════════════════════════════════════════════
   QUICK ESTIMATE FORM (CTA sections)
   ═══════════════════════════════════════════════ */

.quick-form {
  max-width: 520px;
  margin: var(--gap-sm) auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-form__row {
  display: flex;
  gap: 12px;
}

.quick-form input,
.quick-form textarea {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.quick-form input::placeholder,
.quick-form textarea::placeholder {
  color: var(--gray-400);
}

.quick-form input:focus,
.quick-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.10);
}

.quick-form textarea {
  resize: vertical;
  min-height: 60px;
}

.quick-form .button {
  align-self: center;
  margin-top: 4px;
}

.quick-form__note {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — FIXED ACTIONS, FORMS, COOKIE
   ═══════════════════════════════════════════════ */

@media (max-width: 480px) {
  .fixed-actions {
    bottom: 20px;
    right: 16px;
  }

  .fixed-actions__fab {
    width: 50px;
    height: 50px;
  }

  .fixed-actions__link {
    width: 42px;
    height: 42px;
  }

  .fixed-actions__link::before {
    display: none;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
    gap: 12px;
  }

  .quick-form__row {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════
   DESIGN TUNE-UP — 2026-02-13
   ═══════════════════════════════════════════════ */

.section-header {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.section-header h2 {
  padding-bottom: 22px;
}

.section-header h2::after {
  width: 72px;
  height: 2px;
}

.hero__heading {
  max-width: 18ch;
}

.hero__actions {
  flex-wrap: wrap;
  justify-content: center;
}

.hero__btn,
.button {
  min-height: 52px;
  border-radius: 10px;
  letter-spacing: 0.14em;
}

.button {
  padding: 16px 34px;
}

.project-card {
  gap: 12px;
}

.project-media {
  border-color: var(--gray-300);
}

.project-meta p {
  margin-top: 6px;
  font-size: 15px;
  color: var(--gray-600);
}

.service-block {
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.service-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-form {
  border-radius: 14px;
}

.contact-form input,
.contact-form textarea {
  min-height: 48px;
}

.quick-form input,
.quick-form textarea {
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-form .button,
.quick-form .button {
  min-width: 220px;
}

@media (max-width: 768px) {

  .hero__actions .hero__btn,
  .hero__actions .hero__tel {
    width: min(100%, 340px);
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════
   MOBILE POLISH — readability & spacing
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  .section {
    padding: clamp(52px, 10vw, 72px) 18px;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    padding-bottom: 14px;
  }

  .section-header h2::after {
    width: 54px;
  }

  .eyebrow {
    margin-bottom: 10px;
    letter-spacing: 0.16em;
  }

  .text-columns {
    gap: 18px;
    font-size: 15px;
    line-height: 1.74;
  }

  .hero-meta {
    gap: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero-meta li:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }

  .project-grid {
    gap: 18px;
  }

  .project-meta h3 {
    font-size: clamp(19px, 6vw, 24px);
  }

  .project-meta p {
    font-size: 14px;
    margin-top: 4px;
  }

  .service-block,
  .service-block.reverse {
    padding: 14px;
    gap: 16px;
    border-radius: 14px;
  }

  .service-content p,
  .service-list li {
    font-size: 15px;
    line-height: 1.68;
  }

  .contact-form,
  .quick-form {
    gap: 14px;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-form label {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .contact-form .button,
  .quick-form .button {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    padding: 56px 18px 28px;
  }

  .footer-top {
    gap: 22px;
    padding-bottom: 30px;
    margin-bottom: 22px;
  }

  .footer-links {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 44px 14px;
  }

  .hero__content {
    gap: 14px;
  }

  .hero__heading {
    max-width: none;
    line-height: 1.14;
  }

  .hero__btn,
  .button {
    min-height: 48px;
  }

  .service-image img {
    height: 200px;
  }

  .rating-card {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════════
   SIGNATURE ACCENTS — global anti-monotony layer
   ═══════════════════════════════════════════════ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--gold) 100%);
  flex-shrink: 0;
}

.section--dark .eyebrow {
  border-color: var(--gray-700);
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.section-header h2::after {
  width: 86px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--gold) 100%);
}

.nav a:not(.nav-phone) {
  position: relative;
}

.nav a:not(.nav-phone)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  background: linear-gradient(90deg, var(--cyan) 0%, var(--gold) 100%);
}

.nav a:not(.nav-phone):hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.button,
.hero__btn {
  box-shadow: 0 7px 18px rgba(43, 124, 255, 0.16);
}

.button:hover,
.hero__btn:hover {
  box-shadow: 0 12px 26px rgba(43, 124, 255, 0.24), 0 0 0 1px rgba(90, 157, 255, 0.35);
}

.link-arrow::after {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--gold) 100%);
}

.value-card,
.service-block,
.process-step,
.details-card,
.glass-service-card,
.furniture-service-card,
.company-feature-card,
.service-signature-card,
.case-story-card,
.readiness-card,
.journal-article,
.contact-form,
.project-media,
.rating-card {
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(90, 157, 255, 0.35);
}

.value-card:hover,
.service-block:hover,
.process-step:hover,
.details-card:hover,
.glass-service-card:hover,
.furniture-service-card:hover,
.company-feature-card:hover,
.service-signature-card:hover,
.case-story-card:hover,
.readiness-card:hover,
.journal-article:hover,
.contact-form:hover,
.project-media:hover,
.rating-card:hover {
  box-shadow: var(--shadow-md), inset 0 2px 0 rgba(43, 124, 255, 0.9);
}

@media (max-width: 768px) {
  .eyebrow {
    padding: 5px 10px;
    gap: 6px;
  }

  .section-header h2::after {
    width: 64px;
  }
}

/* ═══════════════════════════════════════════════
   PREMIUM INTEGRATION LAYER — page scoped
   ═══════════════════════════════════════════════ */

.page-hero--projects .hero-glow {
  background: radial-gradient(circle at 50% 50%, rgba(43, 124, 255, 0.14) 0%, rgba(43, 124, 255, 0.02) 56%, transparent 76%);
}

.page-hero--services .hero-glow {
  background: radial-gradient(circle at 50% 50%, rgba(90, 157, 255, 0.14) 0%, rgba(90, 157, 255, 0.03) 58%, transparent 78%);
}

.page-hero--about .hero-glow,
.page-hero--reviews .hero-glow,
.page-hero--contact .hero-glow {
  background: radial-gradient(circle at 50% 50%, rgba(148, 163, 184, 0.12) 0%, rgba(148, 163, 184, 0.03) 54%, transparent 76%);
}

.page-hero--journal .hero-glow {
  background: radial-gradient(circle at 50% 50%, rgba(26, 95, 212, 0.16) 0%, rgba(26, 95, 212, 0.04) 56%, transparent 78%);
}

.page-hero--journal .hero-watermark {
  color: rgba(255, 255, 255, 0.035);
}

.page-hero .hero-meta {
  gap: 8px;
}

.page-hero .hero-meta li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.page-hero .hero-meta li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding-right: 10px;
}

#insights,
#human-approach,
#service-signature,
#about-editorial,
#case-stories,
.journal-hub,
.contact-readiness,
.journal-teaser {
  position: relative;
  isolation: isolate;
}

#insights::before,
#human-approach::before,
#service-signature::before,
#about-editorial::before,
#case-stories::before,
.journal-hub::before,
.contact-readiness::before,
.journal-teaser::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(12px, 4vw, 48px);
  width: clamp(120px, 14vw, 220px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(43, 124, 255, 0.18) 30%, rgba(43, 124, 255, 0.42) 70%, transparent 100%);
  pointer-events: none;
}

#insights .section-header h2,
#human-approach .section-header h2,
#service-signature .section-header h2,
#about-editorial .section-header h2,
#case-stories .section-header h2,
.contact-readiness .section-header h2 {
  max-width: 22ch;
}

#projects .project-card:nth-child(even),
.testimonials-grid .testimonial-card:nth-child(even),
.details-grid .details-card:nth-child(even),
.stats-grid>div:nth-child(even) {
  margin-top: 10px;
}

.service-signature-grid .service-signature-card--featured,
.case-stories-grid .case-story-card:nth-child(2),
.case-stories-grid .case-story-card:nth-child(5) {
  transform: translateY(-8px);
}

.service-signature-grid .service-signature-card--featured:hover,
.case-stories-grid .case-story-card:nth-child(2):hover,
.case-stories-grid .case-story-card:nth-child(5):hover {
  transform: translateY(-12px);
}

@media (max-width: 1024px) {

  #projects .project-card:nth-child(even),
  .testimonials-grid .testimonial-card:nth-child(even),
  .details-grid .details-card:nth-child(even),
  .stats-grid>div:nth-child(even) {
    margin-top: 0;
  }

  .service-signature-grid .service-signature-card--featured,
  .case-stories-grid .case-story-card:nth-child(2),
  .case-stories-grid .case-story-card:nth-child(5) {
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════
   PREMIUM PHASE 2 — editorial rhythm
   ═══════════════════════════════════════════════ */

#about .text-columns p:first-child {
  padding-left: 18px;
  border-left: 2px solid rgba(43, 124, 255, 0.35);
}

#projects .project-grid {
  gap: 18px;
}

#projects .project-card--large .project-meta,
#projects .project-card--small .project-meta {
  padding-top: 6px;
}

#services .service-stack {
  gap: clamp(26px, 4vw, 46px);
}

#services .service-block:nth-child(2n) {
  border-color: rgba(43, 124, 255, 0.16);
}

#services .service-block:nth-child(2n+1) {
  border-color: rgba(148, 163, 184, 0.24);
}

#why-us .values-grid .value-card:nth-child(2) {
  background: linear-gradient(165deg, rgba(43, 124, 255, 0.07) 0%, var(--white) 40%, var(--gray-50) 100%);
}

#process .process-step:nth-child(2n) {
  transform: translateY(10px);
}

#process .process-step:nth-child(2n):hover {
  transform: translateY(6px);
}

#service-signature .service-fit-matrix {
  border-color: rgba(43, 124, 255, 0.2);
}

#core-services .service-stack .service-block:nth-child(3n+2) {
  border-color: rgba(43, 124, 255, 0.18);
  background: linear-gradient(180deg, var(--white) 0%, rgba(245, 247, 250, 0.75) 100%);
}

#core-services .service-stack .service-block:nth-child(3n+2):hover {
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(43, 124, 255, 0.2);
}

#glass-gallery .gallery-showcase__hero,
#furniture-gallery .gallery-showcase__hero {
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
}

#glass-gallery .gallery-showcase__tag,
#furniture-gallery .gallery-showcase__tag {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 20, 35, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 1024px) {
  #process .process-step:nth-child(2n) {
    transform: none;
  }

  #projects .project-grid {
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════
   PREMIUM PHASE 2B — portfolio + reviews
   ═══════════════════════════════════════════════ */

.portfolio-showcase .showcase-header__right {
  padding-top: 10px;
}

.portfolio-showcase .showcase-stat strong {
  background: linear-gradient(135deg, var(--cyan-dark) 0%, var(--cyan) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-showcase .sc-card:nth-child(even):not(.sc-card--wide) {
  margin-top: 12px;
}

.portfolio-showcase .sc-card--wide {
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(43, 124, 255, 0.12);
}

.case-stories-grid .case-story-card:nth-child(3n) {
  background: linear-gradient(170deg, rgba(43, 124, 255, 0.08) 0%, var(--white) 42%, var(--gray-50) 100%);
}

#glass-work .glass-gallery-item:nth-child(6n+2),
#furniture-work .glass-gallery-item:nth-child(6n+2) {
  margin-top: 8px;
}

#glass-work .glass-gallery-item:nth-child(6n+5),
#furniture-work .glass-gallery-item:nth-child(6n+5) {
  margin-top: -6px;
}

.review-summary {
  align-items: stretch;
}

.review-summary .rating-card {
  background: linear-gradient(165deg, rgba(43, 124, 255, 0.06) 0%, var(--white) 45%, var(--gray-50) 100%);
}

.review-summary .review-stats>div:nth-child(even) {
  margin-top: 10px;
}

.testimonials-grid .testimonial-card:nth-child(3n+2) {
  margin-top: 12px;
}

.details-grid .details-card:nth-child(odd) {
  background: linear-gradient(165deg, rgba(148, 163, 184, 0.08) 0%, var(--white) 48%, var(--gray-50) 100%);
}

@media (max-width: 1024px) {

  .portfolio-showcase .sc-card:nth-child(even):not(.sc-card--wide),
  .review-summary .review-stats>div:nth-child(even),
  .testimonials-grid .testimonial-card:nth-child(3n+2),
  #glass-work .glass-gallery-item:nth-child(6n+2),
  #furniture-work .glass-gallery-item:nth-child(6n+2),
  #glass-work .glass-gallery-item:nth-child(6n+5),
  #furniture-work .glass-gallery-item:nth-child(6n+5) {
    margin-top: 0;
  }
}