/* ===== Summer Palace — Desktop Corporate Site ===== */
:root {
  --navy: #1a2a3a;
  --navy-mid: #2c3e50;
  --navy-light: #3d5166;
  --gold: #b8965a;
  --gold-light: #d4b07a;
  --gold-dark: #9a7d48;
  --slate: #5d6f7e;
  --bg-light: #f7f5f0;
  --text-dark: #1a1a1a;
  --text-body: #3a3a3a;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --footer-dark: #141e28;
  --font-primary: 'Source Sans 3', -apple-system, sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --header-height: 72px;
  --topbar-height: 36px;
  --site-min-width: 1200px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  min-width: var(--site-min-width);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition), opacity var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Placeholder images */
.img-placeholder {
  background: linear-gradient(135deg, #2c3e50 0%, #4a6277 50%, #1a2a3a 100%);
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.section-title--center { text-align: center; }
.section-title--light { color: var(--white); }
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: -0.5rem auto 3rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-mid); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-dark); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.75);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ===== Top Bar ===== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  letter-spacing: 0.03em;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.top-bar__left, .top-bar__right { display: flex; align-items: center; gap: 12px; }
.top-bar__divider { opacity: 0.35; }
.top-bar__item { white-space: nowrap; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.35s ease;
}
.header--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}
.header__logo { flex-shrink: 0; }
.header__logo-img {
  display: block;
  height: 44px;
  width: auto;
}
.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-placeholder__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy-mid));
  border: 1.5px solid var(--gold-light);
}
.logo-placeholder__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.header__nav {
  display: flex;
  gap: 0;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.header__nav-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 8px 14px;
  position: relative;
  white-space: nowrap;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.header__nav-link:hover { color: var(--navy); }
.header__nav-link:hover::after { transform: scaleX(1); }
.header__nav-link--active { color: var(--navy); }
.header__nav-link--active::after { transform: scaleX(1); }

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-dropdown__trigger::after { display: none; }
.nav-dropdown__arrow {
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown__arrow,
.nav-dropdown.is-open .nav-dropdown__arrow {
  transform: rotate(180deg);
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 40px rgba(26,42,58,0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1100;
  padding: 8px 0;
}
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0; right: 0;
  height: 6px;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  text-transform: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-dropdown__menu li a:hover {
  background: var(--bg-light);
  color: var(--navy);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header__phone {
  font-weight: 600;
  color: var(--navy);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ===== Parallax Hero ===== */
.parallax-host {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  margin-top: calc(var(--header-height) + var(--topbar-height));
}
.parallax-host__outer {
  position: fixed;
  top: calc(var(--header-height) + var(--topbar-height));
  left: 0; right: 0;
  height: calc(100vh - var(--header-height) - var(--topbar-height));
  min-height: 568px;
  overflow: hidden;
  z-index: 1;
}
.parallax-item {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.parallax-item__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-fx-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
}
.hero-fx-layers {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.hero-fx-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.03) 40%, rgba(255,248,220,0.18) 50%, rgba(255,255,255,0.03) 60%, transparent 100%);
  animation: heroShimmer 7s ease-in-out infinite;
}
.hero-fx-gleam {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,98,0.12) 0%, transparent 70%);
  top: 20%;
  right: 15%;
  animation: heroGleam 9s ease-in-out infinite;
}
.hero-fx-mist {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 90%, rgba(255,255,255,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 85%, rgba(255,255,255,0.06) 0%, transparent 45%);
  animation: heroMist 12s ease-in-out infinite alternate;
}
.hero-fx-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: heroGridDrift 20s linear infinite;
}
.hero-fx-layers[data-mode="bubbles"] .hero-fx-mist { animation-duration: 8s; opacity: 1.2; }
.hero-fx-layers[data-mode="wipe"] .hero-fx-shimmer { animation-duration: 4s; }
.hero-fx-layers[data-mode="steam"] .hero-fx-gleam { animation-duration: 6s; top: 60%; right: 25%; }
.hero-fx-layers[data-mode="droplets"] .hero-fx-mist { animation-duration: 5s; }
.hero-fx-layers[data-mode="sparkle"] .hero-fx-gleam { animation-duration: 5s; }

@keyframes heroShimmer {
  0%, 100% { left: -100%; opacity: 0; }
  10% { opacity: 1; }
  50% { left: 120%; opacity: 1; }
  60% { opacity: 0; }
}
@keyframes heroGleam {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-30px, 20px) scale(1.3); opacity: 1; }
}
@keyframes heroMist {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-20px) scale(1.05); }
}
@keyframes heroGridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(48px, 48px); }
}

