/* ============================================================
   Cattus Pet Supply — Global Styles
   Palette: warm cream, sand, sage green, deep forest, earth tones
   ============================================================ */

:root {
  --cream: #F6FAFB;
  --sand: #E7F2F4;
  --sand-dark: #D5E9ED;
  --sage: #6FCBD6;
  --sage-light: #DAF0F4;
  --sage-deep: #089AA6;
  --teal-text: #06707C;
  --forest: #16191A;
  --ink: #16191A;
  --earth: #B98A5E;
  --clay: #A9805B;
  --burgundy: #6E3230;
  --stone: #5A6165;
  --band: #DAF0F4;
  --white: #FFFFFF;
  --line: rgba(13, 59, 68, 0.12);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 18px 45px -18px rgba(10, 45, 54, 0.22);
  --shadow-card: 0 10px 30px -12px rgba(10, 45, 54, 0.16);

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-text);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--sage);
}

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

.section {
  padding: clamp(72px, 9vw, 130px) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lead { margin: 16px auto 0; }
.section-head h2 { margin-bottom: 14px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}

.btn svg { transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--teal-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: rgba(13, 59, 68, 0.25);
}
.btn-ghost:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--cream);
  color: var(--forest);
}
.btn-light:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
  padding: 18px 0;
}

.site-header.scrolled {
  background: rgba(246, 250, 251, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--sage-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

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

.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 11px 24px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* transparent header over the hero photo: light lockup */
body:has(.hero) .site-header:not(.scrolled) .logo { color: var(--cream); }
body:has(.hero) .site-header:not(.scrolled) .nav-toggle span { background: var(--cream); }
body:has(.hero) .site-header:not(.scrolled) .nav-cta .btn-primary {
  background: var(--cream);
  color: var(--ink);
}
body:has(.hero) .site-header:not(.scrolled) .nav-cta .btn-primary:hover {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 861px) {
  body:has(.hero) .site-header:not(.scrolled) .nav-links a { color: var(--cream); }
  body:has(.hero) .site-header:not(.scrolled) .nav-links a::after { background: var(--cream); }
}

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sand);
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.hero-bg img {
  transform: scale(1.06);
  animation: heroZoom 12s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 45, 54, 0.66) 0%, rgba(10, 45, 54, 0.38) 44%, rgba(10, 45, 54, 0.06) 74%),
    linear-gradient(180deg, rgba(10, 45, 54, 0.42) 0%, rgba(10, 45, 54, 0.05) 45%, rgba(10, 45, 54, 0.50) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 140px 0 90px;
  max-width: 760px;
}

.hero .eyebrow { color: #DAF0F4; }
.hero .eyebrow::before { background: #DAF0F4; }

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  max-width: 56ch;
  margin-bottom: 34px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.25);
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: "";
  width: 1.5px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: clamp(150px, 18vw, 210px) 0 clamp(60px, 7vw, 90px);
  background:
    radial-gradient(circle 300px at 88% 4%, rgba(111, 203, 214, 0.38) 0%, rgba(111, 203, 214, 0.38) 99.4%, transparent 100%),
    radial-gradient(circle 150px at 72% 82%, rgba(111, 203, 214, 0.22) 0%, rgba(111, 203, 214, 0.22) 99%, transparent 100%),
    radial-gradient(circle 230px at -3% 96%, rgba(8, 154, 166, 0.14) 0%, rgba(8, 154, 166, 0.14) 99.4%, transparent 100%),
    radial-gradient(1100px 500px at 85% -10%, var(--sage-light) 0%, transparent 60%),
    var(--sand);
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { font-size: 1.15rem; }

/* ---------- Pillars ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--sage-light);
  color: var(--teal-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar h3 { font-size: 1.3rem; }
.pillar p { color: var(--stone); font-size: 0.98rem; flex-grow: 1; }

.pillar a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--teal-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pillar a svg { transition: transform 0.3s var(--ease); }
.pillar a:hover svg { transform: translateX(4px); }

/* ---------- Product cards ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.product-media {
  background: var(--sand);
  aspect-ratio: 1 / 0.85;
  overflow: hidden;
  position: relative;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-media img { transform: scale(1.05); }

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(246, 250, 251, 0.92);
  backdrop-filter: blur(6px);
  color: var(--teal-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.product-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.product-body h3 { font-size: 1.32rem; }
.product-body .product-sub { color: var(--stone); font-size: 0.95rem; flex-grow: 1; }

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
}
.product-price span { font-size: 0.8rem; color: var(--stone); font-family: var(--font-body); }

.product-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-text);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.product-card.coming {
  background: var(--sand);
  border-style: dashed;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 30px;
  box-shadow: none;
  min-height: 380px;
}
.product-card.coming:hover { transform: none; box-shadow: none; }
.product-card.coming .pillar-icon { margin: 0 auto 18px; background: var(--white); }
.product-card.coming p { color: var(--stone); max-width: 30ch; margin: 8px auto 0; }

/* ---------- Feature chips ---------- */

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-light);
  color: var(--teal-text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}

