@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* CSS custom properties */
:root {
  /* Colors */
  --bg:        #0d0b08;
  --bg2:       #121009;
  --bg3:       #1a1610;
  --surface:   rgba(255,255,255,0.04);
  --surface2:  rgba(255,255,255,0.08);
  --surface3:  rgba(255,255,255,0.12);
  --text:      #f0e8d8;
  --text2:     #b8a990;
  --muted:     rgba(240,232,216,0.55);
  --line:      rgba(201,161,74,0.15);
  --line2:     rgba(255,255,255,0.08);

  --gold:      #c9a14a;
  --gold2:     #e8c26e;
  --gold3:     #f5d88a;
  --gold-dim:  rgba(201,161,74,0.12);
  --gold-glow: rgba(201,161,74,0.25);
  --wood:      #8b5a2b;
  --wood2:     #6b3e1e;
  --charcoal:  #1e1a14;
  --charcoal2: #2a251d;

  /* Shadows */
  --shadow:    0 24px 80px rgba(0,0,0,0.7);
  --shadow-sm: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(201,161,74,0.2);

  /* Spacing */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max:       1200px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  width: 100%;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(212,175,55,0.08), transparent 60%),
              radial-gradient(1000px 500px at 80% 20%, rgba(212,175,55,0.06), transparent 55%),
              #0b0a08;
  background-attachment: fixed;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  font-size: 13.5px;
}

body.menu-open,
body.nav-open {
  overflow: hidden;
}
body.mobile-menu-active {
  overflow: hidden;
}

/* Check icon (gold SVG) */
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.check-icon {
  width: 20px;
  height: 20px;
  color: #C9A14A;
  flex-shrink: 0;
}
.check-icon .check-bg {
  fill: rgba(201,161,74,0.15);
  stroke: rgba(201,161,74,0.6);
}
.check-icon path {
  stroke: #C9A14A;
}
.badge,
.pill,
.feature-pill,
.ispm-badge,
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Icon list: fixed column for aligned text */
.icon-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.icon-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  column-gap: 14px;
}
.icon-list .check-icon,
.icon-list .tick-icon,
.icon-list svg,
.icon-list img.icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
video, iframe, svg { max-width: 100%; }
button { font-family: var(--font-body); cursor: pointer; }
ul { list-style: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold2);
  outline-offset: 2px;
}

/* Container (responsive padding) */
.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Utility */
section, header, main, footer {
  background: transparent !important;
}

section {
  padding-top: clamp(48px, 6vw, 90px);
  padding-bottom: clamp(48px, 6vw, 90px);
  border: none !important;
  box-shadow: none !important;
}

section::before,
section::after {
  display: none !important;
}

.section {
  padding: clamp(48px, 6vw, 90px) 0;
}
.section-sm {
  padding: 60px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 14px;
}
.section-header p {
  color: var(--text2);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-title,
h2 {
  margin: 0 0 14px;
}
p {
  margin: 0 0 14px;
  line-height: 1.65;
}
p:last-child { margin-bottom: 0; }

.gold { color: var(--gold); }
.text-center { text-align: center; }

/* Gold divider */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 99px;
  margin: 20px auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255,255,255,0.05);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn:hover,
.btn:focus-visible {
  text-shadow: 0 0 10px rgba(255,255,255,0.35), 0 0 18px rgba(201,161,74,0.65);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #0d0b08;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold3) 100%);
  box-shadow: 0 8px 30px rgba(201,161,74,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: rgba(201,161,74,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,161,74,0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--surface2);
  color: var(--text);
  border-color: var(--line2);
}
.btn-ghost:hover {
  background: var(--surface3);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 0.95rem;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* Header / navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  min-height: 80px;
  background: rgba(13, 11, 8, 0.45);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  box-shadow:
    0 6px 30px rgba(0,0,0,0.45),
    0 0 18px rgba(212,175,55,0.08);
  transition: all 0.35s ease;
}
.header.scrolled {
  background: rgba(13, 11, 8, 0.65);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(212,175,55,0.28);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter:
    brightness(1.15)
    drop-shadow(0 4px 18px rgba(0,0,0,0.45))
    drop-shadow(0 0 12px rgba(212,175,55,0.18));
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.04);
}
.brand-text {
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  text-rendering: optimizeLegibility;
}
.brand-sub {
  font-size: 0.78rem;
  color: var(--gold2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text2);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--gold); }
