:root {
  --bg: #f7f6f1;
  --bg-soft: #fbfaf6;
  --paper: #ffffff;
  --ink: #18211f;
  --muted: #5f6b67;
  --muted-2: #7a8580;
  --line: rgba(24, 33, 31, 0.12);
  --line-strong: rgba(24, 33, 31, 0.18);
  --green: #345f54;
  --green-dark: #23473f;
  --green-soft: #dfece7;
  --blue-green: #6fa89c;
  --sand: #e9dfcf;
  --warm: #f1eadf;
  --haze: #d8dedb;
  --shadow: 0 24px 70px rgba(22, 35, 32, 0.12);
  --shadow-soft: 0 16px 44px rgba(22, 35, 32, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(111, 168, 156, 0.16), transparent 34rem),
    radial-gradient(circle at 85% 12%, rgba(233, 223, 207, 0.6), transparent 30rem),
    var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0;
}

.page {
  overflow: hidden;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 20;
  background: rgba(247, 246, 241, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 33, 31, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 60px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: rgba(24, 33, 31, 0.76);
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav a:hover {
  background: rgba(52, 95, 84, 0.08);
  color: var(--green-dark);
}

.nav .nav-blog {
  border: 1px solid rgba(52, 95, 84, 0.18);
  background: rgba(255, 255, 255, 0.46);
  margin-left: 4px;
}

.mobile-nav-label {
  display: none;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Shared */

.section {
  position: relative;
  padding: 112px 0;
}

.section + .section {
  border-top: 1px solid rgba(24, 33, 31, 0.07);
}

.section-kicker {
  color: var(--green);
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 0;
  max-width: 850px;
}

.section-title.large {
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -0.005em;
}

.section-title.medium {
  font-size: clamp(2rem, 3.8vw, 3.85rem);
  letter-spacing: -0.055em;
}

.section-text {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.72;
  max-width: 720px;
}

.section-text p + p {
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.92fr 1fr;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(24, 33, 31, 0.08);
  isolation: isolate;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 45%),
    radial-gradient(circle at 78% 18%, rgba(111, 168, 156, 0.14), transparent 30%);
  pointer-events: none;
  z-index: 1;
}

.image-card.tall {
  aspect-ratio: 4 / 5;
}

.image-card.wide {
  aspect-ratio: 16 / 10;
}

.image-card.standard {
  aspect-ratio: 4 / 3;
}

.soft-panel {
  border-radius: var(--radius-lg);
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(24, 33, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

/* Hero */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 58px) 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(52, 95, 84, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--green-dark);
  font-size: 0.88rem;
  margin-bottom: 26px;
  box-shadow: 0 10px 30px rgba(22, 35, 32, 0.04);
}

.hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-green);
  box-shadow: 0 0 0 5px rgba(111, 168, 156, 0.14);
}

.hero h1 {
  margin: 0;
  max-width: 670px;
  font-size: clamp(3.25rem, 7.2vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.hero-text {
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.75;
  max-width: 660px;
}

.hero-text p + p {
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* =========================================================
   Vayo full-screen video hero
   Video covers whole screen.
   Text overlaps only right 30–40%.
   ========================================================= */

.hero-video-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111;
}

.hero-video,
.hero-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center calc(50% + 44px);
  display: block;
}

.hero-video-fallback {
  opacity: 0;
  background: url("images/first-image.png") center center / cover no-repeat;
  transition: opacity 0.25s ease;
}

.hero-video-fallback.is-visible {
  opacity: 1;
}

/* 
   Key part:
   This gradient protects readability only on the right side.
   It avoids making the whole video look dark or boxed.
*/
.hero-video-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.08) 42%,
      rgba(0, 0, 0, 0.38) 63%,
      rgba(0, 0, 0, 0.72) 100%
    );
}

/* Soft transition into the next page section */
.hero-video-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14rem;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(245, 243, 238, 0) 0%,
    rgba(245, 243, 238, 0.18) 40%,
    rgba(245, 243, 238, 0.72) 78%,
    #f5f3ee 100%
  );
}

/* 
   This layer is full-screen, but the text itself is constrained.
   No .container here.
*/
.hero-copy-layer {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(5rem, 8vh, 7rem) clamp(1.25rem, 5vw, 5rem);
  pointer-events: none;
}

/* 
   Key part:
   Text only occupies about one-third of the viewport.
*/
.hero-copy-right {
  width: min(36vw, 34rem);
  min-width: 22rem;
  max-width: 34rem;
  color: #fffaf0;
  pointer-events: auto;
}

