/* =========================================================
   Landmark Commercial Cleaning Service Inc. — Premium Theme
   ========================================================= */

:root {
  --ink: #081120;
  --navy: #0d1b2e;
  --navy-2: #13294a;
  --navy-3: #1c3a63;
  --gold: #c9a45c;
  --gold-2: #e3c88f;
  --gold-3: #a8843f;
  --cream: #f6f1e8;
  --paper: #fbf9f4;
  --white: #ffffff;
  --text: #1a2333;
  --muted: #667085;
  --muted-light: rgba(255, 255, 255, 0.66);
  --line: rgba(201, 164, 92, 0.28);
  --line-dark: rgba(13, 27, 46, 0.1);

  --f-display: "Playfair Display", "Times New Roman", Georgia, serif;
  --f-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-script: "Allura", "Brush Script MT", cursive;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shadow: 0 30px 60px -25px rgba(8, 17, 32, 0.35);
  --shadow-soft: 0 20px 50px -30px rgba(8, 17, 32, 0.3);
  --header-h: 92px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--ink); }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(80px, 11vw, 150px); position: relative; }
.section--dark { background: var(--navy); color: var(--white); }
.section--ink { background: var(--ink); color: var(--white); }
.section--cream { background: var(--cream); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); font-weight: 400; }
.display-xl { font-size: clamp(2.8rem, 7vw, 6.4rem); }
.display-l { font-size: clamp(2.3rem, 5vw, 4.3rem); }
.display-m { font-size: clamp(1.9rem, 3.6vw, 3.1rem); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 60ch; }
.section--dark .lead, .section--ink .lead { color: var(--muted-light); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: currentColor; }
.eyebrow--center::after { content: ""; width: 42px; height: 1px; background: currentColor; }

