:root {
  --bg: #f7f2e9;
  --bg-soft: #efe4d2;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffaf2;
  --ink: #16212c;
  --muted: #5a6470;
  --line: rgba(22, 33, 44, 0.1);
  --accent: #d86c3d;
  --accent-dark: #a64d28;
  --accent-soft: #f4d7c7;
  --deep: #172734;
  --shadow: 0 24px 60px rgba(32, 42, 55, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1120px, calc(100vw - 3rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 108, 61, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(34, 96, 120, 0.18), transparent 24%),
    linear-gradient(180deg, #faf6ef 0%, var(--bg) 42%, #fffdf9 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.38;
  pointer-events: none;
}

body::before {
  top: -8rem;
  left: -10rem;
  background: rgba(216, 108, 61, 0.18);
}

body::after {
  right: -9rem;
  bottom: 8rem;
  background: rgba(36, 132, 154, 0.16);
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 242, 233, 0.78);
  border-bottom: 1px solid rgba(22, 33, 44, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #ea8f54 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(216, 108, 61, 0.25);
}

.button:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  border-color: rgba(22, 33, 44, 0.1);
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 0.65rem 1rem;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(216, 108, 61, 0.12);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1,
.contact-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 1.2rem;
  max-width: 11ch;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0;
}

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}

.hero-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.6rem;
}

.trust-pills,
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.trust-pills span,
.contact-tags span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(22, 33, 44, 0.08);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(22, 33, 44, 0.08);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  animation: floaty 5.5s ease-in-out infinite;
}

.floating-badge-top {
  top: -1rem;
  right: 1.2rem;
}

.floating-badge-bottom {
  left: -1rem;
  bottom: 1.5rem;
  animation-delay: 0.8s;
}

.card-shell {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.94) 0%, rgba(255, 255, 255, 0.84) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.signal-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.signal-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #21b573 0%, #7fe0b4 100%);
  box-shadow: 0 0 0 8px rgba(33, 181, 115, 0.12);
}

.signal-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.signal-list article,
.feature-card,
.metric-card,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.15rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.metric-card:hover,
.contact-panel:hover,
.signal-list article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(32, 42, 55, 0.12);
  border-color: rgba(216, 108, 61, 0.24);
}

.signal-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.signal-list span {
  font-weight: 800;
  color: var(--accent-dark);
}

.section {
  padding: 4.5rem 0;
}

.signal-strip {
  padding: 0.5rem 0 1.6rem;
}

.signal-strip-track {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.signal-strip-track span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(23, 39, 52, 0.95) 0%, rgba(45, 72, 92, 0.95) 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(23, 39, 52, 0.14);
}

.muted {
  background: linear-gradient(180deg, rgba(239, 228, 210, 0.46) 0%, rgba(255, 250, 242, 0.78) 100%);
}

.dark {
  background:
    radial-gradient(circle at top left, rgba(216, 108, 61, 0.25), transparent 26%),
    linear-gradient(180deg, #13212c 0%, #1c3140 100%);
  color: #f8f3ec;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.video-section {
  padding-top: 1rem;
}

.video-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
}

.video-frame video {
  width: 100%;
  height: auto;
  display: block;
}

.feature-card h3,
.metric-card strong,
.contact-panel h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.metric-cards {
  display: grid;
  gap: 1rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stats-row article {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-row strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.supporting-copy {
  max-width: 720px;
  margin-top: 1.5rem;
  color: rgba(248, 243, 236, 0.8);
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(244, 215, 199, 0.55) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-hero {
  padding-bottom: 1rem;
}

.contact-lead {
  max-width: 52ch;
}

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

.contact-panel p:last-child {
  margin-bottom: 0;
}

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

.photo-grid img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, filter 220ms ease;
}

.photo-grid img:nth-child(1) {
  transform: rotate(-1.4deg);
}

.photo-grid img:nth-child(2) {
  transform: translateY(18px);
}

.photo-grid img:nth-child(3) {
  transform: rotate(1.4deg);
}

.photo-grid img:hover {
  transform: translateY(-6px) scale(1.01);
  filter: saturate(1.05);
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(22, 33, 44, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
  color: var(--muted);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .metrics-grid,
  .cta-panel,
  .feature-grid,
  .stats-row,
  .photo-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1,
  .contact-hero h1 {
    max-width: none;
  }

  .floating-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .section {
    padding: 3.5rem 0;
  }

  .card-shell,
  .cta-panel {
    padding: 1.4rem;
  }

  .photo-grid img {
    height: 240px;
  }
}