/* Remove card/panel feeling if existing styles leak in */
.hero-copy-right,
.hero-copy-right.hero-copy,
.hero-video-hero .hero-copy {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-copy-right .hero-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  color: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(255, 250, 240, 0.26);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-video-hero .section-title,
.hero-video-hero .section-title.large,
.hero-video-hero .hero-text,
.hero-video-hero .hero-text p {
  color: #fffaf0;
}

.hero-video-hero .section-title.large {
  margin-bottom: 1.05rem;
}

.hero-video-hero .hero-text {
  max-width: 34rem;
}

.hero-video-hero .hero-text p {
  color: rgba(255, 250, 240, 0.86);
}

.hero-video-hero .hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-video-hero .btn.primary {
  background: #fffaf0;
  color: #171511;
  border-color: #fffaf0;
}

.hero-video-hero .btn.primary:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.hero-video-hero .btn.secondary {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.48);
  background: rgba(255, 255, 255, 0.06);
}

.hero-video-hero .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 250, 240, 0.76);
}
@media (max-width: 900px) {
  .hero-video-hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-copy-layer {
    align-items: flex-end;
    justify-content: flex-start;
    padding: 6rem 1.25rem 1.5rem;
  }

  .hero-copy-right {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .hero-video-gradient {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.04) 0%,
        rgba(0, 0, 0, 0.16) 36%,
        rgba(0, 0, 0, 0.68) 100%
      );
  }

  .hero-video-bottom-fade {
    height: 9rem;
  }

  .hero-video-hero .section-title.large {
    font-size: clamp(2.4rem, 12vw, 4.4rem);
  }

  .hero-video-hero .hero-text p:nth-child(2) {
    display: none;
  }

  .hero-video-hero .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-video-hero .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 650;
  font-size: 0.95rem;
  line-height: 1;
  gap: 0.45rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    color 180ms ease;
}

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

.btn.primary {
  background: linear-gradient(180deg, #5f9d79 0%, #4e8f6e 100%);
  color: #f7fbf8;
  box-shadow:
    0 10px 24px rgba(78, 143, 110, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn.primary:hover {
  background: linear-gradient(180deg, #67a884 0%, #558f73 100%);
  box-shadow:
    0 14px 30px rgba(78, 143, 110, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn.primary:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(78, 143, 110, 0.14),
    0 14px 30px rgba(78, 143, 110, 0.22);
}

.btn.primary:active {
  transform: translateY(0);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--green-dark);
  border: 1px solid rgba(52, 95, 84, 0.18);
}

.btn.secondary:hover {
  border-color: rgba(52, 95, 84, 0.34);
  background: rgba(255, 255, 255, 0.86);
}

.btn:disabled,
.btn.primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.hero-visual {
  position: relative;
}

.hero-image {
  aspect-ratio: 16 / 12;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(24, 33, 31, 0.08);
  background: var(--paper);
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(24, 33, 31, 0.14), transparent 36%),
    radial-gradient(circle at 72% 22%, rgba(216, 222, 219, 0.18), transparent 34%);
  pointer-events: none;
}

.air-card {
  position: absolute;
  left: -24px;
  bottom: 26px;
  z-index: 3;
  width: min(280px, 58%);
  padding: 18px;
  border-radius: 24px;
  background: rgba(251, 250, 246, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 56px rgba(22, 35, 32, 0.18);
}

.air-card-label {
  font-size: 0.78rem;
  color: var(--muted-2);
  margin-bottom: 8px;
}

.air-card-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.air-card-main strong {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.air-card-main span {
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
}

.air-bars {
  display: grid;
  gap: 7px;
}

.air-bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(52, 95, 84, 0.12);
  overflow: hidden;
}

.air-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-green), var(--green));
}

.air-bar:nth-child(1) span {
  width: 68%;
}

.air-bar:nth-child(2) span {
  width: 44%;
}

.air-bar:nth-child(3) span {
  width: 58%;
}

.haze-note {
  position: absolute;
  right: -18px;
  top: 28px;
  z-index: 3;
  width: 190px;
  padding: 14px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 44px rgba(22, 35, 32, 0.12);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* Statement strip */

.statement {
  padding: 34px 0 22px;
}

.statement-box {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(52, 95, 84, 0.94), rgba(35, 71, 63, 0.96)),
    var(--green);
  color: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 38px;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.statement-box::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  top: -200px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.statement-box::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: 42%;
  bottom: -250px;
  border-radius: 999px;
  background: rgba(111, 168, 156, 0.24);
}

.statement-box h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  max-width: 780px;
}