.section-head { display: grid; gap: 24px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head--split { grid-template-columns: 1.1fr 0.9fr; align-items: end; gap: 60px; }
.section-head--center { text-align: center; justify-items: center; }
.section-head--center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold); --fg: var(--ink);
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 32px; border-radius: 100px;
  background: var(--bg); color: var(--fg);
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.04em;
  transition: color 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--navy);
  transform: translateY(101%); border-radius: 50% 50% 0 0;
  transition: transform 0.6s var(--ease), border-radius 0.6s var(--ease);
}
.btn:hover::before { transform: translateY(0); border-radius: 0; }
.btn:hover { color: var(--white); box-shadow: 0 18px 40px -18px rgba(201, 164, 92, 0.8); }
.btn::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg); animation: shine 4.5s 2s infinite;
}
@keyframes shine { 0%, 70% { left: -80%; } 100% { left: 140%; } }
.btn svg { width: 18px; height: 18px; transition: transform 0.5s var(--ease); }
.btn:hover svg { transform: translateX(4px) rotate(-45deg); }
.btn--ghost { --bg: transparent; --fg: var(--white); border: 1px solid rgba(255, 255, 255, 0.35); }
.btn--ghost::before { background: var(--white); }
.btn--ghost::after { display: none; }
.btn--ghost:hover { color: var(--ink); }
.btn--dark { --bg: var(--navy); --fg: var(--white); }
.btn--dark::before { background: var(--gold); }
.btn--dark:hover { color: var(--ink); }
.btn--sm { padding: 13px 24px; font-size: 0.85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; color: var(--gold-3);
  position: relative; padding-bottom: 4px;
}
.link-arrow::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: currentColor;
  transform-origin: right; transition: transform 0.5s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(0); }
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--ink); color: var(--white);
}
.preloader__panel { position: absolute; inset: 0; background: var(--navy); z-index: -1; }
.preloader__inner { display: grid; justify-items: center; gap: 22px; text-align: center; }
.preloader__mark { width: 86px; height: 86px; }
.preloader__mark path, .preloader__mark rect {
  fill: none; stroke: var(--gold); stroke-width: 1.4;
  stroke-dasharray: 200; stroke-dashoffset: 200;
  animation: draw 1.6s var(--ease) forwards;
}
.preloader__mark rect:nth-of-type(1) { animation-delay: 0.35s; }
.preloader__mark rect:nth-of-type(2) { animation-delay: 0.5s; }
.preloader__mark rect:nth-of-type(3) { animation-delay: 0.65s; }
.preloader__mark .spark { fill: var(--gold); stroke: none; opacity: 0; animation: sparkIn 0.8s 1.1s var(--ease) forwards; transform-origin: 36px 11px; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes sparkIn { from { opacity: 0; transform: scale(0) rotate(-90deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
.preloader__word { font-family: var(--f-display); font-size: clamp(1.6rem, 4vw, 2.3rem); letter-spacing: 0.42em; padding-left: 0.42em; overflow: hidden; }
.preloader__word span { display: inline-block; transform: translateY(110%); animation: rise 0.9s var(--ease) forwards; }
@keyframes rise { to { transform: translateY(0); } }
.preloader__sub { font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); opacity: 0; animation: fadeIn 1s 0.9s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.preloader__bar { width: 200px; height: 1px; background: rgba(255, 255, 255, 0.14); position: relative; overflow: hidden; }
.preloader__bar i { position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.preloader__count { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--muted-light); font-variant-numeric: tabular-nums; }
html:not(.js) .preloader { display: none; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  display: flex; align-items: center;
  color: var(--white);
  transition: transform 0.6s var(--ease), background 0.5s var(--ease), height 0.5s var(--ease), box-shadow 0.5s;
}
.header.is-scrolled {
  --header-h: 76px;
  background: rgba(8, 17, 32, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 rgba(201, 164, 92, 0.18);
}
.header.is-hidden { transform: translateY(-100%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo__mark path, .logo__mark rect { fill: none; stroke: var(--gold); stroke-width: 1.6; }
.logo__mark .spark { fill: var(--gold); stroke: none; }
.logo__text { display: grid; line-height: 1; }
.logo__name { font-family: var(--f-display); font-size: 1.36rem; letter-spacing: 0.22em; font-weight: 600; }
.logo__tag { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 6px; font-weight: 700; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav__link {
  position: relative; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 6px 0; opacity: 0.88; transition: opacity 0.3s, color 0.3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform 0.5s var(--ease);
}
.nav__link:hover, .nav__link.is-active { opacity: 1; color: var(--gold-2); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: 22px; }
.header__phone { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.9rem; }
.header__phone-icon {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(201, 164, 92, 0.5); color: var(--gold);
  position: relative;
}
.header__phone-icon::before {
  content: ""; position: absolute; inset: -1px; border-radius: 50%; border: 1px solid var(--gold);
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }
.header__phone-icon svg { width: 17px; height: 17px; }
.header__phone small { display: block; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-light); font-weight: 600; }

.burger { display: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.25); position: relative; z-index: 1001; }
.burger span { position: absolute; left: 14px; right: 14px; height: 1.5px; background: currentColor; transition: transform 0.5s var(--ease), top 0.5s var(--ease), opacity 0.3s; }
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 23px; right: 20px; }
.burger span:nth-child(3) { top: 28px; }
.menu-open .burger span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 950;
  background: var(--ink); color: var(--white);
  clip-path: circle(0% at calc(100% - 44px) 46px);
  transition: clip-path 0.9s var(--ease-in-out);
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px var(--gutter) 40px;
  visibility: hidden;
}
.menu-open .mobile-menu { clip-path: circle(150% at calc(100% - 44px) 46px); visibility: visible; }
.menu-open .header { z-index: 1001; background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.mobile-menu__links a.is-active { color: var(--gold); }
.mobile-menu__links { display: grid; gap: 6px; }
.mobile-menu__links a {
  font-family: var(--f-display); font-size: clamp(2.2rem, 9vw, 3.4rem); line-height: 1.2;
  display: flex; align-items: baseline; gap: 18px;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease), color 0.3s;
}
.mobile-menu__links a small { font-family: var(--f-body); font-size: 0.8rem; color: var(--gold); letter-spacing: 0.1em; }
.mobile-menu__links a:hover { color: var(--gold); }
.menu-open .mobile-menu__links a { opacity: 1; transform: none; }
.menu-open .mobile-menu__links a:nth-child(1) { transition-delay: 0.3s; }
.menu-open .mobile-menu__links a:nth-child(2) { transition-delay: 0.37s; }
.menu-open .mobile-menu__links a:nth-child(3) { transition-delay: 0.44s; }
.menu-open .mobile-menu__links a:nth-child(4) { transition-delay: 0.51s; }
.menu-open .mobile-menu__links a:nth-child(5) { transition-delay: 0.58s; }
.mobile-menu__foot { margin-top: 48px; display: grid; gap: 8px; color: var(--muted-light); font-size: 0.95rem; opacity: 0; transition: opacity 0.6s 0.6s; }
.mobile-menu__foot a { color: var(--white); font-weight: 700; }
.menu-open .mobile-menu__foot { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden; background: var(--ink);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s var(--ease); }
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); }
.hero__slide.is-active img { animation: kenburns 9s linear forwards; }
@keyframes kenburns { from { transform: scale(1.18) translate3d(0, 0, 0); } to { transform: scale(1.02) translate3d(-1%, -1%, 0); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 17, 32, 0.7) 0%, rgba(8, 17, 32, 0.1) 32%, rgba(8, 17, 32, 0.35) 68%, rgba(8, 17, 32, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 17, 32, 0.82) 0%, rgba(8, 17, 32, 0.35) 55%, rgba(8, 17, 32, 0.05) 85%);
}
.hero__particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero__content { position: relative; z-index: 3; width: 100%; padding-top: calc(var(--header-h) + 60px); padding-bottom: clamp(60px, 9vh, 110px); }
.hero__grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 20px 9px 10px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 30px;
}
.hero__badge b { background: var(--gold); color: var(--ink); border-radius: 100px; padding: 4px 12px; font-size: 0.7rem; letter-spacing: 0.1em; }
.hero__title { font-size: clamp(2.7rem, 5.9vw, 6rem); line-height: 1.04; margin-bottom: 28px; }
@media (min-width: 721px) { .hero__title .line { white-space: nowrap; } }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero__title .line > span { display: inline-block; }
.hero__text { font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: rgba(255, 255, 255, 0.8); max-width: 52ch; margin-bottom: 40px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 50px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.75); }
.hero__trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero__trust svg { width: 18px; height: 18px; color: var(--gold); }

