:root {
  --bg: #f3efe9;
  --surface: #fcfbf9;
  --surface-2: #f0eae3;
  --ink: #171311;
  --ink-soft: #4f4842;
  --border: #d8cec3;
  --coffee-900: #2a2019;
  --coffee-700: #4d3c2f;
  --coffee-500: #7a634f;
  --coffee-300: #b59f8d;
  --white: #ffffff;
  --black: #0d0b0a;
  --radius-xl: 2rem;
  --radius-lg: 1.2rem;
  --shadow-1: 0 12px 34px rgba(42, 32, 25, 0.12);
  --shadow-2: 0 22px 44px rgba(42, 32, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 8% 8%, #ede6dd 0%, var(--bg) 42%), var(--bg);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image:
    linear-gradient(rgba(24, 19, 16, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 19, 16, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

body::after {
  z-index: -1;
  background:
    radial-gradient(circle at 85% 14%, rgba(122, 99, 79, 0.21) 0, transparent 35%),
    radial-gradient(circle at 18% 75%, rgba(73, 58, 45, 0.15) 0, transparent 42%);
  filter: blur(10px);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
  background-image: radial-gradient(rgba(20, 16, 13, 0.7) 0.4px, transparent 0.4px);
  background-size: 4px 4px;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: clamp(3.8rem, 6vw, 6.8rem) 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--coffee-500);
}

.section-head {
  margin-bottom: 2.2rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  max-width: 18ch;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.82rem 1.35rem;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: linear-gradient(140deg, var(--black), var(--coffee-900));
  color: var(--white);
  box-shadow: var(--shadow-1);
}

.button-dark:hover {
  box-shadow: var(--shadow-2);
}

.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--border);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.95);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.9rem 0;
  backdrop-filter: blur(9px);
  background: rgba(243, 239, 233, 0.7);
  border-bottom: 1px solid rgba(120, 99, 80, 0.17);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  position: relative;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.2rem;
  transform: rotate(45deg);
  background: linear-gradient(145deg, var(--coffee-500), var(--black));
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 0.1rem;
  inset: 0;
  margin: auto;
  background: var(--surface);
}

.brand-text {
  font-size: 1.04rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1.5px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  background: var(--coffee-700);
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 0.75rem;
  padding: 0.65rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero {
  padding-top: clamp(4.2rem, 10vw, 7.2rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.7rem, 4vw, 3.6rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  isolation: isolate;
}

.hero-copy h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hero-copy h1 span {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 700;
  color: var(--coffee-700);
}

.hero-title-orbit {
  position: absolute;
  right: -0.5rem;
  top: -2.2rem;
  width: 230px;
  height: 170px;
  z-index: 0;
  pointer-events: none;
}

.orbit-diamond {
  position: absolute;
  border-radius: 0.6rem;
  transform-style: preserve-3d;
  transform: rotate(45deg) rotateX(58deg) rotateZ(10deg);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(122, 99, 79, 0.66));
  box-shadow:
    0 24px 34px rgba(39, 28, 22, 0.24),
    inset 0 -18px 22px rgba(31, 21, 16, 0.2),
    inset 14px 16px 18px rgba(255, 255, 255, 0.36);
  opacity: 0.85;
}

.orbit-diamond::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.62);
  transform: translateZ(14px);
}

.orbit-diamond.od1 {
  right: 12px;
  top: 0;
  width: 108px;
  height: 108px;
  animation:
    diamond-3d-spin 12s linear infinite,
    diamond-3d-float 5.2s ease-in-out infinite;
}

.orbit-diamond.od2 {
  right: 108px;
  top: 38px;
  width: 72px;
  height: 72px;
  animation:
    diamond-3d-spin 10s linear infinite reverse,
    diamond-3d-float 4.4s ease-in-out infinite 0.4s;
}

.orbit-diamond.od3 {
  right: 44px;
  top: 96px;
  width: 52px;
  height: 52px;
  animation:
    diamond-3d-spin 8.4s linear infinite,
    diamond-3d-float 3.9s ease-in-out infinite 0.8s;
}

.hero-copy .lead {
  position: relative;
  z-index: 2;
  margin: 1.35rem 0 1.65rem;
  max-width: 53ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-trust {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 1.55rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.48rem;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-trust li::before {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--coffee-500);
  box-shadow: 0 0 0 4px rgba(122, 99, 79, 0.15);
}

.hero-stage {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 0.95rem;
}

.stage-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.stage-card-main {
  height: auto;
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.64));
  box-shadow: var(--shadow-1);
}