.nav-links .nav-cta {
  margin-left: 12px;
  color: #000000 !important;
  font-weight: 600;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta a:hover {
  color: #ffffff !important;
}

a[href="quote.html"] {
  color: #000000 !important;
  font-weight: 600;
}

a[href="quote.html"]:hover {
  color: #ffffff !important;
}

/* Mobile menu toggle (48px touch target) */
.menu-btn {
  display: none;
  min-width: 48px;
  min-height: 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--surface2);
  border: 1px solid var(--line2);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s;
}
.menu-btn:hover { background: var(--surface3); }
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('../../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.25) saturate(0.6);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(13,11,8,0.6) 0%, transparent 50%),
    linear-gradient(0deg, rgba(13,11,8,0.9) 0%, rgba(13,11,8,0.2) 60%);
}
/* Grain texture overlay */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-right: clamp(180px, 22vw, 320px);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 0 0 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero logo aligned with main heading */
.hero-logo-overlay {
  position: absolute;
  right: 6%;
  top: 32%;
  transform: translateY(-50%);
  opacity: 0.9;
  z-index: 4;
  pointer-events: none;
}
.hero-logo-overlay::before {
  display: none;
}
.hero-logo-overlay img {
  width: 260px;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .hero-content {
    padding-right: 0;
  }
  .hero-logo-overlay {
    position: static;
    transform: none;
    order: 2;
    margin: 28px auto 0;
    width: fit-content;
  }
  .hero-logo-overlay img {
    width: min(280px, 65vw);
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-content { order: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201,161,74,0.12);
  border: 1px solid rgba(201,161,74,0.3);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 4.0rem);
  font-weight: 900;
  line-height: clamp(1.15, 0.25vw + 1.1, 1.05);
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--gold); }

.hero-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text2);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-tag {
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line2);
  border-radius: 99px;
  font-size: 0.78rem;
  color: var(--text2);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-kpis {
  display: flex;
  gap: 36px;
}
.hero-kpi {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.hero-kpi strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-kpi span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  display: block;
  letter-spacing: 0.03em;
}

/* Hero contact card */
.hero-card {
  background: rgba(26,22,16,0.85);
  border: 1px solid rgba(201,161,74,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(201,161,74,0.1);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
}
.hero-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.hero-card p {
  font-size: 0.88rem;
  color: var(--text2);
  margin-bottom: 28px;
}
.hero-card-divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 38px; height: 38px;
  background: var(--gold-dim);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text { font-size: 0.88rem; }
.contact-item-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}
.contact-item-value { color: var(--text); font-weight: 500; }
.contact-item .contact-info {
  flex: 1;
}
.contact-item .contact-info h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-item .contact-info p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.5;
  margin: 0;
}
.contact-item-value a { color: var(--gold); transition: color 0.2s; }
.contact-item-value a:hover { color: var(--gold2); }

/* Feature strips */
.features-strip {
  padding: 32px 0;
}
.features-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  border-right: 1px solid var(--line2);
  transition: all 0.3s ease;
  flex-wrap: nowrap;
}
.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--text);
  transition: color 0.3s ease;
}
.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}
.feature-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
  transition: text-shadow 0.3s ease;
}
.feature-text span {
  font-size: 0.78rem;
  color: var(--muted);
  transition: text-shadow 0.3s ease;
}

/* Feature item hover effects */
.feature-item:hover .feature-icon {
  color: var(--gold);
}
.feature-item:hover .feature-icon svg {
  stroke: var(--gold);
}
.feature-item:hover .feature-text strong,
.feature-item:hover .feature-text span {
  text-shadow: 0 0 20px rgba(201, 161, 74, 0.4);
}

/* Product cards (clickable, image ratio, equal height) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.product-card {
  background: var(--charcoal);
  border: 1px solid rgba(201,161,74,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s ease, border-color 0.22s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

/* Card clickable via data-href; no nested anchors */
.product-card[data-href] {
  cursor: pointer;
}
.product-card[data-href]:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 24px rgba(201,161,74,0.15);
  border-color: rgba(201,161,74,0.25);
}
.product-card[data-href]:active {
  transform: translateY(-1px) scale(0.995);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.product-card[data-href]:focus-visible {
  outline: 2px solid rgba(201,161,74,0.85);
  outline-offset: 3px;
}

/* Aspect-ratio image container */
.product-card-image,
.product-card-img,
.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg3);
}
.product-card-image img,
.product-card-img img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.product-card[data-href]:hover .product-card-image img,
.product-card[data-href]:hover .product-card-img img,
.product-card[data-href]:hover .product-image img {
  transform: scale(1.04);
}

.product-card-body,
.product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 28px 28px;
  min-height: 0;
}
.product-card-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.product-card p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-actions,
.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
}
.product-actions .btn,
.product-card-footer .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .product-card-image,
  .product-card-img,
  .product-image {
    aspect-ratio: 4 / 3;
  }
  .product-actions,
  .product-card-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Category sections */
.category-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.category-label h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.category-block { margin-bottom: 72px; }
.category-block:last-child { margin-bottom: 0; }