.hero__nav { display: grid; gap: 22px; min-width: 250px; }
.hero__nav-item { text-align: left; color: rgba(255, 255, 255, 0.5); transition: color 0.4s; display: grid; gap: 10px; }
.hero__nav-item span { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; display: flex; gap: 14px; }
.hero__nav-item span em { font-style: normal; color: var(--gold); }
.hero__nav-item i { display: block; height: 2px; background: rgba(255, 255, 255, 0.18); position: relative; overflow: hidden; border-radius: 2px; }
.hero__nav-item i::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.hero__nav-item.is-active { color: var(--white); }
.hero__nav-item.is-active i::after { animation: progress var(--slide-dur, 7s) linear forwards; }
@keyframes progress { to { transform: scaleX(1); } }

.hero__scroll {
  position: absolute; z-index: 3; left: 24px; bottom: 36px;
  display: grid; justify-items: center; gap: 10px;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6);
}
.hero__scroll span { writing-mode: vertical-rl; }
.hero__scroll i { width: 1px; height: 46px; background: rgba(255, 255, 255, 0.2); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%; background: var(--gold); animation: scrollLine 2s var(--ease-in-out) infinite; }
@keyframes scrollLine { to { top: 100%; } }

/* ---------- Marquee ---------- */
.marquee { background: var(--gold); color: var(--ink); overflow: hidden; padding-block: 22px; position: relative; z-index: 2; }
.marquee--dark { background: var(--navy); color: var(--white); border-block: 1px solid var(--line); }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; }
.marquee__item { display: inline-flex; align-items: center; gap: 36px; padding-right: 36px; font-family: var(--f-display); font-size: clamp(1.3rem, 2.4vw, 2rem); font-style: italic; white-space: nowrap; }
.marquee__item svg { width: 22px; height: 22px; flex-shrink: 0; }
.marquee--dark .marquee__item svg { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About (home) ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 7vw, 110px); align-items: center; }
.about__media { position: relative; padding-bottom: 90px; padding-right: 70px; }
.about__img-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 4.6; box-shadow: var(--shadow); }
.about__img-main img, .about__img-sub img { width: 100%; height: 118%; object-fit: cover; }
.about__img-sub {
  position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 1 / 1.05;
  border-radius: var(--radius); overflow: hidden; border: 10px solid var(--paper); box-shadow: var(--shadow);
}
.about__badge { position: absolute; left: -34px; bottom: 40px; width: 150px; height: 150px; display: grid; place-items: center; z-index: 2; }
.about__badge-ring { position: absolute; inset: 0; animation: spin 18s linear infinite; }
.about__badge-ring text { font-size: 10.2px; letter-spacing: 3.2px; font-weight: 700; fill: var(--navy); text-transform: uppercase; font-family: var(--f-body); }
.about__badge-core { position: relative; z-index: 1; width: 86px; height: 86px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; box-shadow: var(--shadow); }
.about__badge-core svg { width: 38px; height: 38px; }
.about__badge::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--gold-2); }
@keyframes spin { to { transform: rotate(360deg); } }

