/* ===========================
   LOS ANGELES RENDERING — DESIGN SYSTEM
   Premium, cinematic, modern B2B
   =========================== */

/* ===== VARIABLES ===== */
:root {
  --ink:        #0D1117;
  --ink-soft:   #1C2231;
  --navy:       #14304F;
  --navy-mid:   #235278;
  --amber:      #C08B3F;
  --amber-warm: #D4A55A;
  --amber-pale: #FBF5EA;
  --slate:      #52616F;
  --muted:      #8A8F96;
  --border:     #E4E2DE;
  --paper:      #FAFAF8;
  --white:      #FFFFFF;
  --section-bg: #F5F4F1;

  --shadow-sm:  0 1px 3px rgba(13,17,23,.07), 0 4px 12px rgba(13,17,23,.05);
  --shadow-md:  0 4px 8px rgba(13,17,23,.07), 0 16px 40px rgba(13,17,23,.10);
  --shadow-lg:  0 8px 16px rgba(13,17,23,.09), 0 32px 64px rgba(13,17,23,.14);

  --radius:     8px;
  --radius-sm:  5px;
  --radius-lg:  16px;
}

/* ===== SKIP NAVIGATION ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.625rem, 5.5vw, 4.625rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.04em; color: var(--ink); text-wrap: balance; }
h2 { font-size: clamp(1.875rem, 3.75vw, 3.125rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); text-wrap: balance; }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 700; line-height: 1.3; color: var(--ink); }
h4 { font-size: 1.0625rem; font-weight: 600; color: var(--ink); }
p  { color: var(--slate); line-height: 1.75; }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5.5rem 0; }

/* ===== OVERLINE LABEL ===== */
.overline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem;
}
.overline::before {
  content: ''; display: block; width: 6px; height: 6px;
  background: var(--amber); border-radius: 50%; flex-shrink: 0;
}

/* ===== SECTION HEADER ===== */
.sec-head { margin-bottom: 3.5rem; }
.sec-head.center { text-align: center; }
.sec-head.center .overline { justify-content: center; }
.sec-head h2 { margin-bottom: 0.875rem; }
.sec-head p { font-size: 1.0625rem; color: var(--muted); max-width: 560px; line-height: 1.7; }
.sec-head.center p { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.875rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9375rem; letter-spacing: 0.01em;
  transition: all 0.2s ease; cursor: pointer;
  border: 1.5px solid transparent; font-family: inherit;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--amber); color: #fff; border-color: var(--amber);
  box-shadow: 0 2px 8px rgba(192,139,63,.28);
}
.btn-primary:hover {
  background: #A5742F; border-color: #A5742F;
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,139,63,.35);
}
.btn-secondary {
  background: rgba(255,255,255,.1); color: #fff;
  border-color: rgba(255,255,255,.3); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: var(--amber); border-color: transparent; padding-left: 0; }