/* About section */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
}
.about-content .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.about-content p {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.about-stat {
  background: rgba(30,26,20,0.4);
  border: 1px solid rgba(201,161,74,0.2);
  border-radius: var(--radius-sm);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.about-stat:hover {
  background: rgba(30,26,20,0.6);
  border-color: rgba(201,161,74,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201,161,74,0.1);
}
.about-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}
.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.about-stat span {
  font-size: 0.82rem;
  color: var(--text2);
  margin-top: 6px;
  display: block;
}
.about-images {
  position: relative;
}
.about-images::after {
  content: '';
  position: absolute;
  inset: -24px;
  border: 1px solid rgba(201,161,74,0.2);
  border-radius: calc(var(--radius) + 8px);
  pointer-events: none;
}
.about-img-main {
  width: 100%;
  height: clamp(380px, 60vw, 520px);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 2px solid rgba(201,161,74,0.25);
  box-shadow: 0 32px 96px rgba(0,0,0,0.5), 0 0 40px rgba(201,161,74,0.15);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1), box-shadow 0.4s ease;
}
.reveal:has(.about-images) .about-img-main:hover {
  transform: translateY(-12px);
  box-shadow: 0 48px 120px rgba(0,0,0,0.6), 0 0 60px rgba(201,161,74,0.25);
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 3px solid var(--bg);
  box-shadow: var(--shadow);
}

/* Services section */
.service-hero-card {
  background: var(--charcoal);
  border: 1px solid rgba(201,161,74,0.2);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.service-hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}
.service-hero-card-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.service-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.service-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,161,74,0.25);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}
.service-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,161,74,0.15);
}

.image-container,
.treatment-image,
.export-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img,
.treatment-image img,
.export-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.treatment-section,
.export-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-feature-card {
  background: var(--charcoal);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}
.service-feature-card:hover {
  border-color: rgba(201,161,74,0.3);
  transform: translateY(-4px);
}
.card-image-container {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}
.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Framed images: fill, centered */
.portrait-frame img,
.service-img,
.treatment-media img,
.timber-media img,
.card-image-container img,
.ispm-portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-feature-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: none;
}
.service-feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-feature-card p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.65;
}


/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--charcoal);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(201,161,74,0.25);
  transform: translateY(-4px);
}
.testimonial-quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
  flex-shrink: 0;
}
.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}
.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--muted);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
}

/* CTA section */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(201,161,74,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-inner p {
  font-size: 1.05rem;
  color: var(--text2);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 20px;
  justify-content: center;
}

.cta-trust {
  margin: 24px 0 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,161,74,0.28);
  background: rgba(201,161,74,0.08);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Forms */
.form-section {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(201,161,74,0.12);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-full { grid-column: 1 / -1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group label span.req { color: var(--gold); margin-left: 2px; }

.form-control {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
  outline: none;
  appearance: none;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus {
  border-color: rgba(201,161,74,0.5);
  background: rgba(201,161,74,0.04);
  box-shadow: 0 0 0 3px rgba(201,161,74,0.1);
}
.form-control.error {
  border-color: rgba(220,60,60,0.5);
  box-shadow: 0 0 0 3px rgba(220,60,60,0.1);
}
.form-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8a990' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
select.form-control option {
  background: #1a1610;
  color: var(--text);
}
textarea.form-control {
  resize: vertical;
  min-height: max(120px, 48px);
}

.field-error {
  font-size: 0.78rem;
  color: #e05555;
  margin-top: 4px;
  display: none;
}
.field-error.visible { display: block; }

.form-submit-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}
.form-note a { text-decoration: underline; }
.form-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.form-help {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
}
.form-privacy-note {
  font-size: 0.82rem;
  color: var(--text2);
  background: rgba(201,161,74,0.06);
  border: 1px solid rgba(201,161,74,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 24px;
}
.form-control-file {
  padding: 10px 14px;
  font-size: 0.9rem;
}
.form-control-file::-webkit-file-upload-button {
  padding: 8px 14px;
  margin-right: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.form-success.visible { display: block; }
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 12px;
}
.form-success p { color: var(--text2); }

/* Quote page layout */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.quote-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line2);
  font-size: 0.88rem;
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.sidebar-item-text { color: var(--text2); }
.sidebar-item-text strong { color: var(--text); display: block; font-size: 0.82rem; }

/* Stats bar, industries, process, certifications, section CTA */
.stats-bar {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 64px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.industries-section { background: var(--bg2); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.industry-card {
  background: var(--charcoal);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.industry-card:hover {
  border-color: rgba(201,161,74,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-bottom: 12px;
  color: var(--gold);
}

.industry-icon .icon {
  width: 24px;
  height: 24px;
}
.industry-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.55;
  margin: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.process-step {
  text-align: center;
  padding: 24px 20px;
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
}
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.55;
  margin: 0;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.cert-card {
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.cert-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.cert-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.cert-card p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.55;
  margin: 0;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.client-logos-section { background: var(--charcoal); border-top: 1px solid var(--line); }
.client-logos-placeholder {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.client-logos-note {
  font-size: 1rem;
  color: var(--text2);
  padding: 24px;
}

.cta-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Product detail: benefits list, spec table, use cases */
.product-benefits {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}
.product-benefits li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text2);
}
.product-benefits .check-item {
  padding-left: 0;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 20px 0;
}
.spec-table th,
.spec-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line2);
}
.spec-table th {
  color: var(--gold);
  font-weight: 600;
  width: 40%;
}
.spec-table td { color: var(--text2); }
.product-use-cases {
  margin-top: 16px;
  padding: 16px;
  background: var(--charcoal);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line2);
}
.product-use-cases h5 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-use-cases p, .product-use-cases ul {
  font-size: 0.88rem;
  color: var(--text2);
  margin: 0;
}
.product-use-cases ul { padding-left: 20px; margin-top: 6px; }
.product-faq {
  margin-top: 24px;
  border-top: 1px solid var(--line2);
  padding-top: 24px;
}
.product-faq h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.product-faq dl { margin: 0; }
.product-faq dt {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 14px;
  padding-bottom: 4px;
}
.product-faq dd {
  font-size: 0.88rem;
  color: var(--text2);
  margin: 0;
  padding-left: 0;
  line-height: 1.55;
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--text2);
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--charcoal);
  border: 1px solid var(--line2);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: rgba(201,161,74,0.3); }
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Contact Icon - Font Awesome */
.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  flex: 0 0 64px;
  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 22px;
  color: #d4af37;
  line-height: 1;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: #d4af37;
}

.contact-card:hover .contact-icon {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
}

.contact-card-text {
  flex: 1;
}
.contact-card-text label,
.contact-card-text .contact-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.contact-card-text a,
.contact-card-text span {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.contact-card-text a:hover { color: var(--gold); }

.map-placeholder {
  margin-top: 32px;
  height: 220px;
  background: var(--charcoal);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}
.map-placeholder span { font-size: 2rem; }

/* Page hero (inner pages) */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 60%, rgba(201,161,74,0.08) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 20px;
  justify-content: center;
}
.breadcrumb a { color: var(--gold); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold2); }
.breadcrumb-sep { color: var(--muted); }