.hero-checklist {
  position: absolute;
  bottom: 8%;
  left: 4%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.hero-checklist__item {
  display: block;
  width: 140px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.hero-checklist__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-light), rgba(255,255,255,0.6));
  border-radius: 2px;
}
.hero-checklist__item::after {
  content: '✓';
  position: absolute;
  right: -20px;
  top: -8px;
  font-size: 11px;
  color: var(--gold-light);
  opacity: 0;
}
.hero-checklist__item--1::before { animation: checklistFill 3s ease-out 1.5s forwards; }
.hero-checklist__item--2::before { animation: checklistFill 3s ease-out 2.2s forwards; }
.hero-checklist__item--3::before { animation: checklistFill 3s ease-out 2.9s forwards; }
.hero-checklist__item--1::after { animation: checklistTick 0.4s ease-out 4.2s forwards; }
.hero-checklist__item--2::after { animation: checklistTick 0.4s ease-out 4.9s forwards; }
.hero-checklist__item--3::after { animation: checklistTick 0.4s ease-out 5.6s forwards; }

@keyframes checklistFill {
  to { width: 100%; }
}
@keyframes checklistTick {
  to { opacity: 1; right: 4px; }
}

.hero-service-badge {
  position: absolute;
  bottom: 12%;
  right: 4%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(26,42,58,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,98,0.35);
  border-radius: 2px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.hero-service-badge__icon {
  width: 22px;
  height: 22px;
  background: var(--gold-light);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.hero-service-badge[data-icon="home"] .hero-service-badge__icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 9.5L12 3l9 6.5V20a1 1 0 01-1 1h-5v-6H9v6H4a1 1 0 01-1-1V9.5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 9.5L12 3l9 6.5V20a1 1 0 01-1 1h-5v-6H9v6H4a1 1 0 01-1-1V9.5z'/%3E%3C/svg%3E");
}
.hero-service-badge[data-icon="building"] .hero-service-badge__icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 21V3h16v18M9 7h1M9 11h1M9 15h1M14 7h1M14 11h1M14 15h1M9 21v-4h6v4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 21V3h16v18M9 7h1M9 11h1M9 15h1M14 7h1M14 11h1M14 15h1M9 21v-4h6v4'/%3E%3C/svg%3E");
}
.hero-service-badge[data-icon="bed"] .hero-service-badge__icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 7v11M3 14h18M21 7v11M7 10h4a2 2 0 012 2v2H5v-2a2 2 0 012-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 7v11M3 14h18M21 7v11M7 10h4a2 2 0 012 2v2H5v-2a2 2 0 012-2z'/%3E%3C/svg%3E");
}
.hero-service-badge[data-icon="linen"] .hero-service-badge__icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 6h16v12H4zM4 10h16M8 6V4M16 6V4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 6h16v12H4zM4 10h16M8 6V4M16 6V4'/%3E%3C/svg%3E");
}
.hero-service-badge[data-icon="route"] .hero-service-badge__icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

.hero-title-line {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin: 0 auto 1.4rem;
  transform-origin: center;
}

.parallax-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,42,58,0.48) 0%, rgba(26,42,58,0.68) 100%);
  z-index: 4;
}
.parallax-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform-origin: center center;
}
.parallax-item__content {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  color: var(--white);
}
.parallax-item__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.parallax-item__content h1 {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  max-width: 760px;
}
.parallax-item__content p {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2.2rem;
  opacity: 0.9;
  line-height: 1.75;
  font-weight: 300;
}
.parallax-spacer { height: 100vh; min-height: 640px; }

/* ===== Secondary Hero ===== */
.secondary-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  background: var(--bg-light);
}
.secondary-hero__bg {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.secondary-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,42,58,0.3) 0%, rgba(26,42,58,0.75) 100%);
  z-index: 1;
}
.secondary-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px;
}
.secondary-hero__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.secondary-hero__subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.secondary-hero__buttons { display: flex; gap: 16px; justify-content: center; }

