/* ================================================================
   CSS CUSTOM PROPERTIES — Brand Colors extracted from Intex Aura logo
   Primary:  #C28A3A  (warm gold/amber — logo accent)
   Dark:     #1A1714  (near-black warm)
   Cream:    #F5F0E8  (off-white/cream)
   Stone:    #F0EBE1  (light warm stone)
   Secondary:#2D5016  (deep forest green — premium complement)
================================================================= */
:root {
  --color-brand-gold:   #B8832A;
  --color-brand-dark:   #1A1714;
  --color-brand-green:  #1E3A2F;
  --color-cream:        #F5F0E8;
  --color-stone:        #F0EBE1;
  --color-white:        #FFFFFF;
  --color-text:         #1A1714;
  --color-text-muted:   #6B6560;
  --color-text-light:   #9A9590;
  --color-border:       rgba(26,23,20,0.10);
  --color-border-dark:  rgba(26,23,20,0.18);

  /* Spacing */
  --section-pad-y:      clamp(48px, 5vw, 72px);
  --section-pad-x:      clamp(20px, 6vw, 100px);
  --container-max:      1380px;
  --container-pad:      clamp(20px, 5vw, 80px);

  /* Typography */
  --font-display:       900;
  --font-heading:       700;
  --font-semi:          600;
  --font-medium:        500;
  --font-regular:       400;
  --font-light:         300;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast:  0.25s;
  --t-med:   0.45s;
  --t-slow:  0.7s;
}

/* ================================================================
   RESET & BASE
================================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: var(--font-regular);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font-family: inherit; cursor: none; }
svg { display: block; }

/* ================================================================
   TYPOGRAPHY SCALE
================================================================= */
.h-hero {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.h-section {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-text);
}

.h-card {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  display: none;
}

.eyebrow.center {
  display: flex;
  justify-content: center;
}

.eyebrow.on-dark { color: var(--color-cream); }

.body-lg {
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.body-md {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* ================================================================
   LAYOUT UTILITIES
================================================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad-y) 0;
}

.section-stone { background: var(--color-stone); }
.section-cream { background: var(--color-cream); }

.section-dark {
  background: var(--color-brand-dark);
  color: var(--color-cream);
}

.section-green {
  background: var(--color-brand-green);
  color: var(--color-cream);
}

.section-head {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-head.center {
  text-align: center;
  margin: 0 auto 48px;
}

.row-between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.frame-mark {
  display: block;
  width: 3px;
  height: 100%;
  min-height: 48px;
  background: var(--color-brand-gold);
  flex-shrink: 0;
  border-radius: 2px;
}

/* ================================================================
   BUTTONS
================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 26px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid rgba(245,240,232,0.55);
  background: transparent;
  color: var(--color-white);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color var(--t-med) var(--ease-out),
              background var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out),
              transform var(--t-fast) var(--ease-out);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(245,240,232,0.55);
}

.btn-primary:hover {
  background: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Button on light/white background — dark visible style */
.btn-dark {
  background: var(--color-brand-dark);
  color: var(--color-white);
  border-color: var(--color-brand-dark);
}
.btn-dark:hover {
  background: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
  color: var(--color-white);
}
  color: var(--color-brand-dark);
  border-color: rgba(26,23,20,0.4);
}

.site-header.scrolled .btn-primary:hover {
  background: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(26,23,20,0.28);
}

.btn-outline:hover {
  background: var(--color-brand-gold);
  color: var(--color-white);
  border-color: var(--color-brand-gold);
}

.btn-on-dark.btn-outline {
  color: var(--color-cream);
  border-color: rgba(245,240,232,0.35);
}

.btn-on-dark.btn-outline:hover {
  background: var(--color-brand-gold);
  color: var(--color-white);
  border-color: var(--color-brand-gold);
}

.btn-icon,
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease-out);
}

.btn:hover .btn-icon { transform: translateX(3px); }

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  cursor: none;
  position: relative;
}

.btn-text-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--color-brand-gold);
  transition: width var(--t-med) var(--ease-out);
}

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

.btn-text-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t-fast) var(--ease-out);
}

.btn-text-link:hover svg { transform: translateX(3px); }

.btn-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border-dark);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out),
              transform var(--t-fast) var(--ease-out);
  color: var(--color-text);
  flex-shrink: 0;
}

.btn-circle svg { width: 14px; height: 14px; }

.btn-circle:hover {
  background: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
  color: var(--color-white);
  transform: scale(1.05);
}

/* ================================================================
   CUSTOM CURSOR
================================================================= */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--color-brand-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
  will-change: transform;
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--color-brand-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* ================================================================
   SVG NOISE OVERLAY (premium tactile texture)
================================================================= */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99997;
  opacity: 0.028;
}