/* Shared icon (inline SVG) */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  display: block;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 0;
  background: transparent;
}

.footer .container {
  max-width: var(--max);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px 32px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 320px;
}

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

.footer-icon-btn {
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,161,74,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.footer-icon-btn .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.footer-icon-btn:hover,
.footer-icon-btn:focus-visible {
  color: var(--text);
  background: rgba(201,161,74,0.12);
  border-color: rgba(201,161,74,0.45);
}

/* Footer phone icon (size, alignment) */
.home-section .footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.home-section .footer-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.home-section .footer-icon-btn .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a:not(.btn) {
  font-size: 0.88rem;
  color: var(--text2);
  transition: color 0.2s;
}

.footer-links a:not(.btn):hover {
  color: var(--text);
}

.footer-links .btn {
  margin-top: 12px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-ico {
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  flex: 0 0 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(201,161,74,0.1);
  border: 1px solid rgba(201,161,74,0.2);
}

.footer-contact-ico .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-contact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.footer-contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-contact-value {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.5;
}

.footer-contact-value a {
  color: var(--gold);
  transition: color 0.2s;
}

.footer-contact-value a:hover,
.footer-contact-value a:focus-visible {
  color: var(--gold2);
}

.footer-bottom {
  border-top: 1px solid var(--line2);
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

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

.footer-bottom-links a:not(.btn) {
  font-size: 0.82rem;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Footer responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
    padding-bottom: 40px;
  }
  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 48px;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 38px;
    align-items: center;
  }
  .footer-brand {
    margin: 0 auto;
    max-width: 420px;
  }
  .footer-brand-desc,
  .footer-links,
  .footer-contact-body,
  .footer-copy,
  .footer-bottom-links {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 20px 0 28px;
  }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding-top: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0 28px;
  }
  .footer-logo {
    max-width: 140px;
    width: auto;
    height: auto;
  }
  .footer-brand-name {
    font-size: 1rem;
  }
  .footer-brand-sub,
  .footer-col-title {
    font-size: 0.85rem;
  }
  .footer-links a:not(.btn),
  .footer-contact-value,
  .footer-copy,
  .footer-bottom-links a:not(.btn) {
    font-size: 0.82rem;
  }
  .footer-contact-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-contact-ico {
    margin: 0 auto;
  }
}

