@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #071015;
  --bg-soft: #0d1820;
  --panel: rgba(9, 16, 22, 0.84);
  --panel-strong: #111c25;
  --surface: #f7f3ea;
  --surface-2: #ece7de;
  --text: #f5f1e8;
  --text-dark: #17212b;
  --muted: rgba(245, 241, 232, 0.72);
  --muted-dark: rgba(23, 33, 43, 0.72);
  --accent: #d8b35a;
  --accent-2: #6ed3b3;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 179, 90, 0.16), transparent 28%),
    radial-gradient(circle at right 20%, rgba(110, 211, 179, 0.08), transparent 24%),
    linear-gradient(180deg, #071015 0%, #0b141b 34%, #081016 100%);
  min-height: 100vh;
}

body.page-light {
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(216, 179, 90, 0.12), transparent 20%),
    linear-gradient(180deg, #f9f7f1 0%, #f2eee6 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #111;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(7, 16, 21, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-light .site-header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(23, 33, 43, 0.08);
}

.page-light .brand-text span {
  color: rgba(23, 33, 43, 0.62);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, #d8b35a 62%, #9b7a26 100%);
  color: #121212;
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(216, 179, 90, 0.3);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
}

.page-light .nav-toggle {
  border-color: rgba(23, 33, 43, 0.12);
  background: rgba(23, 33, 43, 0.04);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem clamp(0.8rem, 1.8vw, 1.6rem);
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-light .site-nav a {
  color: var(--muted-dark);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.3rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pill:hover {
  transform: translateY(-1px);
}

.pill.primary {
  background: linear-gradient(145deg, #f6dea0, #ddb65a 58%, #b98a28);
  color: #101010;
  box-shadow: 0 18px 40px rgba(216, 179, 90, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.pill.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-light .pill.secondary {
  background: rgba(23, 33, 43, 0.04);
  color: var(--text-dark);
  border-color: rgba(23, 33, 43, 0.1);
}

.page-light .pill.primary {
  color: #101010;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - 84px);
  display: grid;
  align-items: end;
  background: #091018;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 21, 0.22) 0%, rgba(7, 16, 21, 0.35) 40%, rgba(7, 16, 21, 0.82) 100%),
    var(--hero-image) center/cover no-repeat;
  transform: scale(1.03);
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(216, 179, 90, 0.18), transparent 28%),
    linear-gradient(110deg, rgba(7, 16, 21, 0.74) 0%, rgba(7, 16, 21, 0.38) 50%, rgba(7, 16, 21, 0.78) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: 4rem 0 4.5rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(216, 179, 90, 0.4);
  border-radius: 999px;
  background: rgba(7, 16, 21, 0.35);
  color: #f3d888;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1.1rem 0 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 9vw, 8rem);
  line-height: 0.93;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 10.5ch;
  color: #f7f2e8;
}

.hero h1 span {
  color: #f0c964;
}

.hero p {
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(245, 241, 232, 0.82);
}

.hero-banner .kicker {
  color: #f3d888;
  border-color: rgba(243, 216, 136, 0.32);
  background: rgba(7, 16, 21, 0.32);
}

.hero-banner h1,
.hero-banner p {
  color: #f7f2e8;
}

.page-light .hero-banner h1,
.page-light .hero-banner p,
.page-light .hero-banner .kicker {
  color: #f7f2e8;
}

.page-light .hero-banner::after {
  background: linear-gradient(90deg, rgba(7, 16, 21, 0.82) 0%, rgba(7, 16, 21, 0.45) 55%, rgba(7, 16, 21, 0.78) 100%);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-side {
  align-self: center;
  justify-self: end;
  width: min(100%, 360px);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(7, 16, 21, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: #f3d888;
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.section {
  padding: 5.5rem 0;
}

.section.tight {
  padding: 3.6rem 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.section-head h2,
.page-title h1 {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-head p,
.page-title p {
  max-width: 60ch;
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.page-light .section-head p,
.page-light .page-title p {
  color: var(--muted-dark);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  padding: 1.2rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.page-light .trust-item {
  background: rgba(23, 33, 43, 0.03);
  border-color: rgba(23, 33, 43, 0.08);
}

.trust-item strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.trust-item span {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.page-light .trust-item span {
  color: var(--muted-dark);
}

.dual-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.panel,
.soft-panel,
.feature-panel,
.contact-panel,
.story-card,
.quote-card,
.mission-card,
.timeline-card,
.note-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.panel {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.page-light .panel,
.page-light .feature-panel,
.page-light .contact-panel,
.page-light .soft-panel,
.page-light .story-card,
.page-light .quote-card,
.page-light .mission-card,
.page-light .timeline-card,
.page-light .note-card {
  background: #fff;
  border: 1px solid rgba(23, 33, 43, 0.08);
}

.panel h3,
.story-card h3,
.quote-card h3,
.feature-panel h3,
.contact-panel h3,
.mission-card h3,
.timeline-card h3,
.note-card h3 {
  margin: 0 0 0.9rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
}

.panel p,
.story-card p,
.quote-card p,
.feature-panel p,
.contact-panel p,
.mission-card p,
.timeline-card p,
.note-card p {
  margin: 0;
  line-height: 1.9;
  color: var(--muted);
}

.page-light .panel p,
.page-light .story-card p,
.page-light .quote-card p,
.page-light .feature-panel p,
.page-light .contact-panel p,
.page-light .mission-card p,
.page-light .timeline-card p,
.page-light .note-card p {
  color: var(--muted-dark);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f3d888;
  margin-bottom: 1rem;
}

.panel .label,
.soft-panel .label,
.feature-panel .label,
.contact-panel .label,
.timeline-card .label,
.mission-card .label,
.quote-card .label,
.note-card .label,
.story-card .label {
  color: #b98611;
}

.page-light .banner-content h1,
.page-light .hero-banner h1 {
  color: #fff8ea;
}

.page-light .feature-panel h3,
.page-light .panel h3,
.page-light .soft-panel h3,
.page-light .contact-panel h3,
.page-light .story-card h3,
.page-light .quote-card h3,
.page-light .mission-card h3,
.page-light .timeline-card h3,
.page-light .note-card h3 {
  color: #16212b;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.9;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: var(--radius-lg);
  background: var(--card-bg, linear-gradient(135deg, #16222b, #283745));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.page-light .card {
  border-color: rgba(23, 33, 43, 0.08);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 15, 0.1) 0%, rgba(5, 11, 15, 0.68) 100%);
}

.card.media::before {
  background: linear-gradient(180deg, rgba(5, 11, 15, 0.08) 0%, rgba(5, 11, 15, 0.82) 100%);
}

.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem;
  z-index: 1;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.card-content h3,
.card-content p {
  margin: 0;
}

.card-content h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.card-content p {
  margin-top: 0.45rem;
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.62rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
}

.soft-panel {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(23, 33, 43, 0.08);
}

.story-stack,
.metric-grid,
.feature-stack,
.value-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric {
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(23, 33, 43, 0.04);
  border: 1px solid rgba(23, 33, 43, 0.08);
}

.metric strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: #9a6c10;
}

.metric span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted-dark);
}

.feature-panel {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 33, 43, 0.08);
}

.feature-panel h3 {
  color: #1a2a38;
}

.feature-panel ul,
.service-list,
.value-list,
.check-list,
.contact-list,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-panel li,
.service-list li,
.value-list li,
.check-list li,
.contact-list li,
.footer-links li {
  display: flex;
  gap: 0.7rem;
  align-items: start;
}

.feature-panel li + li,
.service-list li + li,
.value-list li + li,
.check-list li + li,
.contact-list li + li,
.footer-links li + li {
  margin-top: 0.8rem;
}

.feature-panel li::before,
.service-list li::before,
.value-list li::before,
.check-list li::before,
.contact-list li::before {
  content: '';
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #f1d17d, #d8b35a);
  box-shadow: 0 0 0 4px rgba(216, 179, 90, 0.14);
}

.feature-panel li span,
.service-list li span,
.value-list li span,
.check-list li span,
.contact-list li span {
  line-height: 1.75;
  color: var(--muted-dark);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.3rem;
  line-height: 0.95;
  color: #9a6c10;
}

.timeline-copy h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline-copy p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.8;
}

.page-title {
  padding: 4rem 0 2rem;
}

.page-title h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.hero-banner {
  min-height: 420px;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0f1720;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 21, 0.12), rgba(7, 16, 21, 0.8)), var(--banner-image) center/cover no-repeat;
  z-index: -2;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 16, 21, 0.72) 0%, rgba(7, 16, 21, 0.28) 55%, rgba(7, 16, 21, 0.68) 100%);
  z-index: -1;
}

.banner-content {
  padding: 4rem 0;
  max-width: 920px;
}

.banner-content h1 {
  margin: 0.5rem 0 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #f7f2e8;
}

.banner-content p {
  margin: 0;
  max-width: 58ch;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

.page-light .banner-content h1,
.page-light .banner-content p {
  color: #f7f2e8;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}

.filter-btn {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 43, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-dark);
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active {
  background: linear-gradient(145deg, #f1d17d, #d8b35a);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  position: relative;
  min-height: 240px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #1f2b35, #2c4050);
  border: 1px solid rgba(23, 33, 43, 0.08);
  box-shadow: var(--shadow);
}

.product-card[data-tone='light'] {
  background: linear-gradient(135deg, #d9d5cb, #fbf8f0);
}

.product-card[data-tone='dark'] {
  background: linear-gradient(135deg, #19242f, #0e151b);
}

.product-card img,
.product-card .swatch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .swatch {
  background: var(--swatch, linear-gradient(135deg, #334956, #647680));
  opacity: 0.82;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 14, 0.08) 0%, rgba(6, 10, 14, 0.82) 100%);
}

.product-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.2rem;
  color: #fff;
}

.product-content h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.product-content p {
  margin: 0.45rem 0 0;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.meta-chip {
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.split-list {
  display: grid;
  gap: 1rem;
}

.split-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(23, 33, 43, 0.03);
  border: 1px solid rgba(23, 33, 43, 0.08);
}

.split-row strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #9a6c10;
}

.split-row span {
  color: var(--muted-dark);
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(23, 33, 43, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-dark);
  outline: none;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #d8b35a;
  box-shadow: 0 0 0 4px rgba(216, 179, 90, 0.14);
}

.form-note {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted-dark);
}

.google-form-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(23, 33, 43, 0.06);
}

.google-form-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: none;
}

.footer {
  margin-top: 3rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-light .footer {
  border-top-color: rgba(23, 33, 43, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 1.5rem;
}

.footer-brand p {
  max-width: 36ch;
  color: var(--muted);
  line-height: 1.8;
}

.page-light .footer-brand p {
  color: var(--muted-dark);
}

.footer h3 {
  margin: 0 0 0.9rem;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer a {
  color: var(--muted);
}

.page-light .footer a {
  color: var(--muted-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: var(--muted);
}

.page-light .footer-bottom {
  border-top-color: rgba(23, 33, 43, 0.08);
  color: var(--muted-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .dual-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero-side {
    justify-self: start;
  }

  .trust-band,
  .grid-3,
  .product-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: auto auto;
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 74px 1rem auto;
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(8, 14, 18, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .page-light .site-nav {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(23, 33, 43, 0.08);
  }

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

  .site-nav a {
    padding: 0.8rem 0.75rem;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 3.2rem 0 4rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .trust-band,
  .grid-3,
  .grid-2,
  .product-grid,
  .metric-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .section.tight {
    padding: 4rem 0;
  }

  .section-head,
  .page-title,
  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }

  .split-row,
  .timeline-item {
    grid-template-columns: 1fr;
  }
}