/* ================================================================
   PRELOADER
================================================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-brand-dark);
  z-index: 99996;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: none;
}

.preloader-logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.preloader-logo span {
  color: var(--color-brand-gold);
}

.preloader-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(245,240,232,0.12);
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--color-brand-gold);
  transition: width 0.1s linear;
}

.preloader-counter {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(245,240,232,0.4);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ================================================================
   HEADER
================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              backdrop-filter var(--t-med) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(26,23,20,0.08), 0 1px 0 var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  cursor: none;
}

.brand img,
.brand-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: filter var(--t-med) var(--ease-out);
}

/* When header is scrolled (white bg), logo returns to its original dark colors */
.site-header.scrolled .brand-logo {
  filter: none;
}

.brand-wordmark {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color var(--t-fast);
}

.site-header.scrolled .brand-wordmark { color: var(--color-brand-dark); }

.brand-wordmark em {
  color: var(--color-brand-gold);
  font-style: normal;
}

/* ── Main Nav ── */
.main-nav { flex: 1; display: flex; justify-content: center; }

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  cursor: none;
  border-radius: 4px;
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.site-header.scrolled .nav-link { color: var(--color-text); }
.nav-link:hover { color: var(--color-brand-gold); }
.site-header.scrolled .nav-link:hover { color: var(--color-brand-gold); }

.chev {
  width: 10px; height: 6px;
  transition: transform var(--t-fast) var(--ease-out);
}

/* ── Dropdown ── */
.nav-item-has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  min-width: 240px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
}

.nav-item-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-item-has-dropdown:hover .chev { transform: rotate(180deg); }

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text);
  border-radius: var(--r-sm);
  cursor: none;
  transition: background var(--t-fast), color var(--t-fast);
}

.nav-dropdown-link:hover {
  background: var(--color-stone);
  color: var(--color-brand-gold);
}

.nav-dropdown-link .frame-mark {
  width: 3px;
  min-height: 16px;
  flex-shrink: 0;
}

/* ── Header Actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-cta {
  padding: 7px 20px;
  font-size: 12px;
}

/* ── Nav Toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  padding: 4px 0;
  cursor: none;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-white);
  transition: transform var(--t-med) var(--ease-out),
              opacity var(--t-fast),
              width var(--t-med) var(--ease-out);
  transform-origin: center;
}

.site-header.scrolled .nav-toggle span { background: var(--color-brand-dark); }

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  background: var(--color-brand-dark);
  z-index: 998;
  padding: 100px 40px 48px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out);
  overflow-y: auto;
}

.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-menu-list > li {
  border-bottom: 1px solid rgba(245,240,232,0.08);
}

.mobile-link {
  display: block;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-cream);
  cursor: none;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.mobile-link:hover {
  color: var(--color-brand-gold);
  padding-left: 8px;
}

.mm-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-cream);
  cursor: none;
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding: 0 0 16px 16px;
  gap: 4px;
}

.mobile-submenu.is-open { display: flex; }

.mobile-submenu .mobile-link {
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0;
  color: rgba(245,240,232,0.65);
}

.mobile-submenu .mobile-link:hover { color: var(--color-brand-gold); }

.mobile-menu-foot {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 28px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-foot a {
  font-size: 14px;
  color: rgba(245,240,232,0.5);
  cursor: none;
  transition: color var(--t-fast);
}

.mobile-menu-foot a:hover { color: var(--color-brand-gold); }

/* Overlay behind mobile menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,23,20,0.6);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.menu-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ================================================================
   HERO
================================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

/* wolf: hero background video placeholder */
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* wolf: hero poster image if video unavailable */
.hero-media-fallback {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,23,20,0.78) 0%,
    rgba(26,23,20,0.55) 55%,
    rgba(26,23,20,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding-top: 70px;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  overflow: hidden;
}

.hero-tagline-bits {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-tagline-bits span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  border: 1px solid rgba(245,240,232,0.15);
  padding: 5px 14px;
  border-radius: 100px;
}

.hero-title {
  display: block;
  margin-bottom: 40px;
}

.split-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
}

.split-line > span { display: block; }

.hero-sub-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  max-width: 920px;
}

.hero-value-prop {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.72);
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-shrink: 0;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.scroll-indicator-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}

.scroll-indicator-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(194,138,58,0.9), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* Hero social links */
.hero-social {
  position: absolute;
  right: var(--container-pad);
  bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
  align-items: flex-end;
}

.hero-social::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.3), transparent);
  margin: 0 auto;
}

.hero-social a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  cursor: none;
  transition: color var(--t-fast);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-social a:hover { color: var(--color-brand-gold); }

/* ================================================================
   MARQUEE STRIP
================================================================= */
.marquee-strip {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-white);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
  animation: marqueeScroll 24s linear infinite;
}

.marquee-track span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  padding: 0 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

