/* ============================================
   TTPM — Twin Tiers Property Management
   Big-box store inspired design system
   ============================================ */

/* --- Design Tokens --- */
:root,
[data-theme='light'] {
  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Colors — Big-Box Store Palette */
  --color-bg: #ffffff;
  --color-surface: #f8f9fb;
  --color-surface-2: #f1f3f7;
  --color-surface-offset: #eaeef4;
  --color-surface-offset-2: #e2e7f0;
  --color-surface-dynamic: #d6dce6;
  --color-divider: #dde2ea;
  --color-border: #d1d7e0;

  --color-text: #1a1f2e;
  --color-text-muted: #5a6275;
  --color-text-faint: #9aa1b0;
  --color-text-inverse: #ffffff;

  /* Primary — Retail Blue (Walmart/Best Buy inspired) */
  --color-primary: #0071CE;
  --color-primary-hover: #0058a8;
  --color-primary-active: #003e7a;
  --color-primary-highlight: #d6ebfa;
  --color-primary-tint: #e8f2fc;

  /* Yellow — Spark Yellow accent (Walmart/Best Buy/IKEA) */
  --color-yellow: #FFC220;
  --color-yellow-hover: #e6ae12;
  --color-yellow-active: #c99800;
  --color-yellow-highlight: #fff5d6;
  --color-yellow-tint: #fff9e6;

  /* Orange — Home Depot inspired accent (sparingly) */
  --color-orange: #F96302;
  --color-orange-hover: #e25500;
  --color-orange-active: #c04600;
  --color-orange-highlight: #fde2d0;
  --color-orange-tint: #fff0e8;

  /* Semantic */
  --color-success: #2e7d32;
  --color-error: #c62828;
  --color-warning: #f57c00;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 120ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.2 0.02 250 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.02 250 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.02 250 / 0.12);
  --shadow-xl: 0 24px 48px oklch(0.2 0.02 250 / 0.16);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1040px;
  --content-wide: 1240px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Clash Display', 'Inter', sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
}

/* Dark Mode */
[data-theme='dark'] {
  --color-bg: #0d1117;
  --color-surface: #141a23;
  --color-surface-2: #19202b;
  --color-surface-offset: #1d2530;
  --color-surface-offset-2: #232c38;
  --color-surface-dynamic: #2a3340;
  --color-divider: #232c38;
  --color-border: #2e3845;

  --color-text: #e2e8f0;
  --color-text-muted: #8b95a5;
  --color-text-faint: #5e6878;
  --color-text-inverse: #0d1117;

  --color-primary: #4dbdf5;
  --color-primary-hover: #2a9ee0;
  --color-primary-active: #1a7fb8;
  --color-primary-highlight: #1a2530;
  --color-primary-tint: #162028;

  --color-yellow: #ffd54f;
  --color-yellow-hover: #ffc220;
  --color-yellow-active: #e6ae12;
  --color-yellow-highlight: #2a2510;
  --color-yellow-tint: #1e1c0e;

  --color-orange: #ff8a50;
  --color-orange-hover: #f96302;
  --color-orange-active: #d4540a;
  --color-orange-highlight: #2a1810;
  --color-orange-tint: #1e120c;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  --shadow-xl: 0 24px 48px oklch(0 0 0 / 0.5);
}

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.15;
  font-family: var(--font-display);
  font-weight: 600;
}

p, li, figcaption {
  text-wrap: pretty;
  max-width: 72ch;
}

::selection {
  background: var(--color-yellow);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; width: 100%; }

a, button, [role='button'], [role='link'], input, textarea, select {
  transition:
    color var(--transition-interactive),
    background var(--transition-interactive),
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Layout --- */
.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.section {
  padding-block: clamp(var(--space-12), 6vw, var(--space-24));
}

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

.section-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
}

.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: var(--color-primary-tint);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-sub {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-primary:active {
  background: var(--color-primary-active);
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-tint);
}

.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); min-height: 36px; }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); min-height: 52px; }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-interactive);
}

.header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-primary);
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.logo-text small {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.nav {
  display: flex;
  gap: var(--space-6);
}

.nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
}

.nav a:hover { color: var(--color-primary); }

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}

.nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.theme-toggle:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: var(--color-primary-tint);
}

.header-cta { display: inline-flex; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-interactive), opacity var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4);
  flex-direction: column;
  gap: var(--space-2);
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--transition-interactive), opacity var(--transition-interactive);
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  display: block;
  padding: var(--space-3);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
}

.mobile-nav a:hover { background: var(--color-surface); color: var(--color-primary); }

/* --- Hero --- */
.hero {
  position: relative;
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 0%, var(--color-primary-tint), transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 20%, var(--color-yellow-tint), transparent 60%);
  z-index: -1;
}

.hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-tint);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: var(--space-6);
}

.hero-accent {
  display: block;
  color: var(--color-primary);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: var(--space-8);
}

.hero-sub strong { color: var(--color-text); }

.hero-cta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-strip {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-6) var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.strip-item strong {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.strip-item span {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.strip-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

/* --- Department Cards --- */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--space-5);
}