.stage-label {
  margin: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--coffee-500);
}

.stage-card-main h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.stage-card-main > p {
  margin: 0;
  max-width: 25ch;
  color: var(--ink-soft);
  line-height: 1.45;
}

.stage-metrics {
  margin-top: 1.7rem;
  display: grid;
  gap: 0.9rem;
}

.stage-metrics div {
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  background: var(--surface-2);
  border: 1px solid #d4c7bb;
}

.stage-metrics strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.18rem;
}

.stage-metrics span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.stage-card-float {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(88%, 260px);
  margin-left: auto;
  padding: 1rem 1.2rem;
  background: linear-gradient(145deg, var(--coffee-900), #3a2d23);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.stage-card-float p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dfcdbd;
}

.stage-card-float strong {
  margin-top: 0.4rem;
  display: block;
  font-size: 1.1rem;
}

.stage-card-float .arrow {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 0.2rem;
  display: inline-block;
}

.diamond-cluster {
  position: absolute;
  left: -1.35rem;
  top: 2.1rem;
  pointer-events: none;
}

.diamond {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 0.3rem;
  transform: rotate(45deg);
  border: 1px solid rgba(42, 32, 25, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(181, 159, 141, 0.45));
  box-shadow: 0 8px 18px rgba(42, 32, 25, 0.12);
}

.diamond.d1 {
  animation: float-diamond 4.6s ease-in-out infinite;
}

.diamond.d2 {
  top: 24px;
  left: 28px;
  width: 16px;
  height: 16px;
  animation: float-diamond 5.3s ease-in-out infinite 0.35s;
}

.diamond.d3 {
  top: 54px;
  left: 6px;
  width: 12px;
  height: 12px;
  animation: float-diamond 5.9s ease-in-out infinite 0.9s;
}

.impact-grid,
.service-list,
.plan-grid,
.process-track {
  display: grid;
  gap: 1rem;
}

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

.impact-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(252, 251, 249, 0.72);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  border-color: #bca58f;
  background: var(--white);
}

.impact-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.impact-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.services {
  position: relative;
}

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

.service-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.4rem;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  min-height: 365px;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(181, 159, 141, 0.22), transparent 70%);
  top: -80px;
  right: -70px;
}

.service-index {
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--coffee-500);
}

.service-card h3 {
  margin: 0.35rem 0 0.35rem;
  font-size: 1.45rem;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
}

.service-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.service-card li {
  padding-left: 1.12rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.35;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.47rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--coffee-700);
}

.plans {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.1));
  border-block: 1px solid rgba(141, 119, 99, 0.25);
}

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

.plan-card {
  padding: 1.5rem;
  border-radius: 1.4rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.73);
  box-shadow: 0 8px 24px rgba(26, 20, 16, 0.07);
}

.plan-card-featured {
  background: linear-gradient(152deg, var(--black), #2d221a);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-6px);
}

.plan-card-featured .plan-fit,
.plan-card-featured li,
.plan-card-featured .plan-price span {
  color: #e7dbd0;
}

.plan-name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.plan-price {
  margin: 0.35rem 0 0;
  font-size: clamp(1.5rem, 3.1vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plan-price span {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.plan-fit {
  margin: 0.75rem 0 0.95rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.plan-card li {
  position: relative;
  color: var(--ink-soft);
  padding-left: 1rem;
  line-height: 1.35;
  font-size: 0.93rem;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.65;
}

.setup-note {
  margin: 1.3rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.results {
  padding-top: clamp(3.2rem, 5vw, 5.4rem);
}

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

.result-card {
  padding: 1.45rem;
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.72);
}

.result-kpi {
  display: block;
  margin-bottom: 0.55rem;
  font-size: clamp(1.55rem, 3.5vw, 2.3rem);
  line-height: 1;
  font-weight: 800;
  color: var(--coffee-900);
  letter-spacing: -0.02em;
}

.result-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.before-after {
  margin-top: 1.15rem;
  padding: 1.3rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.79), rgba(240, 234, 227, 0.9));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
}

.ba-label {
  margin: 0 0 0.28rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--coffee-500);
  font-weight: 700;
}

.before-after h3 {
  margin: 0 0 0.25rem;
  font-size: 1.18rem;
}

.before-after p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.4;
}

.ba-arrow {
  font-size: 1.5rem;
  color: var(--coffee-700);
}

.process-track {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1.06rem;
  height: 1px;
  background: rgba(109, 84, 63, 0.3);
}

.process-step {
  position: relative;
  padding: 1.4rem 1rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1.05rem;
  background: rgba(252, 251, 249, 0.74);
}

.process-step::before {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  top: -0.31rem;
  left: 1rem;
  background: var(--coffee-700);
  box-shadow: 0 0 0 4px rgba(122, 99, 79, 0.17);
}

.process-step span {
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--coffee-500);
  font-weight: 700;
}