.marquee-track span::after {
  content: '◆';
  font-size: 5px;
  color: var(--color-brand-gold);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   ABOUT
================================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 100px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media-main {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

/* wolf: about company main image */
.about-media-main img { /* wolf.jpg */ }

/* Corner frame decorative element */
.corner-frame::before,
.corner-frame::after {
  content: '';
  position: absolute;
  z-index: 2;
  width: 48px; height: 48px;
  border: 2px solid var(--color-brand-gold);
  pointer-events: none;
  transition: all 0.3s;
}

.corner-frame::before {
  top: -10px; left: -10px;
  border-right: none; border-bottom: none;
  border-radius: 4px 0 0 0;
}

.corner-frame::after {
  bottom: -10px; right: -10px;
  border-left: none; border-top: none;
  border-radius: 0 0 4px 0;
}

.about-badge {
  position: absolute;
  bottom: 36px;
  left: -36px;
  background: var(--color-brand-gold);
  color: var(--color-white);
  border-radius: var(--r-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(194,138,58,0.35);
  z-index: 3;
}

.about-badge .num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge .lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.88;
}

.about-media-float {
  position: absolute;
  top: 36px;
  right: -36px;
  width: 44%;
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  z-index: 3;
}

/* wolf: about float image */

.about-content { padding: 20px 0; }

.about-content .h-section { margin-bottom: 24px; }
.about-content .body-lg { margin-bottom: 16px; }
.about-content .body-md { margin-bottom: 40px; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.about-pillar {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.about-pillar h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-text);
}

.about-pillar p {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ================================================================
   WHY CHOOSE US
================================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Staggered card entrance animation */
@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.why-step.animate-in {
  animation: cardSlideUp 0.6s var(--ease-out) both;
}

.why-step.animate-in:nth-child(1) { animation-delay: 0s; }
.why-step.animate-in:nth-child(2) { animation-delay: 0.12s; }
.why-step.animate-in:nth-child(3) { animation-delay: 0.24s; }
.why-step.animate-in:nth-child(4) { animation-delay: 0.36s; }

.why-step {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Connecting line running behind the badges */
.why-step-head {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.why-step-head::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border-dark);
  z-index: 0;
}

.why-step:first-child .why-step-head::before { left: 50%; }
.why-step:last-child .why-step-head::before { right: 50%; }

.why-badge {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  transition: background var(--t-med) var(--ease-out),
              color var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-out);
}

.why-step:hover .why-badge {
  background: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
  color: var(--color-white);
  transform: scale(1.08);
}

.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-brand-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-med) var(--ease-out);
}

.why-step:hover .why-card {
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 28px 60px rgba(26,23,20,0.14);
  border-color: rgba(194,138,58,0.35);
  z-index: 2;
}

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

.why-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: rgba(194,138,58,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-brand-gold);
  transition: background var(--t-med), color var(--t-med);
}

.why-step:hover .why-card-icon {
  background: var(--color-brand-gold);
  color: var(--color-white);
}

.why-card-icon svg { width: 24px; height: 24px; stroke: currentColor; }

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
  transition: color var(--t-fast);
}

.why-step:hover .why-card h3 { color: var(--color-brand-gold); }

.why-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ================================================================
   SERVICES LIST (horizontal rows)
================================================================= */
.services-list {
  border-top: 1px solid var(--color-border);
}

.service-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: none;
  transition: padding-left var(--t-med) var(--ease-out);
  position: relative;
}

.service-row::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-brand-gold);
  transition: width var(--t-med) var(--ease-out);
}

.service-row:hover::after { width: 100%; }
.service-row:hover { padding-left: 8px; }

.service-index {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brand-gold);
  width: 36px;
  flex-shrink: 0;
}

.service-name {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--color-text);
  flex: 1;
  transition: color var(--t-fast);
}

.service-row:hover .service-name { color: var(--color-brand-gold); }

.service-tag {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  background: var(--color-stone);
  padding: 6px 16px;
  border-radius: 100px;
  flex-shrink: 0;
  transition: background var(--t-med) var(--ease-out),
              color var(--t-med) var(--ease-out);
}

.service-row:hover .service-tag {
  background: var(--color-brand-gold);
  color: var(--color-white);
}

/* ================================================================
   FEATURED PROJECTS
================================================================= */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  background: transparent;
  color: var(--color-text-muted);
  cursor: none;
  transition: all var(--t-fast);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
  color: var(--color-white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: none;
}

.project-card.is-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.project-card-media {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out);
}

/* wolf: project card image */

.project-card:hover .project-card-media { transform: scale(1.06); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.85) 0%, rgba(26,23,20,0.2) 50%, transparent 100%);
  transition: opacity var(--t-med);
}

.project-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
  transform: translateY(14px);
  transition: transform var(--t-med) var(--ease-out);
}

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

.project-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  background: rgba(194,138,58,0.15);
  border: 1px solid rgba(194,138,58,0.3);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.project-card-title {
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0;
}

.project-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  transform: translateY(4px);
  transition: opacity var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-out),
              max-height var(--t-med) var(--ease-out),
              margin-top var(--t-med) var(--ease-out),
              color var(--t-fast);
}

.project-card-link svg { width: 14px; height: 14px; }
.project-card:hover .project-card-link {
  opacity: 1;
  transform: translateY(0);
  max-height: 24px;
  margin-top: 12px;
}
.project-card-link:hover { color: var(--color-brand-gold); }

.project-card[style*="display: none"] { display: none !important; }

/* Make entire project card clickable via the .project-card-link anchor */
.project-card-link {
  position: static;
}
/* Full-card click overlay using the anchor's ::before */
.project-card > .project-card-content > a.project-card-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.project-card-content { z-index: 2; }