.about__body .lead { margin-bottom: 36px; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; margin-bottom: 44px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; font-size: 0.97rem; }
.checklist svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold-3); margin-top: 2px; }
.section--dark .checklist svg, .section--ink .checklist svg { color: var(--gold); }
.signature { display: flex; align-items: center; gap: 18px; padding-top: 32px; border-top: 1px solid var(--line-dark); flex-wrap: wrap; }
.signature__name { font-family: var(--f-script); font-size: 2.7rem; line-height: 1; color: var(--navy); }
.signature__role { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.signature__role strong { display: block; color: var(--text); letter-spacing: 0.04em; text-transform: none; font-size: 1rem; }
.signature .btn { margin-left: auto; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat { padding: 50px 28px 10px 0; position: relative; }
.stat + .stat { padding-left: 32px; border-left: 1px solid var(--line); }
.stat__num { font-family: var(--f-display); font-size: clamp(2.8rem, 5vw, 4.4rem); line-height: 1; color: var(--gold); display: flex; align-items: baseline; }
.stat__num sup { font-size: 0.45em; margin-left: 4px; }
.stat__label { margin-top: 14px; font-size: 0.9rem; color: var(--muted-light); letter-spacing: 0.03em; }

/* ---------- Services showcase (home) ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.showcase__list { border-top: 1px solid var(--line-dark); }
.showcase__item {
  display: grid; grid-template-columns: 56px 1fr 44px; gap: 18px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line-dark); cursor: pointer; position: relative;
  transition: padding 0.6s var(--ease);
}
.showcase__item::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.8s var(--ease);
}
.showcase__num { font-size: 0.82rem; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; transition: color 0.4s; }
.showcase__title { font-family: var(--f-display); font-size: clamp(1.4rem, 2.3vw, 2rem); line-height: 1.2; transition: color 0.4s, transform 0.6s var(--ease); }
.showcase__desc { grid-column: 2 / 3; font-size: 0.95rem; color: var(--muted); max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.7s var(--ease), opacity 0.5s, margin 0.6s var(--ease); }
.showcase__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; transition: all 0.5s var(--ease); }
.showcase__arrow svg { width: 16px; height: 16px; transition: transform 0.5s var(--ease); }
.showcase__item.is-active::before { transform: scaleX(1); }
.showcase__item.is-active .showcase__num { color: var(--gold-3); }
.showcase__item.is-active .showcase__title { color: var(--navy); transform: translateX(8px); }
.showcase__item.is-active .showcase__title em { color: var(--gold-3); }
.showcase__item.is-active .showcase__desc { max-height: 120px; opacity: 1; margin-top: -4px; }
.showcase__item.is-active .showcase__arrow { background: var(--navy); border-color: var(--navy); color: var(--gold); }
.showcase__item.is-active .showcase__arrow svg { transform: rotate(-45deg); }
.showcase__preview { position: sticky; top: 120px; aspect-ratio: 4 / 4.4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--navy); }
.showcase__img { position: absolute; inset: 0; opacity: 0; transform: scale(1.12); transition: opacity 0.9s var(--ease), transform 1.4s var(--ease); }
.showcase__img.is-active { opacity: 1; transform: scale(1); }
.showcase__img img { width: 100%; height: 100%; object-fit: cover; }
.showcase__preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(8, 17, 32, 0.8)); pointer-events: none; }
.showcase__caption { position: absolute; left: 30px; right: 30px; bottom: 28px; z-index: 2; color: var(--white); display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.showcase__caption strong { font-family: var(--f-display); font-weight: 500; font-size: 1.5rem; }
.showcase__caption span { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-2); }

/* ---------- Why choose us ---------- */
.why { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(50px, 7vw, 100px); align-items: center; }
.why__media { position: relative; }
.why__img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3.6 / 5; }
.why__img img { width: 100%; height: 115%; object-fit: cover; }
.why__card {
  position: absolute; right: -40px; bottom: 50px; max-width: 280px;
  background: rgba(13, 27, 46, 0.75); border: 1px solid var(--line);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius); padding: 26px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.why__card-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 10px; }