/* ===== Overlap Sections ===== */
.overlap-section {
  padding: 110px 0;
  position: relative;
  z-index: 3;
  background: var(--white);
}
.overlap-section--alt { background: var(--bg-light); }
.overlap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.overlap-grid--reverse .overlap-grid__image { order: 2; }
.overlap-grid--reverse .overlap-grid__text { order: 1; }
.overlap-grid__image { position: relative; }
.overlap-grid__image-frame {
  position: relative;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 12px 48px rgba(26,42,58,0.1);
}
.overlap-section--alt .overlap-grid__image-frame { background: var(--bg-light); }
.overlap-grid__image-frame img,
.overlap-grid__image-frame .img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.overlap-grid__image-frame--landscape img,
.overlap-grid__image-frame--landscape .img-placeholder {
  aspect-ratio: 4/3;
}
.overlap-grid__text p { margin-bottom: 1rem; line-height: 1.8; }
.focus-list { margin: 1.2rem 0 1.5rem; }
.focus-list li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 15.5px;
}
.focus-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Services overview cards */
.services-overview {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 3;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  display: block;
  padding: 36px 28px;
  background: var(--bg-light);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,42,58,0.1);
}
.service-card__num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-detail { scroll-margin-top: calc(var(--header-height) + var(--topbar-height) + 16px); }

/* Contact details block */
.contact-details {
  margin: 1.5rem 0 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.contact-details__row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 16px;
}
.contact-details__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  min-width: 80px;
  flex-shrink: 0;
}
.contact-details__value { font-size: 15px; color: var(--text-dark); }

/* ===== Principles Grid ===== */
.features-section {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  z-index: 3;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.principle-card {
  padding: 36px 28px;
  background: var(--bg-light);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,42,58,0.08);
}
.principle-card__icon {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}
.principle-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.principle-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }

/* ===== FAQ + Contact ===== */
.faq-contact {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  z-index: 3;
}
.faq-contact__bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.faq-contact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 40, 0.88);
}
.faq-contact .container { position: relative; z-index: 2; }
.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item { border-radius: 2px; overflow: hidden; }
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--navy-mid);
  color: var(--white);
  font-weight: 600;
  font-size: 14.5px;
  text-align: left;
  transition: background 0.3s ease;
}
.faq-item__question:hover { background: var(--navy-light); }
.faq-item__icon {
  font-size: 18px;
  transition: transform 0.35s ease;
  flex-shrink: 0;
  margin-left: 12px;
  color: var(--gold-light);
}
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.96);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}
.faq-item.active .faq-item__answer {
  max-height: 420px;
  padding: 16px 20px;
}
.faq-item__answer p { font-size: 14px; line-height: 1.75; color: var(--text-body); }

.contact-form-box {
  background: var(--white);
  border-radius: 2px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.contact-form-box h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dde0e4;
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,90,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.contact-form-box .btn { width: 100%; margin-top: 8px; }

/* ===== Footer ===== */
.footer {
  background: var(--footer-dark);
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.footer__pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.05;
  pointer-events: none;
}
.floating-icon {
  position: absolute;
  font-size: 36px;
  opacity: 0.5;
  will-change: transform;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
}
.footer__brand {
  text-align: center;
  padding: 52px 40px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.footer__legal-name {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer__main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding: 56px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer__col h4 {
  color: var(--gold-light);
  font-size: 11.5px;
  margin-bottom: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer__col ul li { margin-bottom: 9px; }
.footer__col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__contact-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer__contact-list a,
.footer__bottom a {
  color: rgba(255,255,255,0.6);
}
.footer__contact-list a:hover,
.footer__bottom a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 40px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.9;
}

/* ===== Legal Page ===== */
.legal-page {
  padding: 60px 0 40px;
  min-height: 40vh;
}
.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.legal-page__updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}
.legal-page section { margin-bottom: 2rem; max-width: 760px; }
.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.legal-page p { line-height: 1.8; color: var(--text-body); }
.legal-page__back { margin-top: 3rem; }

/* ===== Subpage Hero Banner ===== */
.page-hero {
  position: relative;
  margin-top: calc(var(--header-height) + var(--topbar-height));
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero--rich {
  min-height: 520px;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  overflow: hidden;
}
.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
}
.page-hero__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.page-hero__fx-shimmer {
  position: absolute;
  inset: -50%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  animation: pageHeroShimmer 8s ease-in-out infinite;
}
.page-hero__fx-gleam {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,98,0.18) 0%, transparent 70%);
  top: 15%;
  right: 12%;
  animation: pageHeroGleam 10s ease-in-out infinite;
}
.page-hero__fx-mist {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(255,255,255,0.08) 0%, transparent 55%);
  animation: pageHeroMist 14s ease-in-out infinite alternate;
}
.page-hero__fx-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: pageHeroGridDrift 24s linear infinite;
  opacity: 0.5;
}
.page-hero__fx-sparkles {
  position: absolute;
  inset: 0;
}
.page-hero__fx-sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px rgba(201,169,98,0.6);
  animation: pageHeroSparkle 4s ease-in-out infinite;
}
.page-hero__fx-sparkles span:nth-child(1) { top: 22%; left: 68%; animation-delay: 0s; }
.page-hero__fx-sparkles span:nth-child(2) { top: 45%; left: 82%; animation-delay: 0.8s; }
.page-hero__fx-sparkles span:nth-child(3) { top: 68%; left: 55%; animation-delay: 1.6s; }
.page-hero__fx-sparkles span:nth-child(4) { top: 35%; left: 42%; animation-delay: 2.4s; }
.page-hero__fx-sparkles span:nth-child(5) { top: 58%; left: 28%; animation-delay: 3.2s; }
.page-hero__fx[data-mode="mist"] .page-hero__fx-mist { opacity: 1.2; animation-duration: 10s; }
.page-hero__fx[data-mode="gleam"] .page-hero__fx-gleam { width: 360px; height: 360px; }
.page-hero__fx[data-mode="droplets"] .page-hero__fx-mist { animation-duration: 6s; }
.page-hero__fx[data-mode="steam"] .page-hero__fx-gleam { top: 55%; right: 20%; }
.page-hero__fx[data-mode="wipe"] .page-hero__fx-shimmer { animation-duration: 5s; }
.page-hero__fx[data-mode="grid"] .page-hero__fx-grid { opacity: 0.75; }