/* Project detail page — scope list */
.about-content ul li {
  font-size: 14px;
  color: var(--color-text);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}
.about-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-gold);
}

/* ================================================================
   INTERIOR DESIGN SHOWCASE — Before/After Slider
================================================================= */
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 48px;
}

.ba-slider {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  user-select: none;
  cursor: ew-resize;
}

.ba-img {
  position: absolute;
  inset: 0;
  display: block;
}

/* wolf: after interior image */
.ba-after { /* wolf.jpg */ }

.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

/* wolf: before interior image */

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--color-white);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  pointer-events: none;
}

.ba-handle svg { width: 18px; height: 18px; }

.ba-label {
  position: absolute;
  bottom: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(0,0,0,0.5);
  padding: 5px 12px;
  border-radius: 100px;
  pointer-events: none;
}

.ba-label.before { left: 20px; }
.ba-label.after { right: 20px; }

.ba-content { padding: 16px 0; }

.ba-content .h-card { margin-bottom: 16px; }
.ba-content .body-lg { margin-bottom: 28px; }

.ba-stat-row {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}

.ba-stat .num {
  font-size: 38px;
  font-weight: 800;
  color: var(--color-brand-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.ba-stat .lbl {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mini-gallery-item {
  aspect-ratio: 3/2;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: none;
  transition: transform var(--t-med) var(--ease-out);
}

/* wolf: interior portfolio thumbnails */

.mini-gallery-item:hover { transform: scale(1.03); }

/* ================================================================
   CONSTRUCTION EXCELLENCE — Timeline
================================================================= */
.section-dark .eyebrow { color: var(--color-brand-gold); }
.section-dark .eyebrow::before { background: var(--color-brand-gold); }

.section-dark .h-section { color: var(--color-cream); }
.section-dark .body-lg { color: rgba(245,240,232,0.6); }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 48px;
}

.timeline-track {
  position: absolute;
  top: 24px; left: 0; right: 0;
  height: 1px;
  background: rgba(245,240,232,0.12);
}

.timeline-track-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--color-brand-gold), rgba(194,138,58,0.3));
  transition: width 1.5s var(--ease-out);
}

.timeline-item {
  position: relative;
  padding-top: 56px;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245,240,232,0.08);
  border: 1.5px solid rgba(245,240,232,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.05em;
  transition: background var(--t-med), border-color var(--t-med), color var(--t-med);
}

.timeline-item.is-active .timeline-dot {
  background: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
  color: var(--color-white);
  box-shadow: 0 0 0 8px rgba(194,138,58,0.15);
}

.timeline-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  margin-bottom: 12px;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,0.55);
}

/* ================================================================
   ARCHITECTURE SHOWCASE
================================================================= */
.arch-showcase {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.arch-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.arch-row.reverse { direction: rtl; }
.arch-row.reverse > * { direction: ltr; }

.arch-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

/* wolf: architecture concept images / video */

.arch-media img,
.arch-media video { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.arch-media:hover img,
.arch-media:hover video { transform: scale(1.04); }

.arch-media-content { padding: 20px 0; }

.arch-media-content .h-card { margin-bottom: 14px; }

.arch-media-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-green);
  background: rgba(45,80,22,0.1);
  padding: 5px 14px;
  border-radius: 100px;
}

/* ================================================================
   FURNITURE & WOOD WORKS
================================================================= */
.wood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 500px;
  gap: 20px;
  margin-bottom: 40px;
}

.wood-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: none;
}

/* wolf: furniture/wood works images */

.wood-card.tall {
  grid-row: span 2;
  min-height: 500px;
}

.wood-card.short { height: 100%; }

.wood-card img {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out);
}

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

.wood-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(26,23,20,0.6);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  z-index: 2;
}

.craft-banner {
  background: linear-gradient(135deg, var(--color-brand-dark), #2d2a26);
  border-radius: var(--r-xl);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.craft-banner h3 {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  color: var(--color-cream);
  margin-bottom: 10px;
}

.craft-banner p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,232,0.55);
  max-width: 480px;
}

/* ================================================================
   STATISTICS / ACHIEVEMENTS
================================================================= */
.section-green .eyebrow { color: rgba(245,240,232,0.7); }
.section-green .eyebrow::before { background: rgba(245,240,232,0.5); }
.section-green .h-section { color: var(--color-cream); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
}

.stat-item {
  padding: 56px 40px;
  border-right: 1px solid rgba(245,240,232,0.1);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stat-num .suffix {
  font-size: 0.5em;
  color: var(--color-brand-gold);
}

.stat-lbl {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(245,240,232,0.55);
  text-transform: uppercase;
}

/* ================================================================
   TESTIMONIALS
================================================================= */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 16px 32px;
  opacity: 0;
  transition: opacity 0.4s;
}

.testimonial-slide.is-active {
  display: block;
  opacity: 1;
}

.testimonial-quote-icon {
  width: 44px; height: auto;
  color: var(--color-brand-gold);
  opacity: 0.25;
  margin: 0 auto 28px;
}