/* ---------- Workflow / process ---------- */

.workflow {
  background: var(--band);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 70px);
  position: relative;
  overflow: hidden;
}

.workflow::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 154, 166, 0.14) 0%, transparent 70%);
  top: -250px;
  right: -180px;
}

.workflow h2, .workflow h3 { color: var(--ink); }
.workflow .eyebrow { color: var(--teal-text); }
.workflow .eyebrow::before { background: var(--sage-deep); }
.workflow .lead { color: var(--stone); }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: clamp(40px, 5vw, 60px);
  counter-reset: step;
  position: relative;
}

.flow-step {
  text-align: center;
  padding: 0 6px;
  position: relative;
}

.flow-dot {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(246, 250, 251,0.07);
  border: 1.5px solid rgba(111, 203, 214,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  position: relative;
  z-index: 2;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease);
}

.flow-step:hover .flow-dot {
  background: var(--teal-text);
  border-color: var(--teal-text);
  color: var(--cream);
  transform: translateY(-4px);
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% + 38px);
  width: calc(100% - 76px);
  height: 1.5px;
  background: linear-gradient(to right, rgba(8, 154, 166, 0.45), rgba(8, 154, 166, 0.15));
}

.flow-step strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.flow-step small {
  color: var(--stone);
  font-size: 0.78rem;
  line-height: 1.45;
  display: block;
}

/* ---------- Numbered promises (home) ---------- */

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.5vw, 46px);
  align-items: center;
}

.promise-list { display: grid; gap: clamp(16px, 2.4vw, 26px); }

.promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.promise-num {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  line-height: 0.95;
  color: rgba(8, 154, 166, 0.16);
  -webkit-text-stroke: 1.5px rgba(8, 154, 166, 0.55);
  padding-top: 6px;
  user-select: none;
}

.promise-card {
  background: var(--sage-light);
  border-radius: 22px;
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 2.6vw, 30px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.promise-card h3 { font-size: 1.16rem; margin-bottom: 7px; }
.promise-card p { color: var(--stone); font-size: 0.93rem; margin-bottom: 12px; }

.promise-card a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-text);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.promise-card a svg { transition: transform 0.3s var(--ease); }
.promise-card a:hover svg { transform: translateX(4px); }

/* white-background cat photo blends into the page like a cut-out */
.promise-media {
  align-self: start;
  margin-top: clamp(-70px, -5vw, -20px);
}

.promise-media img {
  width: 118%;
  max-width: none;
  margin-left: -9%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: 47% 66%;
  mix-blend-mode: multiply;
}

@media (max-width: 900px) {
  .promise-media { align-self: auto; margin-top: 0; }
  .promise-media img { width: 100%; margin-left: 0; }
}

@media (max-width: 900px) {
  .promise-grid { grid-template-columns: 1fr; }
  .promise-media { max-width: 380px; margin: 0 auto; order: -1; }
}