/* Reveal animations */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.delay-1 { transition-delay: 0.1s; }
  .reveal.delay-2 { transition-delay: 0.2s; }
  .reveal.delay-3 { transition-delay: 0.3s; }
  .reveal.delay-4 { transition-delay: 0.4s; }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-card {
    max-width: 500px;
  }
  .hero-kpis { gap: 24px; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-main {
    aspect-ratio: 4/5;
    height: clamp(320px, 90vw, 420px);
  }
  .about-img-accent { display: none; }
  .service-hero-card-inner {
    grid-template-columns: 1fr;
  }
  .service-img {
    width: 100%;
    max-width: 100%;
  }
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .quote-sidebar { position: static; }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Readable body text on mobile */
  body { font-size: 1rem; line-height: 1.7; }
  section p, .hero-lead, .form-section p { line-height: 1.7; font-size: clamp(0.95rem, 2vw, 1rem); }

  .image-container,
  .treatment-image,
  .export-image {
    aspect-ratio: 3 / 4;
    max-width: 100%;
  }

  /* Header – stable single row, sticky, above hero */
  .header {
    position: sticky;
    top: 0;
    z-index: 999;
    height: 70px;
    min-height: 70px;
    background: rgba(13, 11, 8, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 18px;
    min-height: 70px;
  }
  .brand {
    min-width: 0;
    flex: 1;
  }
  .brand-logo {
    max-height: 45px;
    width: auto;
  }
  .brand-text { min-width: 0; }
  .brand-name {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.02em;
  }
  .brand-sub { display: none; }

  /* Hamburger – always visible, not squeezed */
  .menu-btn {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-btn span { background: var(--text); }

  /* Mobile menu overlay – hidden by default */
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    padding: 34px 18px 24px;
    background: #0d0b08;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.25s ease, opacity 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    overflow-y: auto;
    z-index: 998;
    opacity: 0;
  }
  body.mobile-menu-active .nav-links {
    transform: translateX(0);
    opacity: 1;
  }
  body.mobile-menu-active .menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.mobile-menu-active .menu-btn span:nth-child(2) {
    opacity: 0;
  }
  body.mobile-menu-active .menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(420px, 100%);
    padding: 12px 18px;
    font-size: 1rem;
    line-height: 1.4;
  }
  .nav-links .nav-cta { margin: 0; }
  .nav-links .btn {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(420px, 100%);
    font-size: 0.95rem;
  }

  /* Touch targets – mobile */
  .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-icon-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Hero – starts below sticky header */
  .hero { padding-top: 92px; }
  .hero-inner { padding: 0 20px; }
  .hero-title {
    font-size: clamp(2rem, 6vw, 2.4rem);
    line-height: 1.2;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }
  .hero-logo-overlay { display: none; }
  .hero-overlay { opacity: 0.75; }

  /* Trust badges – 2x2 on normal mobile */
  .hero-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 40px;
  }
  .hero-tag { min-width: 0; }
  .hero-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }

  /* Features strip – 2 cols tablet, horizontal padding */
  .features-strip { padding-left: 20px; padding-right: 20px; }
  .features-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--line2);
    justify-content: flex-start;
    gap: 14px;
    padding: 16px 20px;
    min-height: 48px;
  }
  .feature-item:nth-child(odd) { border-right: 1px solid var(--line2); }
  .feature-item:last-child { border-bottom: none; }
  .feature-icon { width: 28px; height: 28px; min-width: 28px; }
  .feature-icon svg { width: 24px; height: 24px; }
  .feature-text strong { font-size: 0.85rem; }
  .feature-text span { font-size: 0.75rem; }

  /* Products – 2 cols tablet */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Industries grid – 2 cols */
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Forms – single column, spacing, full-width submit */
  .form-section { padding: 28px 24px; }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-full { grid-column: 1; }
  .form-group { gap: 10px; }
  .form-submit-row .btn { width: 100%; }

  /* Service */
  .service-hero-card { padding: 32px 24px; }

  /* Page hero (inner pages) */
  .page-hero { padding-top: 96px; padding-bottom: 48px; }

  /* About stats – 2x2 */
  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.1rem, 8vw, 2.4rem); line-height: 1.15; }
  .hero-kpis { grid-template-columns: 1fr 1fr; gap: 12px 16px; }
  .hero-tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-stats { grid-template-columns: 1fr; }
  .service-badge-group { flex-direction: column; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit-row .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .cta-trust { justify-content: center; }
  .cta-trust-item { width: 100%; justify-content: center; }

  /* Single column grids */
  .features-strip { padding-left: 16px; padding-right: 16px; }
  .features-strip-inner { grid-template-columns: 1fr; }
  .feature-item:nth-child(odd) { border-right: none; }
  .products-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }

  .brand-sub { display: none; }

  .header {
    height: 64px;
    min-height: 64px;
  }
  .nav {
    padding: 8px 14px;
    min-height: 64px;
  }
  .brand-logo {
    max-height: 38px;
  }
  .nav-links {
    top: 64px;
    height: calc(100vh - 64px);
    padding: 30px 16px 22px;
    gap: 18px;
  }
  .nav-links a {
    font-size: 0.95rem;
  }
  .btn-lg,
  .nav-links .btn {
    min-height: 48px;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .nav {
    gap: 10px;
    padding: 8px 12px;
  }
  .brand-logo {
    max-height: 34px;
  }
  .brand-name {
    font-size: 0.95rem;
  }
  .nav-links {
    padding: 26px 14px 20px;
    gap: 16px;
  }
  .nav-links a {
    font-size: 0.92rem;
  }
  .footer {
    padding: 32px 14px 18px;
  }
  .footer-grid {
    gap: 20px;
  }
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d0b08;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border: 1px solid rgba(201,161,74,0.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 16px rgba(201,161,74,0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 10000;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 36px rgba(0,0,0,0.52), 0 0 20px rgba(201,161,74,0.38);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(201,161,74,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,161,74,0.5); }

/* Selection */
::selection { background: rgba(201,161,74,0.25); color: var(--text); }

/* Misc */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 40px 0;
  opacity: 0.3;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--line2);
  border-radius: 99px;
  font-size: 0.78rem;
  color: var(--text2);
  font-weight: 500;
}