@keyframes pageHeroShimmer {
  0%, 100% { transform: translateX(-30%) rotate(0deg); opacity: 0.4; }
  50% { transform: translateX(30%) rotate(0deg); opacity: 1; }
}
@keyframes pageHeroGleam {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  50% { transform: scale(1.15) translate(-12px, 8px); opacity: 1; }
}
@keyframes pageHeroMist {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -15px) scale(1.05); }
}
@keyframes pageHeroGridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(48px, 48px); }
}
@keyframes pageHeroSparkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.4); }
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,42,58,0.88) 0%, rgba(26,42,58,0.62) 45%, rgba(26,42,58,0.78) 100%),
    linear-gradient(to top, rgba(26,42,58,0.5) 0%, transparent 40%);
  z-index: 2;
}
.page-hero__ornament {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201,169,98,0.2);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  animation: pageHeroOrnament 12s ease-in-out infinite;
}
.page-hero__ornament::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,169,98,0.12);
  border-radius: 50%;
}
.page-hero__ornament::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: rgba(201,169,98,0.35);
}

@keyframes pageHeroOrnament {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(-52%) rotate(8deg); }
}

.page-hero__content {
  position: relative;
  z-index: 3;
  padding: 88px 40px 80px;
  color: var(--white);
  max-width: 720px;
}
.page-hero__content.page-hero__content--visible > * {
  opacity: 1;
  transform: translateY(0);
}
.page-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.page-hero__title-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.5s ease 0.1s, transform 0.6s ease 0.1s;
}
.page-hero__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease 0.15s, transform 0.65s ease 0.15s;
}
.page-hero__lead {
  margin-top: 0.5rem;
  font-size: 1.15rem;
  opacity: 0;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  line-height: 1.5;
  transform: translateY(16px);
  transition: opacity 0.65s ease 0.25s, transform 0.65s ease 0.25s;
}
.page-hero__subtitle {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  opacity: 0.88;
  font-weight: 300;
  max-width: 560px;
}
.page-hero__intro {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease 0.35s, transform 0.65s ease 0.35s;
}
.page-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.65s ease 0.45s, transform 0.65s ease 0.45s;
}
.page-hero__highlights li {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid rgba(201,169,98,0.45);
  border-radius: 2px;
  color: var(--gold-light);
  background: rgba(201,169,98,0.08);
  backdrop-filter: blur(4px);
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.65s ease 0.55s, transform 0.65s ease 0.55s;
}
.page-hero--revealed .page-hero__eyebrow,
.page-hero--revealed .page-hero__title-line,
.page-hero--revealed .page-hero__content h1,
.page-hero--revealed .page-hero__lead,
.page-hero--revealed .page-hero__intro,
.page-hero--revealed .page-hero__highlights,
.page-hero--revealed .page-hero__actions {
  opacity: 1;
  transform: translateY(0);
}
.page-hero--revealed .page-hero__title-line {
  transform: scaleX(1);
}
.page-content {
  padding: 72px 0 100px;
  min-height: 200px;
  position: relative;
  z-index: 3;
  background: var(--white);
}
.page-content .container {
  max-width: 1080px;
}
.page-content .prose {
  max-width: none;
}
.page-content .prose > .lead:first-child {
  font-size: 1.2rem;
  max-width: 720px;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ===== Prose & Content Layout ===== */
.prose { max-width: 820px; line-height: 1.85; color: var(--text-body); }
.prose--wide { max-width: 100%; }
.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy-mid);
  margin: 2rem 0 0.75rem;
}
.prose p { margin-bottom: 1.15rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.5rem; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-light);
  font-style: italic;
  color: var(--navy-mid);
}
.prose .lead {
  font-size: 1.15rem;
  color: var(--navy-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.prose .prose-section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2.5rem 0 0.35rem;
}
.prose .prose-section-label + h2 {
  margin-top: 0;
}

.prose-pullquote {
  border: none;
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(201,169,98,0.08) 100%);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  color: var(--navy);
}

