/* ============================================================
   CASCADE HOME SERVICES — styles.css
   Design: Dark Industrial / Craftsman
   Built by Pro Media Management | promediamgmt.com
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700;900&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --black:        #111111;
  --surface:      #1a1a1a;
  --surface-2:    #222222;
  --surface-3:    #2a2a2a;
  --border:       #333333;
  --border-light: #3d3d3d;
  --amber:        #d4760a;
  --amber-light:  #e8891a;
  --amber-dark:   #b56208;
  --amber-dim:    rgba(212, 118, 10, 0.12);
  --amber-glow:   rgba(212, 118, 10, 0.25);
  --white:        #f5f0eb;
  --white-dim:    rgba(245, 240, 235, 0.7);
  --white-muted:  rgba(245, 240, 235, 0.4);
  --white-faint:  rgba(245, 240, 235, 0.08);
  --sidebar-w:    260px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --radius:       3px;
  --transition:   0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--surface);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  /* Subtle grain texture via SVG */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

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

a {
  color: var(--amber);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--amber-light);
}

ul {
  list-style: none;
}

/* ── Layout: Sidebar + Content ────────────────────────────── */
.site-wrapper {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
}

/* ── Sidebar Navigation ───────────────────────────────────── */
.site-sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background-color: var(--black);
  border-right: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}

.sidebar-logo {
  padding: 36px 28px 32px;
  border-bottom: 1px solid var(--border);
}

.sidebar-logo a {
  display: block;
  color: var(--white);
}

.sidebar-logo svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.sidebar-nav {
  padding: 32px 0;
  flex: 1;
}

.sidebar-nav ul {
  display: flex;
  flex-direction: column;
}

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 28px;
  color: var(--white-dim);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-left: 3px solid transparent;
  transition: all var(--transition);
  position: relative;
}

.sidebar-nav li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--amber-dim);
  transition: width var(--transition);
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  color: var(--white);
  border-left-color: var(--amber);
  background: var(--amber-dim);
}

.sidebar-nav li a:hover::before,
.sidebar-nav li a.active::before {
  width: 100%;
}

.sidebar-nav li a .nav-icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.sidebar-nav li a:hover .nav-icon,
.sidebar-nav li a.active .nav-icon {
  opacity: 1;
}

.sidebar-cta {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
}

.sidebar-cta a {
  display: block;
  background: var(--amber);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.sidebar-cta a:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

.sidebar-phone {
  padding: 16px 28px 28px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--white-muted);
  text-transform: uppercase;
  text-align: center;
}

.sidebar-phone a {
  color: var(--white-dim);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.sidebar-phone a:hover {
  color: var(--amber);
}

/* ── Mobile Hamburger ─────────────────────────────────────── */
.hamburger {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  background: var(--black);
  border: 1px solid var(--border);
  padding: 10px 12px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.visible {
  opacity: 1;
}

/* ── Main Content Area ────────────────────────────────────── */
.site-content {
  grid-column: 2;
  min-width: 0;
}

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  overflow: hidden;
  background-color: var(--black);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.4) 60%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--amber);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 540px;
  line-height: 1.65;
}

/* ── Section Base ─────────────────────────────────────────── */
section {
  padding: 80px 60px;
}

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

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

section.surface-2 {
  background-color: var(--surface-2);
}

/* ── Section Labels ───────────────────────────────────────── */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── Rule Divider ─────────────────────────────────────────── */
.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--amber-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--amber-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--amber);
  padding: 0;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.15em;
}

.btn-ghost::after {
  content: '→';
  transition: transform var(--transition);
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

.btn-ghost:hover {
  color: var(--amber-light);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Stat Counters ────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 48px 0;
}

.stat-item {
  flex: 1;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 6px;
}

/* ── Service Cards (Numbered) ─────────────────────────────── */
.services-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
}

.service-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block:hover {
  background: var(--white-faint);
}

.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  padding: 32px 0 32px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
}