.why__card-stars svg { width: 16px; height: 16px; }
.why__card strong { display: block; font-family: var(--f-display); font-size: 1.35rem; font-weight: 500; margin-bottom: 6px; }
.why__card p { font-size: 0.86rem; color: var(--muted-light); line-height: 1.6; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-top: 50px; }
.feature { background: var(--ink); padding: 34px 30px; position: relative; overflow: hidden; transition: background 0.5s; }
.feature::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201, 164, 92, 0.16), transparent 60%); opacity: 0; transition: opacity 0.5s; }
.feature:hover::before { opacity: 1; }
.feature__icon { width: 54px; height: 54px; border-radius: 14px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); margin-bottom: 22px; transition: all 0.5s var(--ease); }
.feature:hover .feature__icon { background: var(--gold); color: var(--ink); transform: rotate(-8deg) scale(1.05); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature p { font-size: 0.92rem; color: var(--muted-light); line-height: 1.65; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; position: relative; }
.process__line { position: absolute; top: 34px; left: 34px; right: 12%; height: 1px; background: var(--line-dark); }
.process__line i { position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.step { position: relative; }
.step__dot {
  width: 68px; height: 68px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--gold-3); margin-bottom: 34px; position: relative; z-index: 1;
  transition: all 0.6s var(--ease);
}
.section--cream .step__dot { background: var(--cream); }
.step:hover .step__dot { background: var(--navy); color: var(--gold); border-color: var(--navy); transform: translateY(-6px); }
.step__dot svg { width: 28px; height: 28px; }
.step__num { font-family: var(--f-display); font-size: 4.4rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(13, 27, 46, 0.18); position: absolute; top: -6px; right: 0; font-style: italic; background: var(--paper); padding-left: 14px; z-index: 1; }
.section--cream .step__num { background: var(--cream); }
.step h3 { font-size: 1.45rem; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Industries (horizontal) ---------- */
.industries { overflow: hidden; }
.industries__pin { display: flex; align-items: center; min-height: 100vh; padding-block: 110px; }
.industries__track { display: flex; gap: 28px; padding-left: var(--gutter); will-change: transform; }
.industries__intro { flex: 0 0 min(460px, 82vw); display: flex; flex-direction: column; justify-content: center; padding-right: 40px; }
.industries__intro .lead { margin-bottom: 34px; }
.ind-card {
  flex: 0 0 clamp(290px, 28vw, 400px); aspect-ratio: 3 / 4.2; position: relative; border-radius: var(--radius-lg); overflow: hidden;
  color: var(--white); isolation: isolate; box-shadow: var(--shadow-soft);
}
.ind-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease); }
.ind-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8, 17, 32, 0.1) 30%, rgba(8, 17, 32, 0.92)); transition: background 0.6s; }
.ind-card:hover img { transform: scale(1.08); }
.ind-card:hover::before { background: linear-gradient(180deg, rgba(8, 17, 32, 0.3) 0%, rgba(8, 17, 32, 0.95)); }
.ind-card__num { position: absolute; top: 26px; left: 28px; font-size: 0.8rem; letter-spacing: 0.2em; color: var(--gold-2); font-weight: 700; }
.ind-card__body { position: absolute; left: 28px; right: 28px; bottom: 28px; }
.ind-card h3 { font-size: 1.8rem; margin-bottom: 8px; }
.ind-card p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.78); max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.7s var(--ease), opacity 0.5s; }
.ind-card:hover p { max-height: 120px; opacity: 1; }
.ind-card__tag { display: inline-flex; margin-top: 16px; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; border: 1px solid rgba(255, 255, 255, 0.3); }
.industries__end { flex: 0 0 var(--gutter); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; color: var(--white); padding-block: clamp(110px, 15vw, 200px); text-align: center; }
.cta-band__bg { position: absolute; inset: -15% 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at center, rgba(8, 17, 32, 0.6), rgba(8, 17, 32, 0.92)); }
.cta-band h2 { max-width: 16ch; margin: 0 auto 26px; }
.cta-band p { color: rgba(255, 255, 255, 0.78); max-width: 54ch; margin: 0 auto 42px; font-size: 1.1rem; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.rating-box { display: flex; align-items: center; gap: 22px; margin-top: 36px; padding: 24px 26px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); max-width: 380px; }
.rating-box__score { font-family: var(--f-display); font-size: 3.2rem; line-height: 1; color: var(--navy); }
.stars { display: flex; gap: 3px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.rating-box small { display: block; color: var(--muted); font-size: 0.85rem; margin-top: 4px; }
.tslider { position: relative; }
.tslider__viewport { position: relative; min-height: 400px; }
.tcard {
  position: absolute; inset: 0; background: var(--white); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px);
  box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transform: translateY(30px) scale(0.97);
  transition: opacity 0.8s var(--ease), transform 0.9s var(--ease), visibility 0.8s;
  display: flex; flex-direction: column;
}
.tcard.is-active { opacity: 1; visibility: visible; transform: none; }
.tcard__quote { position: absolute; top: 34px; right: 44px; width: 80px; color: var(--gold); opacity: 0.25; }
.tcard blockquote { font-family: var(--f-display); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.5; color: var(--navy); margin: 22px 0 34px; flex: 1; }
.tcard__author { display: flex; align-items: center; gap: 16px; }
.tcard__avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: var(--gold-2); display: grid; place-items: center; font-family: var(--f-display); font-size: 1.2rem; flex-shrink: 0; }
.tcard__author strong { display: block; font-size: 1.02rem; }
.tcard__author span { font-size: 0.85rem; color: var(--muted); }
.tslider__controls { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.tslider__btn { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; transition: all 0.4s var(--ease); }
.tslider__btn:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.tslider__btn svg { width: 18px; height: 18px; }
.tslider__dots { display: flex; gap: 8px; margin-left: 12px; }
.tslider__dots button { width: 9px; height: 9px; border-radius: 10px; background: rgba(13, 27, 46, 0.2); transition: all 0.5s var(--ease); }
.tslider__dots button.is-active { width: 34px; background: var(--gold); }

/* ---------- FAQ + Quote ---------- */
.faq-quote { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq { border-top: 1px solid var(--line-dark); margin-top: 20px; }
.faq__item { border-bottom: 1px solid var(--line-dark); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; text-align: left; font-family: var(--f-display); font-size: clamp(1.1rem, 1.6vw, 1.3rem); transition: color 0.3s; }
.faq__q:hover { color: var(--gold-3); }
.faq__icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--line-dark); position: relative; transition: all 0.5s var(--ease); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); transition: transform 0.5s var(--ease); }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: rotate(180deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a { height: 0; overflow: hidden; transition: height 0.6s var(--ease); }
.faq__a p { padding-bottom: 26px; color: var(--muted); max-width: 62ch; }

.quote-card {
  background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: clamp(32px, 4vw, 52px);
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.quote-card::before { content: ""; position: absolute; width: 380px; height: 380px; right: -140px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 164, 92, 0.3), transparent 65%); }
.quote-card h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-bottom: 10px; position: relative; }
.quote-card > p { color: var(--muted-light); margin-bottom: 30px; font-size: 0.95rem; position: relative; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.form .full { grid-column: 1 / -1; }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; padding: 22px 18px 10px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white); outline: none; font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  appearance: none; -webkit-appearance: none;
}
.field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a45c' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 18px; padding-right: 44px; }
.field select option { color: var(--text); background: var(--white); }
.field textarea { min-height: 120px; resize: vertical; }
.field label { position: absolute; left: 19px; top: 16px; font-size: 0.92rem; color: rgba(255, 255, 255, 0.55); pointer-events: none; transition: all 0.3s var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(255, 255, 255, 0.08); box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.12); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select.has-value + label { top: 7px; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #e07a6b; }
.form .btn { width: 100%; margin-top: 6px; }
.form__note { font-size: 0.78rem; color: var(--muted-light); text-align: center; margin-top: 4px; }
.form__success { display: none; text-align: center; padding: 30px 10px; position: relative; }
.form__success.is-visible { display: block; animation: fadeUp 0.8s var(--ease); }
.form__success-icon { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; }
.form__success-icon svg { width: 36px; height: 36px; }
.form__success h4 { font-family: var(--f-display); font-size: 1.8rem; font-weight: 500; margin-bottom: 10px; }
.form__success p { color: var(--muted-light); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* Light form variant (contact page) */
.quote-card--light { background: var(--white); color: var(--text); }
.quote-card--light > p { color: var(--muted); }
.quote-card--light::before { opacity: 0.35; }
.quote-card--light .field input, .quote-card--light .field select, .quote-card--light .field textarea { background: var(--paper); border-color: var(--line-dark); color: var(--text); }
.quote-card--light .field label { color: var(--muted); }
.quote-card--light .field input:focus + label, .quote-card--light .field input:not(:placeholder-shown) + label,
.quote-card--light .field textarea:focus + label, .quote-card--light .field textarea:not(:placeholder-shown) + label,
.quote-card--light .field select:focus + label, .quote-card--light .field select.has-value + label { color: var(--gold-3); }
.quote-card--light .form__note, .quote-card--light .form__success p { color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.footer__cta { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding-block: 90px 70px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); flex-wrap: wrap; }
.footer__cta h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); max-width: 14ch; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 50px; padding-block: 70px; }
.footer__about p { color: var(--muted-light); font-size: 0.95rem; margin: 24px 0 28px; max-width: 36ch; }
.footer h4 { font-family: var(--f-body); font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 700; }
.footer__links { display: grid; gap: 12px; }
.footer__links a { color: var(--muted-light); font-size: 0.95rem; transition: color 0.3s, padding 0.4s var(--ease); display: inline-block; }
.footer__links a:hover { color: var(--gold-2); padding-left: 6px; }
.footer__contact { display: grid; gap: 18px; }
.footer__contact li { display: flex; gap: 14px; color: var(--muted-light); font-size: 0.95rem; }
.footer__contact svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer__contact a:hover { color: var(--gold-2); }
.socials { display: flex; gap: 10px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.16); display: grid; place-items: center; transition: all 0.4s var(--ease); }
.socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-4px); }
.socials svg { width: 17px; height: 17px; }
.footer__giant { font-family: var(--f-display); font-size: clamp(3rem, 13.5vw, 14rem); line-height: 0.8; text-align: center; letter-spacing: 0.04em; color: transparent; -webkit-text-stroke: 1px rgba(201, 164, 92, 0.22); user-select: none; white-space: nowrap; margin-bottom: -0.1em; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-block: 28px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.85rem; color: var(--muted-light); position: relative; background: var(--ink); }
.footer__bottom a:hover { color: var(--gold-2); }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; min-height: 76vh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; background: var(--ink); }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 115%; object-fit: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8, 17, 32, 0.7), rgba(8, 17, 32, 0.4) 40%, rgba(8, 17, 32, 0.95)); }
.page-hero__content { position: relative; z-index: 2; width: 100%; padding-top: calc(var(--header-h) + 80px); padding-bottom: clamp(60px, 8vw, 100px); }
.breadcrumb { display: flex; gap: 12px; align-items: center; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 6rem); max-width: 14ch; margin-bottom: 22px; }
.page-hero p { max-width: 56ch; color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; }