/* ---------- Orbit process (home) ---------- */

.orbit {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(230px, 330px) 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  margin-top: clamp(38px, 5vw, 60px);
}

.orbit-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(62%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(8, 154, 166, 0.38);
  pointer-events: none;
}

.orbit-media {
  position: relative;
  z-index: 2;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--white);
}

.orbit-media img { width: 100%; height: 100%; object-fit: cover; }

.orbit-col {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(20px, 3vw, 36px);
}

.orbit-col.left { text-align: right; }

.orbit-step { display: flex; align-items: flex-start; gap: 14px; }
.orbit-col.left .orbit-step { flex-direction: row-reverse; }

/* nudge the outer items inward so the set follows the circle */
.orbit-col.left .orbit-step:first-child,
.orbit-col.left .orbit-step:last-child { transform: translateX(clamp(8px, 2.4vw, 40px)); }
.orbit-col.right .orbit-step:first-child,
.orbit-col.right .orbit-step:last-child { transform: translateX(clamp(-40px, -2.4vw, -8px)); }

.orbit-dot {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(8, 154, 166, 0.35);
  color: var(--teal-text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -10px rgba(10, 45, 54, 0.35);
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.orbit-step:hover .orbit-dot {
  background: var(--teal-text);
  border-color: var(--teal-text);
  color: var(--cream);
  transform: translateY(-3px);
}

.orbit-step strong {
  display: block;
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 3px;
}

.orbit-step small {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--stone);
  max-width: 24ch;
}

.orbit-col.left .orbit-step small { margin-left: auto; }

@media (max-width: 900px) {
  .orbit { grid-template-columns: 1fr; gap: 26px; }
  .orbit-media { max-width: 260px; margin: 0 auto; order: -1; }
  .orbit-halo { display: none; }
  .orbit-col.left { text-align: left; }
  .orbit-col.left .orbit-step { flex-direction: row; }
  .orbit-col .orbit-step { transform: none !important; }
  .orbit-col.left .orbit-step small { margin-left: 0; }
  .orbit-step small { max-width: none; }
}

/* ---------- Split sections ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.split.reverse > .split-media { order: 2; }

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3.4;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.split-media:hover img { transform: scale(1.04); }

.split-media .badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(246, 250, 251,0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-float .num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--teal-text);
  line-height: 1;
}
.badge-float small { color: var(--stone); font-size: 0.82rem; line-height: 1.4; }

.split-content h2 { margin-bottom: 18px; }
.split-content > p { color: var(--stone); margin-bottom: 22px; }

.check-list { display: grid; gap: 13px; margin: 22px 0 30px; }

.check-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 0.98rem;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--sage-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23089AA6' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.check-list li strong { display: block; }
.check-list li span { color: var(--stone); font-size: 0.92rem; }

/* ---------- Stats band ---------- */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--forest);
  line-height: 1.1;
}
.stat .num em { font-style: normal; color: var(--teal-text); }
.stat p { color: var(--stone); font-size: 0.92rem; margin-top: 6px; }

/* ---------- Community / cards with image top ---------- */

.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.info-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.info-card .media { aspect-ratio: 16 / 9.5; overflow: hidden; }
.info-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.info-card:hover .media img { transform: scale(1.05); }