.testimonial-text {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 36px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-brand-gold);
}

/* wolf: testimonial author photos */

.testimonial-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
}

.testimonial-author-role {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
  text-align: left;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-border-dark);
  cursor: none;
  transition: all var(--t-fast);
}

.testimonial-dot.is-active {
  width: 24px;
  border-radius: 3px;
  background: var(--color-brand-gold);
}

/* ================================================================
   GALLERY PREVIEW — Masonry
================================================================= */
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 8px;
  gap: 16px;
}

.masonry-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: none;
}

/* wolf: gallery images */

.masonry-item img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease-out);
}

.masonry-item:hover img { transform: scale(1.06); }

.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-med);
  color: var(--color-white);
}

.masonry-item:hover .masonry-item-overlay { opacity: 1; }

.masonry-item-overlay svg { width: 32px; height: 32px; }

/* ================================================================
   LIGHTBOX
================================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26,23,20,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-md);
  width: auto;
  height: auto;
}

/* wolf: lightbox enlarged image */

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: none;
  color: var(--color-cream);
  cursor: none;
  opacity: 0.6;
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.lightbox-close svg { width: 24px; height: 24px; }
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-cream);
  cursor: none;
  transition: background var(--t-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover { background: var(--color-brand-gold); border-color: var(--color-brand-gold); }

.lightbox-prev svg, .lightbox-next svg { width: 16px; height: 16px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ================================================================
   BLOG PREVIEW
================================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out);
  cursor: none;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.blog-card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}

/* wolf: blog cover images */

.blog-card-media img { transition: transform 0.7s var(--ease-out); }
.blog-card:hover .blog-card-media img { transform: scale(1.06); }

.blog-card > .blog-meta,
.blog-card > h3,
.blog-card > p,
.blog-card > a {
  padding: 0 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-light);
  margin: 20px 0 10px;
}

.blog-cat {
  color: var(--color-brand-gold);
  font-weight: 600;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 8px;
}

.blog-card > a { padding-bottom: 32px; display: inline-flex; }

/* ================================================================
   CONTACT CTA
================================================================= */
.contact-cta {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: clamp(60px, 8vw, 100px) clamp(32px, 6vw, 80px);
  text-align: center;
  background: var(--color-brand-dark);
}

.contact-cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

/* wolf: contact CTA background image */

.contact-cta .eyebrow,
.contact-cta .h-section,
.contact-cta .body-lg {
  position: relative;
  z-index: 1;
  color: var(--color-cream);
}

.contact-cta .h-section { margin: 0 auto 20px; }
.contact-cta .body-lg { margin: 0 auto 36px; max-width: 540px; color: rgba(245,240,232,0.65); }

.contact-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.contact-cta-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(245,240,232,0.12);
  padding-top: 32px;
}

.contact-cta-meta-item {
  text-align: center;
}

.contact-cta-meta-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 4px;
}

.contact-cta-meta-item > * {
  font-size: 12px;
  color: rgba(245,240,232,0.45);
}

/* ================================================================
   FOOTER
================================================================= */
.site-footer {
  background: #141210;
  color: rgba(245,240,232,0.65);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}

.footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,0.45);
  margin-bottom: 28px;
  max-width: 300px;
}

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

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.5);
  cursor: none;
  transition: all var(--t-fast);
}

.footer-social a svg { width: 18px; height: 18px; stroke: currentColor; }

.footer-social a:hover {
  border-color: var(--color-brand-gold);
  color: var(--color-brand-gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,240,232,0.45);
  cursor: none;
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: block;
}

.footer-col ul li a:hover {
  color: var(--color-brand-gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: var(--color-brand-gold);
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245,240,232,0.5);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(245,240,232,0.06);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(245,240,232,0.3);
}

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

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(245,240,232,0.3);
  cursor: none;
  transition: color var(--t-fast);
}

.footer-bottom-links a:hover { color: var(--color-brand-gold); }

/* ================================================================
   SCROLL REVEAL ANIMATION STATES
================================================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-fade {
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}

.reveal-fade.is-visible { opacity: 1; }

/* ================================================================
   TEXT ON DARK
================================================================= */
.text-on-dark { color: rgba(245,240,232,0.65) !important; }
.on-dark { color: rgba(245,240,232,0.85); }