.process-step h3 {
  margin: 0.45rem 0 0.4rem;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.42;
}

.process-list {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.process-list li {
  position: relative;
  padding-left: 0.95rem;
  color: #5f5650;
  font-size: 0.85rem;
  line-height: 1.35;
}

.process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: var(--coffee-700);
}

.deliverables {
  padding-top: clamp(2.9rem, 4vw, 4.4rem);
}

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

.deliverable-card {
  padding: 1.35rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 22px rgba(34, 25, 20, 0.06);
}

.deliverable-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.deliverable-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.deliverable-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
  line-height: 1.36;
  font-size: 0.92rem;
}

.deliverable-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--coffee-700);
}

.founders {
  padding-bottom: clamp(2.8rem, 4vw, 4.2rem);
}

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

.founder-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.founder-role {
  margin: 0 0 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coffee-500);
}

.founder-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.founder-card p {
  margin: 0.55rem 0 0.75rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.founder-card a {
  display: inline-flex;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--coffee-900);
}

.faq {
  padding-top: clamp(2.8rem, 5vw, 4.8rem);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.88rem 1rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  padding-right: 1.2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.06rem;
  color: var(--coffee-700);
  font-size: 1.1rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.statement {
  padding-block: clamp(2.8rem, 5vw, 4.4rem);
}

.statement blockquote {
  margin: 0;
  padding: clamp(1.8rem, 3vw, 2.7rem);
  border-radius: 1.4rem;
  background: linear-gradient(140deg, var(--black), #2a2119);
  color: #fbf6f0;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  font-family: "Fraunces", serif;
  box-shadow: var(--shadow-2);
}

.cta-wrap {
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border: 1px solid #d6c8bb;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(275px, 340px);
  gap: 1rem;
}

.cta h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  max-width: 16ch;
  line-height: 1.08;
}

.cta p {
  color: var(--ink-soft);
  line-height: 1.55;
}

.cta-card {
  padding: 1.1rem;
  border-radius: 1.1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cta-card h3 {
  margin: 0;
}

.cta-card p {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}

.site-footer {
  padding: 1.7rem 0 2rem;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  border-top: 1px solid rgba(124, 96, 73, 0.3);
  padding-top: 1.2rem;
}

.footer-wrap p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(140deg, var(--black), var(--coffee-900));
  box-shadow: var(--shadow-2);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.87rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 38px rgba(37, 27, 21, 0.24);
}

.diamond-rail {
  position: fixed;
  left: 0.7rem;
  bottom: 1rem;
  z-index: 11;
  pointer-events: none;
}

.rail-diamond {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 0.15rem;
  transform: rotate(45deg);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, var(--coffee-500), var(--black));
  box-shadow: 0 10px 18px rgba(28, 20, 16, 0.18);
}

.rail-diamond.r1 {
  left: 0;
  bottom: 0;
  animation: rail-drift 8s ease-in-out infinite;
}

.rail-diamond.r2 {
  left: 18px;
  bottom: 21px;
  width: 9px;
  height: 9px;
  animation: rail-drift 6.8s ease-in-out infinite 0.4s;
}

.rail-diamond.r3 {
  left: 4px;
  bottom: 40px;
  width: 7px;
  height: 7px;
  animation: rail-drift 7.4s ease-in-out infinite 1s;
}

.diamond-side-3d {
  position: fixed;
  right: 1.8rem;
  top: 5.1rem;
  width: 200px;
  height: 190px;
  z-index: 9;
  pointer-events: none;
  perspective: 980px;
}