.dept-card {
  position: relative;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
  overflow: hidden;
}

.dept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.dept-blue::before { background: var(--color-primary); }
.dept-yellow::before { background: var(--color-yellow); }
.dept-orange::before { background: var(--color-orange); }

.dept-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dept-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
}

.dept-blue .dept-icon { background: var(--color-primary-tint); color: var(--color-primary); }
.dept-yellow .dept-icon { background: var(--color-yellow-tint); color: var(--color-yellow-active); }
.dept-orange .dept-icon { background: var(--color-orange-tint); color: var(--color-orange); }

.dept-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.dept-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
}

.dept-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.dept-blue .dept-tag { background: var(--color-primary-tint); color: var(--color-primary); }
.dept-yellow .dept-tag { background: var(--color-yellow-tint); color: var(--color-yellow-active); }
.dept-orange .dept-tag { background: var(--color-orange-tint); color: var(--color-orange); }

/* --- Banner Strip --- */
.banner-strip {
  background: var(--color-primary);
  overflow: hidden;
  padding: var(--space-4) 0;
  position: relative;
}

.banner-track {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  white-space: nowrap;
  animation: scroll-banner 30s linear infinite;
  width: max-content;
}

.banner-track span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.banner-dot {
  color: var(--color-yellow) !important;
  font-size: var(--text-sm) !important;
}

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

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}

.about-photo { position: sticky; top: 100px; }

.photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
}

.photo-placeholder { width: 100%; height: 100%; }

.photo-badge {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  border: 3px solid var(--color-bg);
}

.about-content { max-width: 640px; }

.about-lead {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.tag {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

/* --- Capabilities --- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-5);
}

.cap-item {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.cap-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cap-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-yellow);
  display: block;
  margin-bottom: var(--space-3);
  line-height: 1;
}

.cap-item h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.cap-item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* --- Projects --- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: var(--space-6);
}

.project-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.project-banner {
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  position: relative;
}

.banner-1 {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-active));
}

.banner-2 {
  background: linear-gradient(135deg, var(--color-yellow-hover), var(--color-orange));
}

.banner-3 {
  background: linear-gradient(135deg, var(--color-orange), #c04600);
}

.project-category {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: oklch(0 0 0 / 0.25);
  backdrop-filter: blur(8px);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.project-body { padding: var(--space-6); }

.project-body h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.project-body p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
}

.project-meta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.meta-item {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-primary-tint);
  color: var(--color-primary);
}

/* --- Trust Section --- */
.trust-section {
  background: var(--color-primary);
  color: #fff;
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}

.trust-content .section-tag {
  background: oklch(255 0 0 / 0.15);
  color: var(--color-yellow);
}

.trust-content h2 { color: #fff; }

.trust-content p {
  color: oklch(255 0 0 / 0.85);
  margin-bottom: var(--space-4);
}

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: oklch(255 0 0 / 0.1);
  border: 1px solid oklch(255 0 0 / 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  min-width: 200px;
  backdrop-filter: blur(8px);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-3) 0;
}

.trust-stat strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-yellow);
}

.trust-stat span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: oklch(255 0 0 / 0.7);
}

.trust-divider {
  height: 1px;
  background: oklch(255 0 0 / 0.15);
}

/* --- Contact --- */
.contact-inner {
  max-width: 720px;
}

.contact-content { text-align: center; }

.contact-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  margin-inline: auto;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  text-align: left;
}

.contact-method {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
}

a.contact-method:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-tint);
}

.contact-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.contact-value {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
}

/* --- Footer --- */
.footer {
  background: var(--color-text);
  color: oklch(255 0 0 / 0.7);
  padding-block: clamp(var(--space-8), 4vw, var(--space-16));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-8);
  align-items: center;
}

.footer-brand .logo { color: var(--color-yellow); margin-bottom: var(--space-3); }
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text small { color: oklch(255 0 0 / 0.5); }

.footer-tag {
  font-size: var(--text-sm);
  color: oklch(255 0 0 / 0.5);
  max-width: 320px;
}

.footer-nav {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: oklch(255 0 0 / 0.7);
  text-decoration: none;
}

.footer-nav a:hover { color: var(--color-yellow); }

.footer-meta {
  text-align: right;
}

.footer-meta p {
  font-size: var(--text-xs);
  color: oklch(255 0 0 / 0.5);
}

.footer-loc { margin-top: var(--space-1) !important; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photo { position: static; max-width: 200px; }

  .trust-inner {
    grid-template-columns: 1fr;
  }
  .trust-card { flex-direction: row; min-width: auto; }
  .trust-stat { flex: 1; }
  .trust-divider { width: 1px; height: auto; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-meta { text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 640px) {
  .hero-strip {
    flex-direction: column;
    gap: var(--space-4);
  }
  .strip-divider { width: 100%; height: 1px; }

  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta .btn { width: 100%; }

  .trust-card { flex-direction: column; }
  .trust-divider { width: 100%; height: 1px; }
}

/* --- Animations --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .banner-track { animation: none; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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