.btn-ghost:hover { color: #A5742F; gap: 0.75rem; }
.btn-white { background: #fff; color: var(--amber); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-lg { padding: 1.0625rem 2.25rem; font-size: 1rem; }
.btn svg { flex-shrink: 0; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0; transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(8, 14, 26, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar.solid { background: var(--ink); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.625rem; }
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 6px;
  background: var(--amber); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0; letter-spacing: -0.04em;
}
.nav-logo-text { font-size: 1.0625rem; font-weight: 700; color: #fff; line-height: 1.2; }
.nav-logo-text span { display: block; font-size: 0.65rem; font-weight: 500; color: rgba(255,255,255,.5); letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.875rem; color: rgba(255,255,255,.75);
  font-size: 0.9rem; font-weight: 500; border-radius: 5px;
  transition: all 0.15s; letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone { color: rgba(255,255,255,.6); font-size: 0.875rem; font-weight: 500; transition: color 0.15s; }
.nav-phone:hover { color: var(--amber); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--ink); z-index: 1001;
  flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 1.375rem; font-weight: 600; }
.mobile-menu a:hover { color: var(--amber); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 1.75rem; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--ink); overflow: hidden;
}
/* Grid + ambient amber glow */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 55% 60% at 78% 45%, rgba(192,139,63,.09) 0%, transparent 65%),
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 100% 100%, 56px 56px, 56px 56px;
}
/* Background render image */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center right;
  opacity: 0.13;
  mask-image: linear-gradient(to left, black 0%, rgba(0,0,0,0.6) 50%, transparent 80%);
  -webkit-mask-image: linear-gradient(to left, black 0%, rgba(0,0,0,0.6) 50%, transparent 80%);
}
/* Amber left accent */
.hero-accent {
  position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--amber) 0%, rgba(192,139,63,0) 100%);
}
/* Bottom fade */
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(to top, var(--ink) 0%, transparent 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: 6.5rem 0 5rem; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 2rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--amber); }
.hero h1 { color: #fff; max-width: 800px; margin-bottom: 1.625rem; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-sub {
  font-size: 1.125rem; color: rgba(255,255,255,.62);
  max-width: 560px; margin-bottom: 2.75rem; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 5rem; }

/* Hero stats */
.hero-stats { display: flex; flex-wrap: wrap; gap: 0 3rem; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.1); align-self: stretch; }
.h-stat-val {
  font-size: 2.25rem; font-weight: 800; color: #fff; letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 0.3rem;
}
.h-stat-val em { color: var(--amber); font-style: normal; }
.h-stat-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 1rem 0;
}
.trust-items { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: center; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,.7); font-size: 0.8125rem; font-weight: 500; }
.trust-item svg { color: var(--amber); flex-shrink: 0; }

/* ===== SERVICE CARDS ===== */
.services-bg { background: var(--section-bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.services-grid-2 { grid-template-columns: repeat(2, 1fr); }
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }
.svc-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.875rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative; overflow: hidden;
}
.svc-card--img { padding: 0; display: flex; flex-direction: column; }
.svc-card-img { overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; height: 200px; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.svc-card--img:hover .svc-card-img img { transform: scale(1.04); }
.svc-card-body { padding: 1.75rem 1.625rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.svc-card-body .svc-link { margin-top: auto; padding-top: 1rem; }
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-warm));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 48px; height: 48px; border-radius: 22%;
  background: var(--amber-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.svc-icon svg { color: var(--amber); }
.svc-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.svc-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0; }
.svc-link { display: inline-flex; align-items: center; gap: 0.375rem; color: var(--amber); font-size: 0.875rem; font-weight: 600; transition: gap 0.2s; }
.svc-link:hover { gap: 0.625rem; }

/* ===== PORTFOLIO / GALLERY ===== */
.gallery-section { background: var(--ink); }
.gallery-section .sec-head h2 { color: #fff; }
.gallery-section .sec-head p { color: rgba(255,255,255,.55); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}
.pf-item {
  display: block; border-radius: var(--radius); overflow: hidden;
  position: relative; background: var(--navy); cursor: pointer;
  height: 100%;
}
.pf-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.pf-item:hover img { transform: scale(1.06); }
.pf-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,18,32,.88) 0%, rgba(11,18,32,.2) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.375rem;
  opacity: 0; transition: opacity 0.3s;
}
.pf-item:hover .pf-overlay { opacity: 1; }
.pf-cat { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.25rem; }
.pf-title { color: #fff; font-size: 1rem; font-weight: 700; }

/* ===== PROCESS ===== */
.process-section { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber) 20%, var(--amber) 80%, transparent);
  opacity: 0.3;
}
.step { text-align: center; padding: 0.5rem; }
.step-num {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; font-weight: 800; margin: 0 auto 1.25rem;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px rgba(27,58,92,.2);
  letter-spacing: -0.02em;
}
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; }