.diamond-3d {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 0.4rem;
  transform-style: preserve-3d;
  transform: rotate(45deg) rotateX(58deg) rotateZ(16deg);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.9), rgba(122, 99, 79, 0.68));
  box-shadow:
    0 14px 20px rgba(34, 25, 20, 0.22),
    inset 0 -12px 16px rgba(28, 20, 16, 0.18),
    inset 10px 10px 14px rgba(255, 255, 255, 0.34);
}

.diamond-3d::before,
.diamond-3d::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 0.28rem;
}

.diamond-3d::before {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.7), rgba(44, 31, 23, 0.15));
  transform: translateZ(8px);
}

.diamond-3d::after {
  background: linear-gradient(180deg, rgba(40, 28, 20, 0.35), rgba(255, 255, 255, 0.2));
  transform: translateZ(-7px);
}

.diamond-3d i {
  position: absolute;
  inset: 13px;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.7);
  transform: translateZ(13px);
}

.diamond-3d.one {
  left: 66px;
  top: 8px;
  width: 74px;
  height: 74px;
  animation:
    diamond-3d-spin 10s linear infinite,
    diamond-3d-float 4.4s ease-in-out infinite;
}

.diamond-3d.two {
  left: 14px;
  top: 56px;
  width: 56px;
  height: 56px;
  animation:
    diamond-3d-spin 8.4s linear infinite reverse,
    diamond-3d-float 3.8s ease-in-out infinite 0.5s;
}

.diamond-3d.three {
  left: 126px;
  top: 102px;
  width: 40px;
  height: 40px;
  animation:
    diamond-3d-spin 7.4s linear infinite,
    diamond-3d-float 3.4s ease-in-out infinite 0.8s;
}

@keyframes float-diamond {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: rotate(45deg) translateY(-8px);
    opacity: 1;
  }
}

@keyframes rail-drift {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: rotate(45deg) translateY(-9px);
    opacity: 1;
  }
}

@keyframes diamond-3d-spin {
  from {
    transform: rotate(45deg) rotateX(58deg) rotateZ(16deg) rotateY(0deg);
  }
  to {
    transform: rotate(45deg) rotateX(58deg) rotateZ(16deg) rotateY(360deg);
  }
}

@keyframes diamond-3d-float {
  0%,
  100% {
    margin-top: 0;
    filter: brightness(1);
  }
  50% {
    margin-top: -7px;
    filter: brightness(1.08);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(.22, 1, .36, 1);
}

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

[data-delay="80"] { transition-delay: 80ms; }
[data-delay="90"] { transition-delay: 90ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="120"] { transition-delay: 120ms; }
[data-delay="140"] { transition-delay: 140ms; }
[data-delay="180"] { transition-delay: 180ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="270"] { transition-delay: 270ms; }

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

  .hero-stage {
    min-height: 360px;
  }

  .hero-title-orbit {
    right: 0.2rem;
    top: -1.6rem;
    transform: scale(0.88);
    transform-origin: right top;
  }

  .stage-card-float {
    right: auto;
    width: min(82%, 260px);
  }

  .impact-grid,
  .service-list,
  .plan-grid,
  .process-track,
  .results-grid,
  .founders-grid,
  .deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track::before {
    display: none;
  }

  .before-after {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .ba-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .diamond-rail {
    left: 0.55rem;
    bottom: 0.9rem;
  }

  .diamond-side-3d {
    right: 1rem;
    top: 4.9rem;
    transform: scale(0.88);
    transform-origin: right top;
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    inset: calc(100% + 0.6rem) 1rem auto;
    display: grid;
    gap: 0.75rem;
    justify-items: start;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(252, 251, 249, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  }

  .nav-cta {
    display: none;
  }

  body.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero-copy h1 {
    max-width: 16ch;
  }

  .hero-title-orbit {
    right: -0.5rem;
    top: -1.05rem;
    transform: scale(0.68);
    transform-origin: right top;
  }

  .impact-grid,
  .service-list,
  .plan-grid,
  .process-track,
  .results-grid,
  .founders-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .stage-card-main {
    padding: 1.5rem;
  }

  .stage-card-float {
    position: static;
    margin-top: 0.8rem;
    width: 100%;
  }

  .diamond-cluster {
    left: auto;
    right: 0.7rem;
    top: -0.5rem;
  }

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

  .floating-wa {
    right: 0.8rem;
    bottom: 0.8rem;
    min-width: 108px;
    padding: 0.64rem 0.8rem;
    font-size: 0.8rem;
  }

  .diamond-rail {
    display: none;
  }

  .diamond-side-3d {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