/* ================================================================
   RESPONSIVE — TABLET (1024px)
================================================================= */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .why-step-head::before { display: none; }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
  }

  .timeline { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 900px) {
  :root { --section-pad-y: clamp(44px, 7.5vw, 64px); }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

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

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

  .arch-row { grid-template-columns: 1fr; gap: 40px; }
  .arch-row.reverse { direction: ltr; }

  .ba-wrap { grid-template-columns: 1fr; }

  .wood-grid { grid-template-columns: 1fr 1fr; align-items: end; }
  .wood-card.tall { grid-row: auto; aspect-ratio: 4/3; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(245,240,232,0.1); }

  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .blog-card:last-child { display: none; }

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

  .masonry { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   RESPONSIVE — MOBILE (768px)
================================================================= */
@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding: 130px 0 64px;
  }
  .hero-content { padding-top: 0; }
  .hero-title { margin-bottom: 28px; }
  .h-hero { font-size: clamp(28px, 7.5vw, 48px); line-height: 1.15; }
  .hero-eyebrow-row { margin-bottom: 20px; }

  .hero-sub-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-ctas { flex-direction: row; }
  .hero-social { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media-float { right: -20px; width: 38%; }
  .about-badge { left: -16px; }

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

  .project-grid { grid-template-columns: 1fr; }
  .project-card.is-large { grid-column: span 1; aspect-ratio: 4/3; }

  .ba-stat-row { gap: 20px; }

  .timeline { grid-template-columns: 1fr; padding-top: 0; }
  .timeline-track { display: none; }

  .wood-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    gap: 16px;
  }
  .wood-card,
  .wood-card.tall,
  .wood-card.short {
    grid-row: auto;
    min-height: 0;
    height: auto;
    aspect-ratio: 4/3;
  }

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

  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid .blog-card:last-child { display: block; }

  .mini-gallery { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-cta-meta { gap: 24px; }

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

  .craft-banner { flex-direction: column; text-align: center; padding: 40px 32px; }

  .row-between { flex-direction: column; align-items: flex-start; }

  .service-row {
    flex-wrap: wrap;
    gap: 6px 0;
    padding: 20px 0;
  }
  .service-index { order: 1; width: 36px; flex-shrink: 0; }
  .service-name { order: 2; font-size: 18px; flex: 1; min-width: 0; }
  .btn-circle { order: 3; width: 32px; height: 32px; flex-shrink: 0; margin-left: 0; }
  .btn-circle svg { width: 14px; height: 14px; }
  .service-tag {
    order: 4;
    width: calc(100% - 36px);
    flex: none;
    margin-left: 36px;
    white-space: normal;
    box-sizing: border-box;
    padding: 5px 12px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  :root { --container-pad: 20px; }

  .hero-ctas { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .masonry { 
    display: block !important;
    column-count: 2;
    column-gap: 10px;
    width: 100%;
  }
  .masonry .masonry-item { 
    display: block;
    width: 100%;
    break-inside: avoid;
    margin-bottom: 10px;
    grid-column: unset !important;
    grid-row: unset !important;
  }
  .masonry .masonry-item img { 
    position: relative !important;
    inset: auto !important;
    width: 100%;
    display: block;
    object-fit: cover;
    height: 180px;
  }
  .masonry .masonry-item:nth-child(1) img  { height: 240px; }
  .masonry .masonry-item:nth-child(2) img  { height: 160px; }
  .masonry .masonry-item:nth-child(3) img  { height: 200px; }
  .masonry .masonry-item:nth-child(4) img  { height: 280px; }
  .masonry .masonry-item:nth-child(5) img  { height: 170px; }
  .masonry .masonry-item:nth-child(6) img  { height: 230px; }
  .masonry .masonry-item:nth-child(7) img  { height: 190px; }
  .masonry .masonry-item:nth-child(8) img  { height: 260px; }
  .masonry .masonry-item:nth-child(9) img  { height: 220px; }
  .masonry .masonry-item:nth-child(10) img { height: 175px; }
  .masonry .masonry-item:nth-child(11) img { height: 250px; }
  .masonry .masonry-item:nth-child(12) img { height: 195px; }
  .team-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 10px; }
  .ba-stat-row { gap: 24px; flex-wrap: wrap; }
  .contact-cta-meta { gap: 20px; }
  .craft-banner { padding: 32px 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   SUB-PAGE ADDITIONS — page hero banners, breadcrumbs, content
   blocks, FAQ, value cards, CTA band. All built strictly from the
   existing design tokens so the theme stays identical across pages.
================================================================= */

/* Page hero / interior banner ----------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--section-pad-y) + 80px) 0 calc(var(--section-pad-y) + 32px);
  min-height: 46vh;
  background: var(--color-brand-dark);
  color: var(--color-cream);
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.05);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(26,23,20,0.62) 0%,
    rgba(26,23,20,0.45) 45%,
    rgba(26,23,20,0.72) 100%);
}
.page-hero .container { position: relative; }
.page-hero-inner { max-width: 880px; }
.page-hero h1 {
  font-size: clamp(40px, 6vw, 86px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--color-cream);
  margin: 14px 0 22px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--color-brand-gold);
}
.page-hero-lead {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,0.72);
  max-width: 620px;
}
.page-hero-split > span {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.page-hero-split .ph-word {
  display: inline-block;
  will-change: transform;
}

/* Breadcrumb ---------------------------------------------------- */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
}
.breadcrumb a { color: var(--color-brand-gold); transition: opacity var(--t-fast) var(--ease-out); }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span.sep { opacity: 0.4; }

/* Generic prose block ------------------------------------------- */
.prose-block { max-width: 760px; }
.prose-block p { margin-bottom: 20px; }
.prose-block p:last-child { margin-bottom: 0; }

/* Two-column intro (text + media) ------------------------------- */
.split-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.split-intro.reverse .split-intro-media { order: -1; }
.split-intro-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
}
.split-intro-media img { transition: transform var(--t-slow) var(--ease-out); }
.split-intro-media:hover img { transform: scale(1.05); }

/* Feature / value card grid ------------------------------------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.value-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: transform var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out);
}
.section-stone .value-card { background: var(--color-white); }
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,131,42,0.4);
  box-shadow: 0 24px 50px -28px rgba(26,23,20,0.28);
}
.value-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(184,131,42,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--color-brand-gold);
}
.value-card-icon svg { width: 26px; height: 26px; }
.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.value-card .vc-index {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brand-gold);
  display: block;
  margin-bottom: 16px;
}

/* Feature list with checkmarks ---------------------------------- */
.feature-list { display: grid; gap: 18px; }
.feature-list.two-col { grid-template-columns: 1fr 1fr; gap: 18px 40px; }
.feature-list li {
  display: flex;
  gap: 14px;
  list-style: none;
  align-items: flex-start;
}
.feature-list li .fl-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(184,131,42,0.12);
  color: var(--color-brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-list li .fl-check svg { width: 14px; height: 14px; }
.feature-list li h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.feature-list li p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-text-muted);
}
.section-dark .feature-list li p { color: rgba(245,240,232,0.6); }
.section-dark .feature-list li h4 { color: var(--color-cream); }

/* Numbered process steps ---------------------------------------- */
.process-steps { display: grid; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-top: 1px solid var(--color-border);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--color-border); }
.section-dark .process-step { border-color: rgba(245,240,232,0.12); }
.process-step .ps-num {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 200;
  line-height: 1;
  color: var(--color-brand-gold);
  letter-spacing: -0.02em;
}
.process-step h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.section-dark .process-step h3 { color: var(--color-cream); }
.process-step p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 640px;
}
.section-dark .process-step p { color: rgba(245,240,232,0.6); }