.prose-keyfacts {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  border-radius: 2px;
}
.prose-keyfacts h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
}
.prose-keyfacts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.prose-keyfacts li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.92;
}
.prose-keyfacts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
}

.content-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 2.5rem 0;
}
.content-img-grid .content-img { margin: 0; }
.content-img-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.prose-figure {
  margin: 2.5rem 0;
}
.prose-figure img,
.prose-figure .img-placeholder {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(26,42,58,0.12);
}
.prose-figure figcaption {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 0.75rem;
  text-align: center;
}

.prose-steps {
  counter-reset: prosestep;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.prose-steps__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-light);
  border-left: 3px solid var(--gold);
}
.prose-steps__item::before {
  counter-increment: prosestep;
  content: counter(prosestep);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin: 2.5rem 0;
}
.content-img {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,42,58,0.1);
}
.content-img img, .content-img .img-placeholder { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.content-img--tall img, .content-img--tall .img-placeholder { aspect-ratio: 3/4; }
.content-callout {
  background: var(--bg-light);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.content-callout h3 { margin-top: 0; font-family: var(--font-heading); color: var(--navy); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 2rem 0; }
.feature-list__item {
  padding: 1.25rem;
  background: var(--bg-light);
  border-top: 2px solid var(--gold);
}
.feature-list__item h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 0.5rem; }

/* Card grids */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 2.5rem; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.insight-card, .project-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.insight-card:hover, .project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,42,58,0.12);
}
.insight-card__img, .project-card__img { overflow: hidden; }
.insight-card__img img, .project-card__img img,
.insight-card__img .img-placeholder, .project-card__img .img-placeholder {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  transition: transform 0.5s ease;
}
.insight-card:hover .insight-card__img img,
.project-card:hover .project-card__img img { transform: scale(1.04); }
.insight-card__body, .project-card__body { padding: 1.5rem; }
.insight-card__tag, .project-card__tag {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold-dark); margin-bottom: 0.5rem;
}
.insight-card__title, .project-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.35;
}
.insight-card__excerpt, .project-card__excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.insight-card__link, .project-card__link {
  display: inline-block; margin-top: 1rem; font-size: 13px; font-weight: 600;
  color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.05em;
}

/* Quote form */
.quote-section { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
.content-img--quote { margin: 1.5rem 0 2rem; }
.content-img--quote img, .content-img--quote .img-placeholder { aspect-ratio: 16/10; }
.contact-form-box__intro {
  font-size: 14px;
  color: var(--text-muted);
  margin: -0.5rem 0 1.25rem;
  line-height: 1.6;
}
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.quote-process { padding-right: 1rem; }
.quote-process__steps { margin: 2rem 0; }
.quote-process__step {
  display: flex; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.quote-process__num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--white); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.quote-form-box--page { box-shadow: 0 8px 32px rgba(26,42,58,0.08); border: 1px solid rgba(0,0,0,0.06); }

/* Project detail */
.project-meta {
  display: flex; gap: 2rem; flex-wrap: wrap; padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}
.project-meta__item span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.project-meta__item strong { font-size: 15px; color: var(--navy); }
.project-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 2rem 0; }
.project-gallery__item img, .project-gallery__item .img-placeholder { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ===== Homepage Unique ===== */
.home-stats {
  background: var(--navy);
  padding: 0;
  position: relative;
  z-index: 4;
  margin-top: -1px;
}
.home-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.home-stats__item {
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.home-stats__item:last-child { border-right: none; }
.home-stats__num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.home-stats__label { font-size: 13px; opacity: 0.75; letter-spacing: 0.04em; }
.home-stats__icon-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-stats__icon {
  width: 26px;
  height: 26px;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}
.home-stats__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,169,98,0.4);
  opacity: 0.3;
}