.highlight-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line2);
  font-size: 0.88rem;
  color: var(--text2);
}
.highlight-row:last-child { border-bottom: none; }
.highlight-row-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

.ispm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(201,161,74,0.12), rgba(201,161,74,0.06));
  border: 1px solid rgba(201,161,74,0.3);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Pallet image fallback */
.product-icon-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: radial-gradient(circle at center, rgba(201,161,74,0.08) 0%, transparent 70%);
  color: var(--gold);
  opacity: 0.6;
}

/* Portrait image container */
.portrait-image-container {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.portrait-image-container:hover img {
  transform: scale(1.05);
}

.services-image-wrapper .portrait-image-container {
  max-width: 420px;
}

/* ISPM-15 Portrait Image */
.ispm-portrait-wrapper {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ispm-portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.ispm-portrait-wrapper:hover .ispm-portrait-image {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .portrait-image-container {
    max-width: 100%;
    aspect-ratio: 4 / 5;
  }
  .ispm-portrait-wrapper {
    max-width: 100%;
    aspect-ratio: 4 / 5;
  }
}

/* Location map & address */
.location-container {
  width: 100%;
  padding: 0;
}

.location-map-wrap {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  margin-top: 18px;
}

.location-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.location-address {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #c9a96e;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .location-map-wrap {
    height: 260px;
  }
  html, body {
    background-attachment: scroll;
  }
}

@media (max-width: 768px){

  .brand-logo{
    width: 46px;
    height: 46px;
  }

  .brand-name{
    font-size: 1.15rem;
  }

  .brand-sub{
    font-size: 0.68rem;
  }

}

/* Premium pinch card effect */
.pinch-card,
.card,
.service-card,
.feature-card,
.stat-card,
.testimonial-card,
[class*="card"]:not(.product-card) {
  transform: translateZ(0);
  will-change: transform, box-shadow;
  transition:
    transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 220ms ease;
}

.pinch-card:focus-visible,
.card:focus-visible,
.service-card:focus-visible,
.feature-card:focus-visible,
.stat-card:focus-visible,
.testimonial-card:focus-visible,
[class*="card"]:not(.product-card):focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.85);
  outline-offset: 3px;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.46),
    0 0 0 3px rgba(212, 175, 55, 0.18);
}

@media (hover: hover) {
  .pinch-card:hover,
  .card:hover,
  .service-card:hover,
  .feature-card:hover,
  .stat-card:hover,
  .testimonial-card:hover,
  [class*="card"]:not(.product-card):hover {
    transform: translateY(-2px) scale(0.992) rotate(-0.2deg);
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.5),
      0 0 18px rgba(212, 175, 55, 0.12);
  }
}

.pinch-card:active,
.card:active,
.service-card:active,
.feature-card:active,
.stat-card:active,
.testimonial-card:active,
[class*="card"]:not(.product-card):active {
  transform: translateY(0) scale(0.985);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.42),
    0 0 12px rgba(212, 175, 55, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .pinch-card,
  .card,
  .service-card,
  .feature-card,
  .stat-card,
  .testimonial-card,
  [class*="card"] {
    transition: none;
  }

  .pinch-card:hover,
  .card:hover,
  .service-card:hover,
  .feature-card:hover,
  .stat-card:hover,
  .testimonial-card:hover,
  [class*="card"]:hover,
  .pinch-card:active,
  .card:active,
  .service-card:active,
  .feature-card:active,
  .stat-card:active,
  .testimonial-card:active,
  [class*="card"]:active,
  .product-card[data-href]:hover,
  .product-card[data-href]:active {
    transform: none;
  }
}

/* Services highlight image ratio */
#services-highlight .service-hero-card-inner.capabilities .media.portrait-frame {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 4 / 5;
}

#services-highlight .service-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  #services-highlight .service-hero-card-inner.capabilities .media.portrait-frame,
  #services-highlight .service-img {
    max-width: 100%;
    aspect-ratio: 3 / 4;
  }
}

/* Treatment + timber cards */
.treatment-card,
.timber-card {
  transform: none !important;
  filter: none !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.36),
    0 6px 18px rgba(0, 0, 0, 0.24),
    0 0 16px rgba(212, 175, 55, 0.08) !important;
}

@media (hover: hover) {
  .treatment-card:hover,
  .timber-card:hover {
    transform: none !important;
    filter: none !important;
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.4),
      0 8px 20px rgba(0, 0, 0, 0.26),
      0 0 18px rgba(212, 175, 55, 0.1) !important;
  }
}

.treatment-media,
.timber-media {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(212, 175, 55, 0.1);
  justify-self: center;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  transition:
    transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.treatment-media img,
.timber-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (hover: hover) {
  .treatment-media:hover,
  .timber-media:hover {
    transform: translateY(-2px) scale(0.992);
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.5),
      0 0 18px rgba(212, 175, 55, 0.12);
  }
}

.treatment-media:active,
.timber-media:active {
  transform: translateY(0) scale(0.985);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.42),
    0 0 12px rgba(212, 175, 55, 0.1);
}