/* ===== WHY US ===== */
.why-section {
  background: var(--ink);
  background-image: radial-gradient(ellipse 90% 50% at 50% 110%, rgba(192,139,63,.08) 0%, transparent 70%);
}
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 4rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon {
  width: 40px; height: 40px; border-radius: 22%;
  background: rgba(192,139,63,.12); border: 1px solid rgba(192,139,63,.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.why-icon svg { color: var(--amber); }
.why-item h3 { color: #fff; font-size: 1rem; margin-bottom: 0.375rem; font-weight: 700; }
.why-item p { font-size: 0.875rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testi-section { background: var(--section-bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* Homepage testimonials: 3 equal columns with accent on first */
.has-hero .testi-grid {
  grid-template-columns: repeat(3, 1fr);
}
.has-hero .testi-card:first-child {
  border-left: 3px solid var(--amber);
  padding-left: 1.75rem;
}
.has-hero .testi-card:first-child .testi-text { font-size: 1.0625rem; line-height: 1.8; }
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-size: 5rem; line-height: 1; color: var(--amber-pale);
  font-family: Georgia, serif; font-weight: 700;
  pointer-events: none; user-select: none;
}
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars svg { width: 15px; height: 15px; color: var(--amber-warm); fill: var(--amber-warm); }
.testi-text { font-size: 0.9375rem; color: var(--slate); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.author-init {
  width: 40px; height: 40px; border-radius: 22%;
  background: var(--navy); color: #fff; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.9375rem; flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--ink); font-size: 0.9375rem; }
.author-role { font-size: 0.8125rem; color: var(--muted); margin-top: 0.1rem; }
.trustpilot-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--muted); margin-top: 0.5rem;
}
.trustpilot-tag span { color: #00B67A; font-weight: 600; }

/* ===== LEAD MAGNET / CTA BOX ===== */
.lm-section { background: var(--navy); }
.lm-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.lm-section h2 { color: #fff; margin-bottom: 1rem; }
.lm-section .lm-text { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.lm-features { display: flex; flex-direction: column; gap: 0.625rem; }
.lm-feat { display: flex; align-items: center; gap: 0.625rem; color: rgba(255,255,255,.75); font-size: 0.9375rem; }
.lm-feat svg { color: var(--amber); flex-shrink: 0; }

/* ===== FORMS ===== */
.form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.form-box h3 { font-size: 1.25rem; margin-bottom: 0.375rem; }
.form-box > p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.125rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 0.375rem; text-transform: uppercase; letter-spacing: 0.06em; }
label .req { color: #E53E3E; margin-left: 2px; }
input, select, textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9375rem; color: var(--ink-soft); background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s; font-family: inherit;
  appearance: none; -webkit-appearance: none;
}
input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; cursor: pointer;
  appearance: auto; -webkit-appearance: auto; padding: 0;
  accent-color: var(--navy);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,92,.1);
}
input.has-error, select.has-error, textarea.has-error { border-color: #E53E3E; }
.field-error { color: #E53E3E; font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.field-error.show { display: block; }
textarea { resize: vertical; min-height: 100px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234B6480' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-btn {
  width: 100%; padding: 1rem; background: var(--amber); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
  box-shadow: 0 2px 8px rgba(192,139,63,.28);
}
.form-btn:hover { background: #A5742F; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,139,63,.35); }
.form-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 0.375rem; }
.form-wrapper { position: relative; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.show { display: block; }
.success-ring { width: 56px; height: 56px; border-radius: 50%; background: #DCFCE7; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.success-ring svg { color: #16A34A; }
.checkbox-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.125rem; }
.checkbox-row label { font-size: 0.875rem; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--slate); margin-bottom: 0; cursor: pointer; }

/* ===== CTA BANNER ===== */
.cta-band {
  background: var(--ink);
  background-image: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(192,139,63,.08) 0%, transparent 70%);
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; margin-bottom: 0.375rem; }
.cta-inner p { color: rgba(255,255,255,.82); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: var(--ink); padding: 7.5rem 0 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(192,139,63,.07) 0%, transparent 65%),
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.6); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }
.breadcrumbs { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,.4); }
.breadcrumbs a { color: rgba(255,255,255,.4); transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--amber); }
.bc-sep { color: rgba(255,255,255,.2); }

/* ===== FOOTER ===== */
footer { background: #060E1A; color: rgba(255,255,255,.55); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2.25fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1.125rem; }
.footer-logo-mark {
  width: 30px; height: 30px; border-radius: 5px;
  background: var(--amber); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.875rem; color: #fff;
}
.footer-logo-name { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.2; }
.footer-logo-name span { display: block; font-size: 0.6rem; font-weight: 500; color: rgba(255,255,255,.4); letter-spacing: 0.06em; text-transform: uppercase; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,.4); }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,.45); transition: color 0.15s; }
.footer-links a:hover { color: var(--amber); }
.fc-list { display: flex; flex-direction: column; gap: 0.875rem; }
.fc-item { display: flex; gap: 0.75rem; font-size: 0.875rem; }
.fc-item svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.fc-item a { color: rgba(255,255,255,.5); transition: color 0.15s; }
.fc-item a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8125rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.3); transition: color 0.15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.price-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem 2rem; box-shadow: var(--shadow-sm); transition: all 0.25s; position: relative; border: 1.5px solid var(--border); }
.price-card.featured { border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber), var(--shadow-md); }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--amber); color: #fff; padding: 0.25rem 1rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.price-type { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; }
.price-features { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }
.price-features li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; color: var(--ink-soft); }
.price-features svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.price-cta-box { background: var(--section-bg); border-radius: var(--radius-lg); padding: 3rem; text-align: center; }
.price-cta-box h3 { margin-bottom: 1rem; }
.price-cta-box p { margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; font-weight: 600; font-size: 1.0625rem; color: var(--ink); gap: 1rem; }
.faq-q svg { flex-shrink: 0; color: var(--amber); transition: transform 0.3s; width: 20px; height: 20px; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 1.25rem; color: var(--slate); font-size: 0.9375rem; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-a a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
.faq-a a:hover { color: var(--navy); }

/* ===== ABOUT PAGE ===== */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.a-stat { background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.a-stat-val { font-size: 2.75rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.04em; margin-bottom: 0.5rem; }
.a-stat-val em { color: var(--amber); font-style: normal; }
.a-stat-label { font-size: 0.875rem; color: var(--muted); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-rev { grid-auto-flow: dense; }
.two-col-rev .img-side { order: -1; }
.img-block { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-block img { width: 100%; height: auto; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; }
.ci-list { display: flex; flex-direction: column; gap: 1.875rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; border-radius: 22%; background: var(--amber-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { color: var(--amber); }
.ci-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.ci-val { font-size: 0.9375rem; font-weight: 600; color: var(--ink); }
.ci-val a { color: var(--ink); transition: color 0.15s; }
.ci-val a:hover { color: var(--amber); }

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

/* Homepage: featured card on top, 2 equal below */
.has-hero .blog-grid {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.has-hero .blog-card:first-child {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  overflow: hidden;
}
.has-hero .blog-card:first-child > a {
  display: block;
  height: 100%;
  min-height: 240px;
}
.has-hero .blog-card:first-child .blog-thumb {
  height: 100%;
  min-height: 240px;
  border-radius: 0;
}
.has-hero .blog-card:first-child .blog-content { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.has-hero .blog-card:first-child h3 { font-size: 1.25rem; line-height: 1.4; }
.has-hero .blog-card:first-child p { font-size: 0.9375rem; }
.blog-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); transition: all 0.25s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-thumb { height: 200px; overflow: hidden; background: var(--section-bg); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-content { padding: 1.625rem; }
.blog-cat { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.625rem; display: flex; align-items: center; gap: 0.5rem; }
.blog-cat::before { content: ''; display: block; width: 16px; height: 1.5px; background: var(--amber); }
.blog-card h3 { font-size: 1.0625rem; margin-bottom: 0.625rem; line-height: 1.35; }
.blog-card h3 a { color: var(--ink); transition: color 0.15s; }
.blog-card h3 a:hover { color: var(--amber); }
.blog-card p { font-size: 0.875rem; line-height: 1.7; }
.blog-meta { display: flex; gap: 1.25rem; margin-top: 1.125rem; font-size: 0.8125rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 1rem; }

/* ===== ARTICLE PAGE ===== */
.article-hero { background: var(--ink); padding: 7.5rem 0 4rem; position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(192,139,63,.07) 0%, transparent 65%), linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px); background-size: 100% 100%, 48px 48px, 48px 48px; }
.article-hero > .container { position: relative; z-index: 1; max-width: 840px; }
.article-hero h1 { color: #fff; font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
.article-hero .art-desc { color: rgba(255,255,255,.62); font-size: 1.125rem; line-height: 1.7; }
.art-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.75rem; }
.art-meta span { font-size: 0.8125rem; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 0.375rem; }
.art-meta em { color: var(--amber); font-style: normal; }
.article-body { max-width: 840px; margin: 0 auto; padding: 4rem 1.5rem 5rem; }
.article-body h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.article-body p { margin-bottom: 1.25rem; color: var(--ink-soft); line-height: 1.8; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { color: var(--ink-soft); line-height: 1.75; margin-bottom: 0.5rem; }
.article-body strong { color: var(--ink); }
.callout { background: var(--amber-pale); border-left: 3px solid var(--amber); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 1.25rem 1.5rem; margin: 2rem 0; }
.callout p { margin: 0; color: var(--ink-soft); font-size: 0.9375rem; }
.article-cta { background: var(--navy); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; margin-top: 3rem; }
.article-cta h3 { color: #fff; margin-bottom: 0.625rem; }
.article-cta p { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }

/* ===== FEATURE LIST ===== */
.feat-list { display: flex; flex-direction: column; gap: 1rem; }
.feat-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.feat-item svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.feat-item p { font-size: 0.9375rem; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 7rem 0 5rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: 0 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .portfolio-grid .pf-item:last-child:nth-child(odd) { grid-column: span 2; }
  .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .has-hero .testi-grid { grid-template-columns: 1fr; }
  .has-hero .testi-card:first-child { border-left: none; padding-left: 2rem; }
  .has-hero .blog-grid { grid-template-columns: 1fr; }
  .has-hero .blog-card:first-child { grid-column: span 1; display: flex; flex-direction: column; }
  .has-hero .blog-card:first-child .blog-thumb { height: 200px; min-height: 0; border-radius: var(--radius) var(--radius) 0 0; }
  .has-hero .blog-card:first-child .blog-content { padding: 1.625rem; }
  .lm-inner { grid-template-columns: 1fr; gap: 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col .img-block { order: -1; }
  .two-col-rev .img-side { order: -1; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .pf-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .hero-stat-divider { display: none; }
  .about-stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { text-align: left; display: flex; gap: 1rem; align-items: flex-start; }
  .step .step-num { margin: 0; flex-shrink: 0; }
}

/* ===== SERVICE GALLERY ===== */
.svc-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 2rem; }
.svc-gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--navy); }
.svc-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.svc-gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 768px) { .svc-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .svc-gallery { grid-template-columns: 1fr; } }

/* ===== PORTFOLIO PAGE ===== */
.portfolio-filter { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.5rem 1.25rem; border-radius: 20px; font-size: 0.875rem; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--white); color: var(--slate);
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.filter-btn:hover, .filter-btn.active { background: var(--amber); border-color: var(--amber); color: #fff; }
.portfolio-full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 1024px) { .portfolio-full-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .portfolio-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .portfolio-full-grid { grid-template-columns: 1fr; } }

/* ===== LIGHTBOX ===== */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.88); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { display: block; max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 25px 60px rgba(0,0,0,.6); }
.lightbox-close { position: absolute; top: -2.25rem; right: 0; background: none; border: none; color: #fff; font-size: 1.375rem; cursor: pointer; line-height: 1; padding: 0.25rem 0.5rem; opacity: 0.8; transition: opacity 0.15s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: #fff; font-size: 2rem; cursor: pointer; width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s; line-height: 1; padding: 0; }
.lightbox-prev { left: -4rem; }
.lightbox-next { right: -4rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.3); }
.pf-item img, .svc-gallery-item img { cursor: zoom-in; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
/* .reveal carries NO hidden initial state — content is always visible.
   The animation starts from opacity:0 only when .visible is added via JS.
   This means screenshots and no-JS users always see full content. */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal.visible {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
/* Stagger delays for grid children */
.reveal.visible:nth-child(2) { animation-delay: 0.07s; }
.reveal.visible:nth-child(3) { animation-delay: 0.14s; }
.reveal.visible:nth-child(4) { animation-delay: 0.21s; }
.reveal.visible:nth-child(5) { animation-delay: 0.28s; }
.reveal.visible:nth-child(6) { animation-delay: 0.35s; }
@media (prefers-reduced-motion: reduce) {
  .reveal.visible { animation: none; }
}


/* ===== TABLE OF CONTENTS ===== */
.article-toc {
  background: var(--section-bg);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0 2.5rem;
}
.article-toc__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem !important;
  line-height: 1 !important;
}
.article-toc__list {
  margin: 0;
  padding-left: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  list-style: decimal;
}
.article-toc__list a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.15s;
}
.article-toc__list a:hover,
.article-toc__list a.is-active {
  color: var(--amber);
}

/* ── Article pages ── */
.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}
.article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
}
.article-body p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.article-body ul, .article-body ol {
  margin: 0 0 1.5rem 1.25rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--amber-dark, #a87520); }

.article-cta { border-radius: var(--radius); margin: 3rem 0 2.5rem; }
.article-cta h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.article-body .article-cta h3 { color: #fff; }
.article-body .article-cta p { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.article-cta .btn-primary { background: #fff; color: var(--navy); border-color: #fff; }
.article-cta .btn-primary:hover { background: rgba(255,255,255,.9); border-color: rgba(255,255,255,.9); }

.article-related {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 2.5rem;
}
.article-related h4 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 1rem; }
.article-related ul { list-style: none; margin: 0; padding: 0; }
.article-related li { margin-bottom: 0.625rem; }
.article-related a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.article-related a:hover { color: var(--navy); }

/* ===== ARTICLE SOURCES ===== */
.article-sources {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 2.5rem;
}
.article-sources h2 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.source-list {
  list-style: decimal;
  margin: 0;
  padding-left: 1.5rem;
  color: var(--slate);
}
.source-list li {
  font-size: 0.8125rem;
  line-height: 1.65;
  margin-bottom: 0.625rem;
  color: var(--slate);
}
.source-list em {
  font-style: italic;
}
.source-list a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}
.source-list a:hover {
  color: var(--navy);
}
sup .source-ref {
  font-size: 0.7em;
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
}
sup .source-ref:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* ── Article tables ────────────────────────────────────────────────── */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.75rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 520px;
}
.table-wrap thead tr {
  background: var(--navy);
  color: #fff;
}
.table-wrap th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.table-wrap td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .table-wrap td { white-space: nowrap; }
  .table-wrap table { min-width: 600px; }
}
.table-wrap tbody tr:last-child td {
  border-bottom: none;
}
.table-wrap tbody tr:nth-child(even) {
  background: var(--section-bg);
}
.table-wrap tbody tr:hover {
  background: var(--amber-pale);
}