.info-card .body { padding: 30px 32px 34px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.info-card .body p { color: var(--stone); font-size: 0.97rem; flex-grow: 1; }
.info-card .body a { font-weight: 600; color: var(--teal-text); display: inline-flex; gap: 8px; align-items: center; font-size: 0.93rem; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
}

.cta-band {
  background:
    radial-gradient(900px 400px at 15% 120%, rgba(8, 154, 166, 0.20) 0%, transparent 62%),
    var(--band);
  border-radius: var(--radius-lg);
  color: var(--ink);
  padding: clamp(52px, 7vw, 90px) clamp(28px, 6vw, 90px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 { color: var(--ink); margin-bottom: 12px; }
.cta-band p { color: var(--stone); max-width: 52ch; }
.cta-band .btn-light { background: var(--forest); color: var(--cream); }
.cta-band .btn-light:hover { background: var(--teal-text); color: var(--cream); }

/* ---------- Product detail ---------- */

.pd-hero {
  padding: clamp(140px, 16vw, 190px) 0 clamp(56px, 7vw, 90px);
}

.pd-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.pd-gallery { position: sticky; top: 110px; }

.pd-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 0.95;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s; }

.pd-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pd-thumb {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--white);
  padding: 0;
  transition: border-color 0.3s;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active, .pd-thumb:hover { border-color: var(--sage-deep); }

.pd-info .eyebrow { margin-bottom: 10px; }
.pd-info h1 { font-size: clamp(2rem, 3.5vw, 2.9rem); margin-bottom: 14px; }
.pd-info > p { color: var(--stone); margin-bottom: 24px; }

.pd-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--forest);
  margin: 6px 0 26px;
}
.pd-price small { font-family: var(--font-body); font-size: 0.85rem; color: var(--stone); font-weight: 400; }

.spec-table { width: 100%; border-collapse: collapse; margin: 10px 0 6px; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.spec-table th { color: var(--stone); font-weight: 500; width: 42%; }
.spec-table td { font-weight: 600; color: var(--forest); }

.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--forest);
  text-align: left;
}
.acc-btn .acc-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
  color: var(--teal-text);
}
.acc-item.open .acc-icon { transform: rotate(45deg); background: var(--sage-deep); color: var(--cream); border-color: var(--sage-deep); }
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.acc-panel p { color: var(--stone); font-size: 0.96rem; padding: 0 4px 22px; max-width: 65ch; }

/* ---------- Feature tiles ---------- */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.tile .pillar-icon { width: 48px; height: 48px; border-radius: 13px; margin-bottom: 16px; }
.tile h3 { font-size: 1.08rem; margin-bottom: 8px; }
.tile p { color: var(--stone); font-size: 0.92rem; }

/* ---------- Journey (illustrated process flow) ---------- */

.journey {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.journey::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  bottom: 30px;
  transform: translateX(-50%);
  border-left: 2px dashed rgba(8, 154, 166, 0.4);
}

.j-step {
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  align-items: center;
  gap: 0 10px;
  margin-bottom: clamp(44px, 6vw, 72px);
  position: relative;
}

.j-step:last-child { margin-bottom: 0; }

.j-num {
  grid-column: 2;
  grid-row: 1;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--sage-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px var(--sand), 0 10px 24px -8px rgba(8, 154, 166, 0.5);
  z-index: 1;
}

.j-media {
  grid-row: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 2.9;
  background: var(--white);
}

.j-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.j-step:hover .j-media img { transform: scale(1.05); }

.j-text { grid-row: 1; padding: 0 8px; }

.j-text .j-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-text);
  display: block;
  margin-bottom: 8px;
}

.j-text h3 { font-size: 1.35rem; margin-bottom: 10px; }
.j-text p { color: var(--stone); font-size: 0.97rem; margin-bottom: 14px; }

.j-step:nth-child(odd) .j-media { grid-column: 1; }
.j-step:nth-child(odd) .j-text { grid-column: 3; }
.j-step:nth-child(even) .j-media { grid-column: 3; }
.j-step:nth-child(even) .j-text { grid-column: 1; }

@media (max-width: 860px) {
  .journey::before { left: 29px; transform: none; top: 0; }
  .j-step {
    grid-template-columns: 60px 1fr;
    gap: 14px 18px;
    align-items: start;
  }
  .j-num { grid-column: 1; margin: 0; }
  .j-step:nth-child(odd) .j-media,
  .j-step:nth-child(even) .j-media { grid-column: 2; grid-row: 2; }
  .j-step:nth-child(odd) .j-text,
  .j-step:nth-child(even) .j-text { grid-column: 2; grid-row: 1; padding: 6px 0 0; }
  .j-media { aspect-ratio: 16 / 9.5; }
}