@media (max-width: 900px) {
  .treatment-media,
  .timber-media {
    max-width: 100%;
    aspect-ratio: 3 / 4;
  }
}

/* Global card pinch timing */
.card,
.service-card,
.feature-card,
.stat-card,
.testimonial-card,
.service-feature-card,
.service-hero-card,
.about-stat,
.treatment-card,
.timber-card,
[class*="card"]:not(.product-card) {
  transition:
    transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 220ms ease !important;
}
@media (hover: hover) {
  .card:hover,
  .service-card:hover,
  .feature-card:hover,
  .stat-card:hover,
  .testimonial-card:hover,
  .service-feature-card:hover,
  .service-hero-card:hover,
  .about-stat:hover,
  .treatment-card:hover,
  .timber-card:hover,
  [class*="card"]:not(.product-card):hover {
    transform: translateY(-2px) scale(0.992) !important;
  }
}

.card:active,
.service-card:active,
.feature-card:active,
.stat-card:active,
.testimonial-card:active,
.service-feature-card:active,
.service-hero-card:active,
.about-stat:active,
.treatment-card:active,
.timber-card:active,
[class*="card"]:not(.product-card):active {
  transform: translateY(0) scale(0.985) !important;
}

.product-card.pinch-press {
  transform: translateY(0) scale(0.985) !important;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.42),
    0 0 12px rgba(212, 175, 55, 0.1) !important;
}

.ispm-media{
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.25);
}
.ispm-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* About snapshot image ratio */
#about-snapshot .media.portrait-frame,
#about-snapshot .about-images {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 4 / 5;
}

#about-snapshot .about-img-main {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  #about-snapshot .media.portrait-frame,
  #about-snapshot .about-images,
  #about-snapshot .about-img-main {
    max-width: 100%;
    aspect-ratio: 3 / 4;
  }
}

/* Two-column portrait helpers */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.two-col .content {
  max-width: 520px;
}

/* Portrait image frame sizing */
.portrait-frame {
  width: min(440px, 100%);
  aspect-ratio: 3 / 4;
  height: auto;
  max-height: 560px;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: 0;
  align-self: start;
  box-shadow:
    0 28px 72px rgba(0,0,0,0.42),
    0 0 24px rgba(212,175,55,0.10);
  justify-self: center;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(201,161,74,0.45);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Our values – landscape image ratio (6 cards) */
.service-features .service-feature-card .card-image-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 20px;
}
.service-features .service-feature-card .card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

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

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

  .two-col .media {
    order: 1;
    width: 100%;
    justify-self: center;
  }

  .two-col .content {
    order: 2;
    max-width: 520px;
    margin: 0 auto;
  }

  .portrait-frame {
    width: min(520px, 100%);
    margin: 18px auto 0;
  }
}

/* Image card fit + unified pinch shadow */
.card-image-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  border-radius: 12px;
}

.card-image-container img,
.service-img,
.portrait-frame img,
.treatment-media img,
.timber-media img,
.ispm-portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-feature-card,
.service-hero-card {
  transform: translateZ(0);
  will-change: transform, box-shadow;
  transition:
    transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 220ms ease;
}

@media (hover: hover) {
  .service-feature-card:hover,
  .service-hero-card:hover {
    transform: translateY(-2px) scale(0.992);
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.5),
      0 0 18px rgba(212, 175, 55, 0.12);
  }
}

.service-feature-card:active,
.service-hero-card:active {
  transform: translateY(0) scale(0.985);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.42),
    0 0 12px rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
  .product-card-image,
  .product-card-img,
  .product-image {
    aspect-ratio: 4 / 3;
  }
}

/* About image fit + pinch */
.about-grid .about-images,
.two-col.about .about-images {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow:
    0 28px 72px rgba(0,0,0,0.42),
    0 0 24px rgba(212,175,55,0.10);
  justify-self: center;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  transition:
    transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ISPM media column; frame controls size */
.about-grid .about-images:has(.portrait-frame) {
  width: fit-content;
  max-width: 100%;
  align-self: start;
  aspect-ratio: unset;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.about-grid .about-images::after,
.two-col.about .about-images::after {
  display: none;
}

.about-grid .about-img-main,
.two-col.about .about-img-main {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
  display: block;
}

@media (hover: hover) {
  .about-grid .about-images:hover,
  .two-col.about .about-images:hover {
    transform: translateY(-2px) scale(0.992);
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.5),
      0 0 18px rgba(212, 175, 55, 0.12);
  }
}

.about-grid .about-images:active,
.two-col.about .about-images:active {
  transform: translateY(0) scale(0.985);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.42),
    0 0 12px rgba(212, 175, 55, 0.1);
}

@media (max-width: 900px) {
  .about-grid .about-images,
  .two-col.about .about-images {
    max-width: 100%;
    aspect-ratio: 3 / 4;
  }
  .about-grid .about-images:has(.portrait-frame) {
    aspect-ratio: unset;
  }
}