.home-bento {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 3;
}
.home-bento__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.bento-tile {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: var(--white);
  transition: transform 0.4s ease;
}
.bento-tile:hover { transform: scale(1.02); }
.bento-tile__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.bento-tile:hover .bento-tile__bg { transform: scale(1.08); }
.bento-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,42,58,0.88) 0%, rgba(26,42,58,0.2) 100%);
}
.bento-tile__shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}
.bento-tile__content { position: relative; z-index: 2; }
.bento-tile h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 0.4rem; }
.bento-tile p { font-size: 13px; opacity: 0.85; margin-bottom: 0.75rem; }
.bento-tile__link { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-light); }
.bento-tile--1 { grid-column: span 4; }
.bento-tile--2 { grid-column: span 4; }
.bento-tile--3 { grid-column: span 4; }
.bento-tile--4 { grid-column: span 6; min-height: 280px; }
.bento-tile--5 { grid-column: span 6; min-height: 280px; }

.home-diagonal {
  position: relative;
  padding: 100px 0;
  background: var(--bg-light);
  z-index: 3;
  overflow: hidden;
}
.home-diagonal__route-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}
.home-route {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.home-diagonal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-diagonal__visual {
  position: relative;
  transform: rotate(-2deg);
  box-shadow: 0 24px 60px rgba(26,42,58,0.15);
}
.home-diagonal__visual img, .home-diagonal__visual .img-placeholder {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}

.home-preview {
  padding: 90px 0;
  background: var(--white);
  position: relative;
  z-index: 3;
}
.home-preview--alt { background: var(--bg-light); }

.home-intro {
  padding: 72px 0;
  background: var(--white);
  position: relative;
  z-index: 3;
}
.home-intro__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.home-intro__text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.home-intro__text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.home-intro__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}
.home-intro__point {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  background: var(--bg-light);
  border-left: 3px solid var(--gold);
}
.home-intro__point strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.home-intro__point span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.home-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.home-preview__header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--navy);
}
.home-preview__header p { max-width: 480px; color: var(--text-muted); font-size: 15px; }

.home-cta-band {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.cta-bubble-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-bubble {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  animation: ctaBubbleRise linear infinite;
}
@keyframes ctaBubbleRise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-120px) scale(1.2); opacity: 0; }
}

.home-cta-band h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.home-cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2rem; }
.home-cta-band__buttons { display: flex; gap: 16px; justify-content: center; }

.hero-split-text {
  display: flex;
  gap: 3rem;
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-split-text__item {
  text-align: left;
  max-width: 200px;
  font-size: 13px;
  opacity: 0.85;
  border-left: 2px solid var(--gold-light);
  padding: 0.75rem 0 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.hero-split-text__item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
  border-left-color: var(--white);
}
.hero-split-text__item strong { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.25rem; }

@media (prefers-reduced-motion: reduce) {
  .hero-fx-canvas,
  .hero-fx-layers,
  .hero-checklist,
  .cta-bubble-layer,
  .page-hero__fx,
  .page-hero__ornament,
  .hero-fx-shimmer,
  .hero-fx-gleam,
  .hero-fx-mist,
  .hero-fx-grid { display: none !important; }
  .page-hero--revealed .page-hero__eyebrow,
  .page-hero--revealed .page-hero__title-line,
  .page-hero--revealed .page-hero__content h1,
  .page-hero--revealed .page-hero__lead,
  .page-hero--revealed .page-hero__intro,
  .page-hero--revealed .page-hero__highlights,
  .page-hero--revealed .page-hero__actions,
  .page-hero__eyebrow,
  .page-hero__title-line,
  .page-hero__content h1,
  .page-hero__lead,
  .page-hero__intro,
  .page-hero__highlights,
  .page-hero__actions {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-checklist__item::before,
  .hero-checklist__item::after { animation: none !important; }
  .bento-tile__shine { display: none; }
}