.service-body {
  padding: 32px 36px;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.service-body p {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.65;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border-light);
  color: var(--white-muted);
  border-radius: 2px;
}

/* ── Two-col Layout ───────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col.align-center {
  align-items: center;
}

/* ── Image Block ──────────────────────────────────────────── */
.img-block {
  position: relative;
}

.img-block img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.img-block-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--amber);
  z-index: -1;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-block {
  border-left: 3px solid var(--amber);
  padding: 24px 32px;
  margin-bottom: 32px;
  background: var(--white-faint);
}

.testimonial-block:last-child {
  margin-bottom: 0;
}

.testimonial-quote {
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.6;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
  font-style: normal;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-stars {
  color: var(--amber);
  font-size: 13px;
  letter-spacing: 2px;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.testimonial-location {
  font-size: 12px;
  color: var(--white-muted);
}

/* ── Gallery Grid ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--surface-3);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.85) saturate(0.9);
}

.gallery-item.tall img {
  height: 100%;
  min-height: 563px;
}

.gallery-item.wide img {
  height: 280px;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-item-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 18px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-dim);
}

.form-group select {
  cursor: pointer;
  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='%23d4760a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group select option {
  background: var(--black);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-muted);
}

/* ── Contact Info Block ───────────────────────────────────── */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  color: var(--white);
  line-height: 1.5;
}

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

.contact-info-value a:hover {
  color: var(--amber);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--amber);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.01em;
}

.cta-banner-text p {
  font-size: 16px;
  color: rgba(17,17,17,0.7);
  margin-top: 10px;
  font-weight: 400;
}

.cta-banner .btn-dark {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: all var(--transition);
  display: inline-block;
}

.cta-banner .btn-dark:hover {
  background: var(--surface-3);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Service Area Tags ────────────────────────────────────── */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.area-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border);
  color: var(--white-dim);
}

/* ── Trust Badges ─────────────────────────────────────────── */
.trust-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  padding: 28px 60px;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.trust-item svg {
  color: var(--amber);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── About Page ───────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.value-item {
  background: var(--black);
  padding: 36px;
  border-left: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.value-item:hover {
  border-left-color: var(--amber);
  background: var(--surface-2);
}

.value-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.65;
}

/* ── Thank You Page ───────────────────────────────────────── */
.thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 80px 60px;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--amber);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  margin-left: var(--sidebar-w);
  background: var(--black);
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding: 60px 60px 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 280px;
}

.footer-brand svg {
  width: 180px;
  height: auto;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--white-dim);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--amber);
}

.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.8;
}

.footer-col address a {
  color: var(--white-dim);
}

.footer-col address a:hover {
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--white-muted);
}

.footer-pmm {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--white-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-pmm:hover {
  color: var(--amber);
}

.footer-pmm img {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  transition: opacity var(--transition);
  display: inline-block;
}

.footer-pmm:hover img {
  opacity: 1;
}

/* ── Utility ──────────────────────────────────────────────── */
.text-amber { color: var(--amber); }
.text-muted { color: var(--white-muted); }
.text-dim   { color: var(--white-dim); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --sidebar-w: 220px;
  }

  section {
    padding: 60px 40px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 48px 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .site-wrapper {
    grid-template-columns: 1fr;
  }

  .site-content {
    grid-column: 1;
    padding-top: 64px;
  }

  .site-footer {
    margin-left: 0;
  }

  .site-sidebar {
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 280px;
  }

  .site-sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 40px rgba(0,0,0,0.6);
  }

  .mobile-overlay {
    display: block;
  }

  .page-hero {
    padding: 40px 24px;
    min-height: 260px;
  }

  section {
    padding: 48px 24px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 calc(50% - 1px);
  }

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

  .gallery-grid .tall,
  .gallery-grid .wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .gallery-item img,
  .gallery-item.tall img,
  .gallery-item.wide img {
    height: 220px;
    min-height: unset;
  }

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

  .trust-row {
    padding: 24px;
    gap: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
    gap: 12px;
  }

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

  .img-block-accent {
    display: none;
  }
}