/* Service image match (ratio + pinch) */
#services-highlight .service-hero-card-inner.capabilities .media.portrait-frame,
#services-highlight .service-hero-card-inner.capabilities .treatment-media {
  width: min(420px, 100%);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  align-self: center;
  justify-self: center;
  box-shadow:
    0 28px 72px rgba(0,0,0,0.42),
    0 0 24px rgba(212,175,55,0.10);
  transform: translateZ(0);
  will-change: transform, box-shadow;
  transition:
    transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
#services-highlight .service-hero-card-inner.capabilities .media.portrait-frame::after,
#services-highlight .service-hero-card-inner.capabilities .treatment-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(201,161,74,0.45);
  pointer-events: none;
}
#services-highlight .service-hero-card-inner.capabilities .media.portrait-frame .service-img,
#services-highlight .service-hero-card-inner.capabilities .treatment-media .service-img,
#services-highlight .service-hero-card-inner.capabilities .media.portrait-frame img,
#services-highlight .service-hero-card-inner.capabilities .treatment-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}

@media (hover: hover) {
  #services-highlight .service-hero-card:hover {
    transform: none;
  }

  #services-highlight .service-hero-card-inner.capabilities .media.portrait-frame:hover,
  #services-highlight .service-hero-card-inner.capabilities .treatment-media:hover {
    transform: translateY(-2px) scale(0.992);
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.5),
      0 0 18px rgba(212, 175, 55, 0.12);
  }
}

#services-highlight .service-hero-card-inner.capabilities .media.portrait-frame:active,
#services-highlight .service-hero-card-inner.capabilities .treatment-media:active {
  transform: translateY(0) scale(0.985);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.42),
    0 0 12px rgba(212, 175, 55, 0.1);
}

@media (max-width: 900px) {
  #services-highlight .service-hero-card-inner.capabilities .media.portrait-frame,
  #services-highlight .service-hero-card-inner.capabilities .treatment-media {
    width: min(520px, 100%);
    margin: 16px auto 0;
  }
}

/* Quote/contact submit button text glow */
.btn-text-glow {
  position: relative;
  z-index: 1;
  transition: color 220ms ease, text-shadow 220ms ease;
}
.btn-text-glow:hover,
.btn-text-glow:focus-visible {
  color: #ffffff !important;
  text-shadow:
    0 0 10px rgba(255,255,255,0.65),
    0 0 24px rgba(201,161,74,0.95) !important;
}

/* Alignment & spacing (site-wide) */
.section-title,
h2 {
  margin: 0 0 14px;
}
p {
  margin: 0 0 14px;
  line-height: 1.65;
}
p:last-child { margin-bottom: 0; }
.card,
.feature-card,
.info-card,
.service-card,
.service-feature-card {
  padding: 26px;
}
.icon-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.icon-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  column-gap: 14px;
}
.icon-list .check-icon,
.icon-list .tick-icon,
.icon-list svg,
.icon-list img.icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}


/* Checklist/badge alignment, no-split text, mobile safety */

/* Checklist/badge grid */
.hero-tags,
.cta-trust,
.service-badge-group {
  display: grid;
  gap: 12px;
}


@media (min-width: 481px) and (max-width: 768px) {
  .hero-tags.is-2col,
  .cta-trust.is-2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Checklist item: icon + text, tap-friendly */
.check-item,
.cta-trust-item,
.service-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 48px;
}

.check-item svg,
.cta-trust-item svg,
.service-badge svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

/* Prevent phone/number splitting */
a[href^="tel:"],
.footer-contact-value,
.cta-phone a,
.footer-contact-value a {
  white-space: nowrap;
}

.footer-contact-value {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-contact-value a {
  display: inline-flex;
  align-items: center;
}

html,
body {
  overflow-x: hidden;
}

/* CTA phone line alignment */
.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.cta-phone span {
  color: var(--gold);
  font-weight: 500;
}

.cta-phone a {
  white-space: nowrap;
}

/* Header logo alignment */
.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  position: relative;
  top: -2px;
}

/* Utility classes */
.util-mt-12 { margin-top: 12px; }
.util-mt-28 { margin-top: 28px; }
.util-mt-32 { margin-top: 32px; }
.util-mt-24 { margin-top: 24px; }
.util-mt-36 { margin-top: 36px; }
.text-muted { color: var(--muted); }
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 16px; }
.form-grid-spacing { margin-bottom: 28px; }
.tel-link { color: var(--gold); font-weight: 600; }

/* Mobile overrides (≤768px) */
@media (max-width: 768px) {
  .brand-name {
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-logo {
    display: block !important;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .hero-tags,
  .cta-trust,
  .service-badge-group {
    grid-template-columns: 1fr;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cta-phone {
    font-size: 14px;
  }
  .hero {
    margin-top: 0 !important;
    padding-top: 70px !important;
  }
  body {
    margin: 0;
  }
  .header {
    margin-bottom: 0;
  }
}

/* Image performance: keeps images responsive and prevents layout overflow */
img {
  max-width: 100%;
  height: auto;
}