/* ---------- News ---------- */

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--sage-deep); color: var(--teal-text); }
.filter-btn.active { background: var(--forest); border-color: var(--forest); color: var(--cream); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.news-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }
.news-card .media { aspect-ratio: 16/10; overflow: hidden; }
.news-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.news-card:hover .media img { transform: scale(1.06); }
.news-card .body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--stone);
}
.news-cat {
  color: var(--teal-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.news-card h3 { font-size: 1.18rem; line-height: 1.35; }
.news-card .body p { color: var(--stone); font-size: 0.93rem; flex-grow: 1; }

/* ---------- Story blocks (about) ---------- */

.story-flow {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 9vw, 120px);
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.story-block.reverse .story-media { order: -1; }

.story-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1;
  color: var(--sage);
  opacity: 0.6;
  margin-bottom: 12px;
}

.story-text h2 { margin-bottom: 16px; }
.story-text p { color: var(--stone); margin-bottom: 14px; }
.story-text p:last-child { margin-bottom: 0; }

.story-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3.2;
}

.story-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.story-media:hover .frame img { transform: scale(1.04); }

.image-caption {
  margin-top: 14px;
  font-size: 0.86rem;
  font-style: italic;
  color: var(--stone);
  text-align: center;
}

@media (max-width: 860px) {
  .story-block, .story-block.reverse { grid-template-columns: 1fr; }
  .story-block.reverse .story-media { order: 2; }
  .story-block .story-media { order: 2; }
}

/* ---------- Values grid (about) ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ---------- Timeline (about) ---------- */

.timeline { position: relative; padding-left: 34px; max-width: 680px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--sage), var(--sand-dark));
}
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--sage-deep);
}
.tl-item .tl-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-text);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.tl-item h3 { margin: 4px 0 6px; font-size: 1.15rem; }
.tl-item p { color: var(--stone); font-size: 0.95rem; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 48px);
  box-shadow: var(--shadow-card);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--forest);
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 4px rgba(8, 154, 166,0.13);
}

.form-note { font-size: 0.85rem; color: var(--stone); margin-top: 14px; }

.form-success {
  display: none;
  background: var(--sage-light);
  color: var(--teal-text);
  font-weight: 600;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-top: 18px;
}
.form-success.show { display: block; }

/* ---------- Contact info ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.contact-list { display: grid; gap: 14px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.contact-item .pillar-icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.98rem; color: var(--forest); }
.contact-item span, .contact-item a { color: var(--stone); font-size: 0.92rem; }
.contact-item a:hover { color: var(--teal-text); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--band);
  color: var(--stone);
  padding: clamp(60px, 8vw, 90px) 0 0;
  margin-top: clamp(40px, 6vw, 80px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand .logo { color: var(--ink); margin-bottom: 16px; }
.footer-brand p { font-size: 0.93rem; max-width: 34ch; }

.footer-col h4 {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.93rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--teal-text); }
.footer-col li { font-size: 0.93rem; }

.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(22, 25, 26, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.footer-social a:hover { background: var(--teal-text); border-color: var(--teal-text); color: var(--cream); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(22, 25, 26, 0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--stone);
}

/* ---------- Organic blob decorations ---------- */

.pillars,
.product-grid,
.journey,
.story-flow,
.contact-grid,
.duo-grid,
.timeline,
.news-grid {
  position: relative;
  isolation: isolate;
}

.pillars::before,
.product-grid::before,
.story-flow::before,
.contact-grid::before,
.news-grid::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(300px, 38vw, 520px);
  height: clamp(300px, 38vw, 520px);
  border-radius: 55% 45% 60% 40% / 46% 56% 44% 54%;
  background: radial-gradient(circle at 34% 32%, rgba(111, 203, 214, 0.42), rgba(111, 203, 214, 0.10) 62%, transparent 74%);
  pointer-events: none;
}