.statement-box p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

/* What we stand for */

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.principle {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(24, 33, 31, 0.08);
}

.principle strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.principle span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Approach */

.approach-section {
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.4), rgba(233, 223, 207, 0.28));
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: start;
}

.approach-sticky {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.approach-cards {
  display: grid;
  gap: 14px;
}

.approach-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(24, 33, 31, 0.08);
  box-shadow: 0 14px 36px rgba(22, 35, 32, 0.05);
}

.approach-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  color: var(--green-dark);
}

.approach-card p {
  color: var(--muted);
  line-height: 1.68;
}

.approach-image {
  margin-top: 26px;
}

/* Vayo One */

.product-section {
  padding: 124px 0;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46)),
    var(--paper);
  border: 1px solid rgba(24, 33, 31, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto -140px -200px auto;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  background: rgba(111, 168, 156, 0.16);
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 720;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.product-card h2 {
  margin: 0 0 24px;
}

.product-card .section-text {
  max-width: 680px;
}

.product-visual {
  aspect-ratio: 5 / 4;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 31, 0.08);
  box-shadow: var(--shadow-soft);
  background: var(--warm);
  position: relative;
  z-index: 1;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.product-meta div {
  border-radius: 18px;
  padding: 16px;
  background: rgba(52, 95, 84, 0.06);
  border: 1px solid rgba(52, 95, 84, 0.1);
}

.product-meta strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.94rem;
  margin-bottom: 4px;
}

.product-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* About */

.about-section {
  background:
    radial-gradient(circle at 15% 30%, rgba(111, 168, 156, 0.12), transparent 28rem),
    var(--bg-soft);
}

.origin-card {
  margin-top: 30px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(52, 95, 84, 0.06);
  border: 1px solid rgba(52, 95, 84, 0.12);
}

.origin-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.origin-card span {
  color: var(--muted);
  line-height: 1.66;
}

/* Contact */

.contact-section {
  padding: 116px 0 72px;
}

.contact-card {
  border-radius: 38px;
  padding: clamp(30px, 6vw, 68px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42)),
    url("images/outdoor.png") center / cover;
  border: 1px solid rgba(24, 33, 31, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 246, 241, 0.96), rgba(247, 246, 241, 0.76), rgba(247, 246, 241, 0.54)),
    radial-gradient(circle at 82% 20%, rgba(111, 168, 156, 0.18), transparent 28rem);
  z-index: -1;
}

.contact-card h2 {
  margin-bottom: 24px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.contact-copy {
  width: 100%;
  max-width: 760px;
}

.contact-form {
  margin-top: 1.75rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(24, 33, 31, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  color: var(--ink);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
  font-size: 0.96rem;
  line-height: 1.4;
  box-shadow: 0 14px 34px rgba(24, 33, 31, 0.045);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--muted);
  opacity: 0.72;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(78, 143, 110, 0.55);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(78, 143, 110, 0.12),
    0 16px 38px rgba(24, 33, 31, 0.06);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.15rem;
}

.form-status {
  margin: 0;
  min-height: 1.4rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.form-status.success {
  color: #24724f;
}

.form-status.error {
  color: #b42318;
}

.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 680;
  box-shadow: 0 16px 30px rgba(52, 95, 84, 0.22);
}

.blog-link-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--green-dark);
  border: 1px solid rgba(52, 95, 84, 0.18);
  font-weight: 680;
}

/* Footer */

.site-footer {
  padding: 36px 0;
  background: #121b18;
  color: #f6f5ef;
}

.footer-inner {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  color: rgba(246, 245, 239, 0.78);
  font-size: 14px;
}

.footer-inner a {
  color: #f6f5ef;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--green-dark);
}