/* ---------- About page ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 7vw, 110px); align-items: center; }
.story__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.story__imgs figure { border-radius: var(--radius); overflow: hidden; }
.story__imgs figure:first-child { grid-row: span 2; aspect-ratio: 3 / 4.6; }
.story__imgs figure:not(:first-child) { aspect-ratio: 1 / 1.05; }
.story__imgs img { width: 100%; height: 100%; object-fit: cover; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value {
  padding: 44px 36px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line-dark);
  position: relative; overflow: hidden; transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.value::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.7s var(--ease); }
.value:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.value:hover::after { transform: scaleX(1); }
.value__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--cream); color: var(--gold-3); display: grid; place-items: center; margin-bottom: 26px; }
.value__icon svg { width: 30px; height: 30px; }
.value h3 { font-size: 1.6rem; margin-bottom: 12px; }
.value p { color: var(--muted); }
.founder { display: grid; grid-template-columns: auto 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.founder__mono { width: clamp(180px, 22vw, 280px); aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; position: relative; }
.founder__mono::before { content: ""; position: absolute; inset: 18px; border-radius: 50%; border: 1px dashed rgba(201, 164, 92, 0.4); animation: spin 40s linear infinite; }
.founder__mono span { font-family: var(--f-display); font-size: clamp(3.5rem, 6vw, 5.5rem); color: var(--gold); font-style: italic; }
.founder blockquote { font-family: var(--f-display); font-size: clamp(1.4rem, 2.6vw, 2.2rem); line-height: 1.45; margin-bottom: 34px; }
.founder blockquote em { color: var(--gold); }
.founder .signature { border-top-color: rgba(255, 255, 255, 0.12); }
.founder .signature__name { color: var(--gold-2); }
.founder .signature__role { color: var(--muted-light); }
.founder .signature__role strong { color: var(--white); }
.badges { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.badge-item { text-align: center; padding: 34px 18px; border-radius: var(--radius); border: 1px solid var(--line-dark); background: var(--white); transition: all 0.5s var(--ease); }
.badge-item:hover { border-color: var(--gold); transform: translateY(-6px); }
.badge-item svg { width: 40px; height: 40px; color: var(--gold-3); margin: 0 auto 16px; }
.badge-item strong { display: block; font-family: var(--f-display); font-weight: 500; font-size: 1.15rem; }
.badge-item span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Services page ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-dark); transition: box-shadow 0.6s var(--ease); display: flex; flex-direction: column; }
.svc-card:hover { box-shadow: var(--shadow); }
.svc-card__img { aspect-ratio: 16 / 11; overflow: hidden; position: relative; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.svc-card:hover .svc-card__img img { transform: scale(1.1); }
.svc-card__icon { position: absolute; left: 24px; bottom: -28px; width: 60px; height: 60px; border-radius: 16px; background: var(--navy); color: var(--gold); display: grid; place-items: center; z-index: 2; box-shadow: var(--shadow-soft); transition: transform 0.6s var(--ease), background 0.4s; }
.svc-card:hover .svc-card__icon { transform: rotate(-10deg); background: var(--gold); color: var(--ink); }
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card__img-wrap { position: relative; }
.svc-card__body { padding: 48px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.svc-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; flex: 1; }

.detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.detail + .detail { margin-top: clamp(90px, 11vw, 150px); }
.detail--reverse .detail__media { order: 2; }
.detail__media { position: relative; }
.detail__img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5 / 4.4; box-shadow: var(--shadow); }
.detail__img img { width: 100%; height: 115%; object-fit: cover; }
.detail__num { position: absolute; top: -40px; left: -20px; font-family: var(--f-display); font-style: italic; font-size: clamp(5rem, 9vw, 8rem); line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--gold); z-index: 2; }
.detail--reverse .detail__num { left: auto; right: -20px; }
.detail h2 { margin-bottom: 20px; }
.detail .lead { margin-bottom: 30px; }
.detail .checklist { margin-bottom: 36px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan { border-radius: var(--radius-lg); padding: 44px 36px; background: var(--white); border: 1px solid var(--line-dark); display: flex; flex-direction: column; position: relative; transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease); }
.plan:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.plan--featured { background: var(--navy); color: var(--white); border-color: var(--navy); }
.plan--featured::before { content: "Most Popular"; position: absolute; top: 22px; right: 22px; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 800; padding: 7px 14px; border-radius: 100px; background: var(--gold); color: var(--ink); }
.plan__tier { font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-3); font-weight: 700; }
.plan--featured .plan__tier { color: var(--gold); }
.plan h3 { font-size: 2.2rem; margin: 14px 0 10px; }
.plan__desc { color: var(--muted); font-size: 0.95rem; padding-bottom: 26px; margin-bottom: 26px; border-bottom: 1px solid var(--line-dark); }
.plan--featured .plan__desc { color: var(--muted-light); border-color: rgba(255, 255, 255, 0.12); }
.plan ul { display: grid; gap: 14px; margin-bottom: 36px; flex: 1; }
.plan li { display: flex; gap: 12px; font-size: 0.95rem; }
.plan li svg { width: 20px; height: 20px; color: var(--gold-3); flex-shrink: 0; margin-top: 3px; }
.plan--featured li svg { color: var(--gold); }
.plan .btn { width: 100%; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-cards { display: grid; gap: 18px; margin-top: 40px; }
.contact-card { display: flex; gap: 20px; align-items: center; padding: 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line-dark); transition: all 0.5s var(--ease); }
.contact-card:hover { border-color: var(--gold); transform: translateX(8px); box-shadow: var(--shadow-soft); }
.contact-card__icon { width: 58px; height: 58px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card small { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-card strong { font-size: 1.1rem; font-weight: 700; }
.hours { margin-top: 30px; padding: 30px; border-radius: var(--radius); background: var(--navy); color: var(--white); }
.hours h4 { font-family: var(--f-display); font-weight: 500; font-size: 1.4rem; margin-bottom: 16px; }
.hours li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.14); font-size: 0.95rem; color: var(--muted-light); }
.hours li:last-child { border: 0; }
.hours li strong { color: var(--white); font-weight: 600; }

/* ---------- Cursor ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000; border-radius: 50%; }
.cursor { width: 38px; height: 38px; border: 1px solid var(--gold); margin: -19px 0 0 -19px; transition: width 0.4s var(--ease), height 0.4s var(--ease), margin 0.4s var(--ease), background 0.4s, border-color 0.4s; display: grid; place-items: center; mix-blend-mode: normal; }
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--gold); }
.cursor span { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; color: var(--ink); opacity: 0; transition: opacity 0.3s; }
.cursor.is-hover { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(201, 164, 92, 0.15); }
.cursor.is-view { width: 88px; height: 88px; margin: -44px 0 0 -44px; background: var(--gold); border-color: var(--gold); }
.cursor.is-view span { opacity: 1; }
.cursor.is-hidden, .cursor-dot.is-hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ---------- Scroll progress + back to top ---------- */
.progress-bar { position: fixed; top: 0; left: 0; height: 2px; width: 100%; background: linear-gradient(90deg, var(--gold-3), var(--gold-2)); transform: scaleX(0); transform-origin: left; z-index: 1000; }
.to-top { position: fixed; right: 26px; bottom: 26px; width: 58px; height: 58px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; z-index: 800; opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s var(--ease); box-shadow: var(--shadow-soft); }
.to-top.is-visible { opacity: 1; transform: none; }
.to-top svg.ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.to-top svg.ring circle { fill: none; stroke: var(--gold); stroke-width: 2; stroke-dasharray: 169.6; stroke-dashoffset: 169.6; }
.to-top > svg:not(.ring) { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.to-top:hover > svg:not(.ring) { transform: translateY(-3px); }
.call-fab { display: none; }

/* ---------- Reveal system (only when JS is active) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(50px); transition: none !important; }
.js [data-reveal="left"] { transform: translateX(-60px); }
.js [data-reveal="right"] { transform: translateX(60px); }
.js [data-reveal="scale"] { transform: scale(0.9); }
.js [data-reveal="fade"] { transform: none; }
.js .img-reveal { clip-path: inset(100% 0 0 0); }
.js .img-reveal img { transform: scale(1.3); }
.js .hero__title .line > span { transform: translateY(110%); }
.js .hero [data-hero] { opacity: 0; transform: translateY(30px); }
.js .page-hero [data-hero] { opacity: 0; }
[id] { scroll-margin-top: 100px; }

/* Industries grid (services page) */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ind-grid .ind-card { flex: none; aspect-ratio: 4 / 4.6; }
@media (max-width: 1024px) { .ind-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .ind-grid { grid-template-columns: 1fr; } }
.split .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.split .word > span { display: inline-block; }
.js .split .word > span { transform: translateY(105%); }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .nav { gap: 26px; }
  .header__phone > div { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .badges { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .nav, .header__actions .btn, .header__phone { display: none; }
  .burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__nav { grid-template-columns: repeat(3, 1fr); min-width: 0; gap: 16px; }
  .hero__nav-item span { font-size: 0.68rem; gap: 8px; }
  .hero__scroll { display: none; }
  .about, .why, .showcase, .testimonials, .faq-quote, .story, .detail, .contact-grid { grid-template-columns: 1fr; }
  .detail--reverse .detail__media { order: 0; }
  .section-head--split { grid-template-columns: 1fr; gap: 24px; }
  .about__media { max-width: 620px; }
  .why__media { max-width: 560px; }
  .why__card { right: 16px; }
  .showcase__preview { display: none; }
  .showcase__item .showcase__desc { max-height: 0; }
  .process { grid-template-columns: 1fr 1fr; gap: 50px 36px; }
  .process__line { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .svc-grid, .plans, .values { grid-template-columns: 1fr 1fr; }
  .founder { grid-template-columns: 1fr; justify-items: start; }
  .industries__pin { min-height: 0; padding-block: 90px; }
  .industries__track { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 20px; padding-right: var(--gutter); scrollbar-width: none; }
  .industries__track::-webkit-scrollbar { display: none; }
  .ind-card { scroll-snap-align: start; }
  .ind-card p { max-height: 120px; opacity: 1; }
  .tslider__viewport { min-height: 440px; }
}
@media (max-width: 720px) {
  :root { --header-h: 76px; }
  .logo__mark { width: 38px; height: 38px; }
  .logo__name { font-size: 1.12rem; }
  .logo__tag { font-size: 0.48rem; letter-spacing: 0.22em; }
  .hero__nav { display: none; }
  .hero__trust { gap: 14px 20px; margin-top: 36px; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .checklist { grid-template-columns: 1fr; }
  .about__media { padding-right: 30px; padding-bottom: 70px; }
  .about__badge { left: -10px; width: 120px; height: 120px; bottom: 20px; }
  .about__badge-core { width: 68px; height: 68px; }
  .about__badge-ring text { font-size: 8.4px; letter-spacing: 2.4px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 34px 12px 6px 0; }
  .stat + .stat { padding-left: 16px; }
  .stat:nth-child(3) { padding-left: 0; }
  .features, .process, .svc-grid, .plans, .values, .footer__grid, .form { grid-template-columns: 1fr; }
  .badges { grid-template-columns: 1fr 1fr; }
  .why__card { position: relative; right: auto; bottom: auto; margin: -70px 16px 0; animation: none; }
  .tslider__viewport { min-height: 520px; }
  .tcard__quote { width: 56px; top: 26px; right: 26px; }
  .signature .btn { margin-left: 0; }
  .footer__cta { padding-block: 70px 50px; }
  .detail__num { top: -30px; left: 0; }
  .detail--reverse .detail__num { right: 0; }
  .to-top { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .call-fab { display: grid; place-items: center; position: fixed; left: 16px; bottom: 16px; width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--ink); z-index: 800; box-shadow: 0 10px 30px -8px rgba(201, 164, 92, 0.8); }
  .call-fab::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--gold); animation: ping 2s infinite; }
  .call-fab svg { width: 22px; height: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js [data-reveal], .js .img-reveal, .js .img-reveal img, .js .split .word > span, .js .hero__title .line > span, .js .hero [data-hero] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