.pillars::before { top: -140px; left: -200px; }
.product-grid::before { top: -110px; right: -220px; border-radius: 44% 56% 42% 58% / 55% 45% 58% 42%; }
.story-flow::before { top: -90px; right: -230px; border-radius: 44% 56% 42% 58% / 55% 45% 58% 42%; }
.contact-grid::before { top: -120px; right: -210px; }
.news-grid::before { top: -130px; left: -230px; }

/* white soft blobs on tinted sections (témamori style) */
.journey::after,
.duo-grid::before,
.timeline::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(280px, 34vw, 460px);
  height: clamp(280px, 34vw, 460px);
  border-radius: 60% 40% 52% 48% / 48% 58% 42% 52%;
  background: radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.25) 62%, transparent 76%);
  pointer-events: none;
}

.journey::after { top: 8%; left: -240px; }
.duo-grid::before { top: -120px; right: -160px; }
.timeline::after { top: -60px; left: 30%; }

/* organic image masks for story chapters (about) */
.story-block:nth-child(odd) .story-media .frame {
  border-radius: 58% 42% 52% 48% / 47% 55% 45% 53%;
}
.story-block:nth-child(even) .story-media .frame {
  border-radius: 43% 57% 46% 54% / 56% 44% 58% 42%;
}

@media (max-width: 700px) {
  .pillars::before, .product-grid::before, .journey::after,
  .story-flow::before, .contact-grid::before, .news-grid::before,
  .duo-grid::before, .timeline::after { opacity: 0.6; }
}

/* ---------- Curved section dividers ---------- */

:root {
  --wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 96' preserveAspectRatio='none'%3E%3Cpath d='M0 64C220 96 440 16 720 44C1000 72 1220 24 1440 56V96H0Z'/%3E%3C/svg%3E");
}

.curve-top, .curve-bottom { position: relative; }

.curve-top::before,
.curve-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 72px;
  background: inherit;
  -webkit-mask: var(--wave) center / 100% 100% no-repeat;
  mask: var(--wave) center / 100% 100% no-repeat;
  pointer-events: none;
}

.curve-top::before { bottom: 100%; }
.curve-bottom::after { top: 100%; transform: scaleY(-1); }

/* hero (home) — cream wave rising over the photo */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 72px;
  z-index: 3;
  background: var(--cream);
  -webkit-mask: var(--wave) center / 100% 100% no-repeat;
  mask: var(--wave) center / 100% 100% no-repeat;
  pointer-events: none;
}

.hero-scroll { bottom: 104px; }

/* inner page heroes — cream wave into the first section */
.page-hero { position: relative; overflow: hidden; }
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 60px;
  background: var(--cream);
  -webkit-mask: var(--wave) center / 100% 100% no-repeat;
  mask: var(--wave) center / 100% 100% no-repeat;
  pointer-events: none;
}

/* footer — teal wave rising out of the page */
.site-footer { position: relative; }
.site-footer::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 72px;
  background: var(--band);
  -webkit-mask: var(--wave) center / 100% 100% no-repeat;
  mask: var(--wave) center / 100% 100% no-repeat;
  pointer-events: none;
}

@media (max-width: 700px) {
  .curve-top::before, .curve-bottom::after,
  .hero::after, .site-footer::before { height: 44px; }
  .page-hero::after { height: 36px; }
  .hero-scroll { bottom: 70px; }
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .pillars { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: repeat(4, 1fr); row-gap: 36px; }
  .flow-step:nth-child(4)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(340px, 82vw);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 26px;
    box-shadow: -20px 0 60px rgba(10, 45, 54,0.18);
    transform: translateX(105%);
    transition: transform 0.5s var(--ease);
    z-index: 90;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: flex; z-index: 95; }
  .nav-cta { display: none; }

  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: 0; }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-gallery { position: static; }
  .duo-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-step:nth-child(even)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