/* FAQ accordion ------------------------------------------------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: inherit;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
  cursor: none;
  transition: color var(--t-fast) var(--ease-out);
}
.faq-q:hover { color: var(--color-brand-gold); }
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease-out);
}
.faq-q .faq-icon::before,
.faq-q .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--t-med) var(--ease-out), opacity var(--t-med) var(--ease-out);
}
.faq-q .faq-icon::before { width: 11px; height: 1.5px; }
.faq-q .faq-icon::after { width: 1.5px; height: 11px; }
.faq-item.is-open .faq-q .faq-icon {
  background: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
  color: var(--color-white);
}
.faq-item.is-open .faq-q .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-a {
  overflow: hidden;
  height: 0;
  transition: height var(--t-med) var(--ease-in-out);
}
.faq-a-inner {
  padding: 0 0 28px;
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* Simple CTA band ----------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: clamp(48px, 6vw, 84px) clamp(28px, 5vw, 72px);
  text-align: center;
  isolation: isolate;
}
.cta-band-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.cta-band::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--color-brand-dark);
  opacity: 0.55;
}
.cta-band h2 { color: var(--color-cream); margin-bottom: 18px; }
.cta-band p {
  color: rgba(245,240,232,0.66);
  max-width: 540px;
  margin: 0 auto 34px;
}
.cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stat strip (light) -------------------------------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 44px 0;
}
.stat-strip .ss-item { text-align: center; }
.stat-strip .ss-num {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1;
}
.stat-strip .ss-num .suffix { color: var(--color-brand-gold); }
.stat-strip .ss-lbl {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Team grid ----------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { }
.team-card-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  margin-bottom: 18px;
  position: relative;
}
.team-card-media img { transition: transform var(--t-slow) var(--ease-out); filter: grayscale(0.2); }
.team-card:hover .team-card-media img { transform: scale(1.06); filter: grayscale(0); }
.team-card h4 { font-size: 18px; font-weight: 600; }
.team-card span { font-size: 13.5px; color: var(--color-brand-gold); font-weight: 500; }

/* Contact layout ------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.contact-info-block { display: grid; gap: 28px; }
.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-card .ci-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(184,131,42,0.10);
  color: var(--color-brand-gold);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-card .ci-icon svg { width: 22px; height: 22px; }
.contact-info-card h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-light); margin-bottom: 6px; font-weight: 600; }
.contact-info-card p { font-size: 16px; color: var(--color-text); line-height: 1.5; }
.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-stone);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  padding: 14px 16px;
  transition: border-color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
  cursor: none;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-brand-gold);
  background: var(--color-white);
}
.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--color-brand-dark);
  border-color: var(--color-brand-dark);
  color: var(--color-cream);
}
.btn-submit:hover {
  background: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
  color: var(--color-white);
}
.map-embed {
  margin-top: 40px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* Blog page ----------------------------------------------------- */
.blog-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: 64px;
}
.blog-featured-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.blog-featured-media img { transition: transform var(--t-slow) var(--ease-out); }
.blog-featured:hover .blog-featured-media img { transform: scale(1.04); }
.blog-featured h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 18px 0 18px;
}
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}
.blog-cat-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Gallery page categories -------------------------------------- */
.gallery-cat-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