/* Small animations */

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual,
  .section-title,
  .section-text,
  .image-card,
  .product-card,
  .contact-card {
    animation: fadeUp 700ms ease both;
  }

  .hero-visual {
    animation-delay: 120ms;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Responsive */

@media (max-width: 980px) {
  :root {
    --header-h: 70px;
  }

  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .nav {
    display: none;
  }

  .mobile-nav-label {
    display: block;
  }

  .hero {
    padding-top: calc(var(--header-h) + 42px);
  }

  .hero-grid,
  .split,
  .split.reverse,
  .approach-grid,
  .product-card,
  .statement-box {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-image {
    aspect-ratio: 16 / 10;
    border-radius: 30px;
  }

  .haze-note {
    right: 14px;
    top: 14px;
  }

  .air-card {
    left: 14px;
    bottom: 14px;
  }

  .section {
    padding: 86px 0;
  }

  .approach-sticky {
    position: static;
  }

  .approach-image {
    max-width: 720px;
  }

  .product-section {
    padding: 90px 0;
  }

  .product-visual {
    order: -1;
  }

  .product-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-row-full,
  .form-actions {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-form .btn {
    width: 100%;
  }

  .blog-container,
  .post-container {
    width: min(100% - 28px, 980px);
  }

  .blog-hero {
    padding: 96px 0 48px;
  }

  .blog-hero h1 {
    font-size: clamp(44px, 15vw, 76px);
  }

  .blog-list-section {
    padding: 52px 0 72px;
  }

  .blog-list-header {
    display: block;
  }

  .blog-list-header p {
    margin-top: 14px;
  }

  .blog-card-link {
    padding: 28px 0 32px;
  }

  .blog-card h3 {
    font-size: clamp(38px, 14vw, 64px);
  }

  .blog-card p,
  .post-content p {
    font-size: 17px;
  }

  .post {
    padding: 96px 0 72px;
  }

  .back-link {
    margin-bottom: 40px;
  }

  .post-header h1 {
    font-size: clamp(54px, 17vw, 88px);
  }

  .post-summary {
    font-size: 20px;
  }

  .footer-inner {
    width: min(100% - 28px, 1180px);
    display: block;
  }

  .footer-inner a {
    display: inline-block;
    margin-top: 14px;
  }
}

@media (max-width: 680px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(111, 168, 156, 0.12), transparent 22rem),
      var(--bg);
  }

  .logo {
    font-size: 1.08rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .hero-text,
  .section-text {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .email-link,
  .blog-link-card {
    width: 100%;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }

  .air-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
    border-radius: 20px;
  }

  .haze-note {
    display: none;
  }

  .statement-box,
  .soft-panel,
  .product-card,
  .contact-card {
    border-radius: 26px;
  }

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

  .image-card.tall,
  .image-card.standard,
  .image-card.wide {
    aspect-ratio: 4 / 3;
  }

  .approach-card {
    padding: 20px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
.hero-video-hero .hero-copy-right {
  background-color: rgba(255, 255, 255, 0.8) !important;
  padding: 1.5rem !important;
  border-radius: 1rem !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-video-hero .hero-copy-right,
.hero-video-hero .hero-copy-right .hero-tag,
.hero-video-hero .hero-copy-right .section-title,
.hero-video-hero .hero-copy-right .hero-text,
.hero-video-hero .hero-copy-right .hero-text p {
  color: #1b1f23 !important;
}


/* Blog */

.blog-container,
.post-container {
  width: min(100% - 40px, 980px);
  margin: 0 auto;
}

.blog-hero {
  padding: 120px 0 64px;
  background: #f6f5ef;
}

.blog-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #121b18;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.blog-hero-text {
  max-width: 620px;
  margin-top: 28px;
  color: #46524d;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.35;
}

.blog-list-section {
  padding: 72px 0 96px;
  background: #fbfaf6;
}

.blog-list-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.blog-list-header h2 {
  margin: 0;
  color: #121b18;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.blog-list-header p {
  max-width: 320px;
  margin: 0;
  color: #627069;
  font-size: 16px;
  line-height: 1.5;
}

.blog-card {
  border-top: 1px solid rgba(18, 27, 24, 0.14);
}

.blog-card-link {
  display: block;
  padding: 34px 0 38px;
  color: inherit;
  text-decoration: none;
}

.blog-card-link:hover h3 {
  color: #60796f;
}

.blog-card-meta,
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 18px;
  color: #6d7a73;
  font-size: 13px;
  font-weight: 600;
}

.blog-card h3 {
  max-width: 720px;
  margin: 0 0 14px;
  color: #121b18;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  transition: color 0.2s ease;
}

.blog-card p {
  max-width: 620px;
  margin: 0;
  color: #46524d;
  font-size: 18px;
  line-height: 1.5;
}

.blog-read-more {
  display: inline-block;
  margin-top: 24px;
  color: #121b18;
  font-size: 15px;
  font-weight: 700;
}

.post {
  padding: 120px 0 96px;
  background: #fbfaf6;
}

.back-link {
  display: inline-block;
  margin-bottom: 52px;
  color: #46524d;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover {
  color: #121b18;
}

.post-header {
  max-width: 820px;
  margin-bottom: 56px;
}

.post-header h1 {
  margin: 0 0 24px;
  color: #121b18;
  font-size: clamp(56px, 10vw, 124px);
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.post-summary {
  max-width: 720px;
  margin: 32px 0 0;
  color: #46524d;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
}

.post-content {
  max-width: 720px;
  color: #26322e;
}

.post-content p {
  margin: 0 0 24px;
  font-size: 19px;
  line-height: 1.7;
}

.post-image-container {
  margin: 40px 0 32px;
}

.post-image {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* =============================================
   Ask Vayo
   ============================================= */

.ask-hero {
  padding: 120px 0 52px;
  background: #f6f5ef;
}

.ask-hero h1 {
  max-width: 680px;
  margin: 0 0 6px;
  color: #121b18;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

/* Search */

.ask-search-form {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(22, 35, 32, 0.06);
}

.ask-search-input {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 14px 12px 18px;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  min-width: 0;
}

.ask-search-input::placeholder {
  color: var(--muted-2);
}

/* Chips */

.ask-chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ask-chip {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(52, 95, 84, 0.18);
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 9px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.ask-chip:hover {
  background: rgba(52, 95, 84, 0.14);
  border-color: rgba(52, 95, 84, 0.32);
}

/* Results panel */

.ask-results,
.ask-no-results {
  margin-top: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.ask-results[hidden],
.ask-no-results[hidden] {
  display: none;
}

.ask-results {
  background: rgba(255, 255, 255, 0.72);
  padding: 22px;
}

.ask-results-head h2 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.025em;
}

.ask-results-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.ask-result-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.ask-result-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.ask-result-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.77rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.ask-result-content h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.ask-result-content p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.ask-result-link {
  align-self: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: color 180ms ease;
}

.ask-result-link:hover {
  color: var(--green-dark);
}

.ask-results-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.ask-results-footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.ask-no-results {
  background: rgba(255, 255, 255, 0.6);
  padding: 32px 24px;
  text-align: center;
}

.ask-no-results p {
  color: var(--muted);
  margin: 0 0 20px;
}

.ask-no-results em {
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}

/* Insights */

.ask-insights-section {
  background: var(--bg-soft);
}

.ask-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.ask-insight-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.ask-insight-media {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  padding: 14px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(111, 168, 156, 0.22), rgba(111, 168, 156, 0.04)),
    linear-gradient(180deg, var(--green-soft), var(--warm));
}

.ask-insight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.ask-insight-media-image {
  position: relative;
  z-index: 1;
}

.ask-insight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.ask-insight-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-dark);
}

.ask-insight-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ask-insight-body h3 {
  margin: 10px 0 8px;
  font-size: 1.02rem;
  letter-spacing: -0.025em;
  line-height: 1.32;
  color: var(--ink);
}

.ask-insight-body > p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.ask-read-more {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.ask-read-more:hover {
  color: var(--ink);
}

/* Ask directly panel */

.ask-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 40px;
  align-items: start;
}

.ask-side h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  letter-spacing: -0.045em;
}

.ask-side > .section-text {
  max-width: none;
}

.ask-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(52, 95, 84, 0.06);
  border: 1px solid rgba(52, 95, 84, 0.12);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.ask-form {
  display: grid;
  gap: 12px;
}

.ask-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
  cursor: pointer;
}

.ask-checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}

/* Ask Vayo responsive */

@media (max-width: 980px) {
  .ask-insights-grid,
  .ask-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ask-search-form {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }

  .ask-search-form .btn {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-sm);
  }

  .ask-result-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ask-results-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .ask-hero {
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .ask-hero h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .ask-chip {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .ask-insights-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   Waitlist form (Vayo One section)
   ============================================= */

.waitlist-block {
  margin-top: 28px;
}

.waitlist-intro {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.waitlist-promise {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.waitlist-form {
  margin-top: 4px;
}

.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.waitlist-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.waitlist-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.waitlist-field input {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.waitlist-field input:focus {
  border-color: rgba(78, 143, 110, 0.55);
  box-shadow: 0 0 0 3px rgba(78, 143, 110, 0.1);
}

.waitlist-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .waitlist-fields {
    grid-template-columns: 1fr;
  }

  .waitlist-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}