/* Services index hero cards ------------------------------------- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card-lg {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--color-cream);
  isolation: isolate;
}
.service-card-lg-bg { position: absolute; inset: 0; z-index: -2; }
.service-card-lg-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease-out); }
.service-card-lg::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(26,23,20,0) 30%, rgba(26,23,20,0.88) 100%);
}
.service-card-lg:hover .service-card-lg-bg img { transform: scale(1.07); }
.service-card-lg .scl-index {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--color-brand-gold);
  font-weight: 600;
  margin-bottom: auto;
}
.service-card-lg h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.service-card-lg p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(245,240,232,0.7);
  margin-bottom: 18px;
}
.service-card-lg .scl-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cream);
}
.service-card-lg .scl-link svg { width: 15px; height: 15px; transition: transform var(--t-fast) var(--ease-out); }
.service-card-lg:hover .scl-link svg { transform: translateX(4px); }

/* Image band ---------------------------------------------------- */
.image-band {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 21 / 8;
  position: relative;
}
.image-band img { transition: transform var(--t-slow) var(--ease-out); }
.image-band:hover img { transform: scale(1.04); }

/* Spec / detail table ------------------------------------------- */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--color-border); }
.spec-table td { padding: 18px 0; font-size: 15.5px; vertical-align: top; }
.spec-table td:first-child {
  width: 38%;
  color: var(--color-text-muted);
  font-weight: 500;
}
.spec-table td:last-child { color: var(--color-text); }

/* Pillars / mission reuse on dark ------------------------------- */
.mini-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  padding: 6px 14px;
  border: 1px solid rgba(184,131,42,0.35);
  border-radius: 999px;
}

/* Responsive ---------------------------------------------------- */
@media (max-width: 1024px) {
  .value-grid, .value-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .blog-list-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 860px) {
  .split-intro { grid-template-columns: 1fr; }
  .split-intro.reverse .split-intro-media { order: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .feature-list.two-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .value-grid, .value-grid.cols-2, .value-grid.cols-4,
  .service-cards, .blog-list-grid, .team-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 10px; }
  .page-hero { padding-top: calc(var(--section-pad-y) + 80px); }
}

/* ================================================================
   SUB-PAGE HEADER — always solid (white) since sub-pages have a
   dark page-hero banner directly beneath a fixed header.
================================================================= */
.site-header.is-solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.site-header.is-solid .nav-link { color: var(--color-text); }
.site-header.is-solid .nav-link:hover,
.site-header.is-solid .nav-link.is-active { color: var(--color-brand-gold); }
.site-header.is-solid .brand-wordmark { color: var(--color-brand-dark); }
.site-header.is-solid .nav-toggle span { background: var(--color-brand-dark); }
.site-header.is-solid .btn-primary {
  color: var(--color-brand-dark);
  border-color: rgba(26,23,20,0.4);
}
.site-header.is-solid .btn-primary:hover {
  background: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
  color: var(--color-white);
}
.nav-link.is-active { color: var(--color-brand-gold); }

/* Simple 3-up gallery (sub-pages) — distinct from the homepage masonry */
.simple-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.simple-gallery .masonry-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  cursor: none;
}
.simple-gallery .masonry-item img { transition: transform var(--t-slow) var(--ease-out); }
.simple-gallery .masonry-item:hover img { transform: scale(1.06); }
@media (max-width: 860px){ .simple-gallery { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .simple-gallery { grid-template-columns: 1fr; } }

/* Gallery page — CSS-columns masonry (lightbox-compatible) */
.gallery-flow {
  column-count: 4;
  column-gap: 18px;
  width: 100%;
  column-fill: balance;
}
.gallery-flow .masonry-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: none;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.gallery-flow .masonry-item img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--t-slow) var(--ease-out);
}
.gallery-flow .masonry-item:hover img { transform: scale(1.05); }
@media (max-width: 1100px){ .gallery-flow { column-count: 3; } }
@media (max-width: 760px){ .gallery-flow { column-count: 2; } }
@media (max-width: 480px){ .gallery-flow { column-count: 1; } }

/* ── Floating WhatsApp Button ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
/* Pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,0.5);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* About page — long headline needs a smaller font so it still wraps
   to ~2 lines and the hero stays the same height as other sub-pages
   (padding/min-height intentionally NOT overridden — stays identical
   to .page-hero so the box height matches Projects/Services/Contact). */
.page-hero--compact h1 {
  font-size: clamp(28px, 4.2vw, 58px);
}

/* Hero-adjacent pages — the section directly under .page-hero had a
   bigger top gap than other pages (section padding-top stacking with
   the hero's own bottom space). Scoped to this section only — does
   not touch .section or .about-content anywhere else. */
.about-story-section,
.page-top-section {
  padding-top: calc(var(--section-pad-y) - 28px);
}
.about-story-section .about-content {
  padding-top: 0;
}
@media (max-width: 768px) {
  .about-story-section,
  .page-top-section {
    padding-top: calc(var(--section-pad-y) - 24px);
  }
}
