@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #fbf6ed;
  --bg-soft: #f2e8d9;
  --surface: #fffdf8;
  --surface-blue: #eef8ff;
  --ink: #2f241b;
  --brown: #5a3928;
  --brown-dark: #342117;
  --muted: #76695f;
  --line: #eadcc8;
  --sky: #86cdf4;
  --sky-deep: #287fa9;
  --gold: #d7a43a;
  --gold-soft: #fff1c8;
  --shadow: 0 24px 70px rgba(62, 41, 25, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(134, 205, 244, 0.28), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(215, 164, 58, 0.18), transparent 28rem),
    linear-gradient(180deg, #fffaf2 0%, var(--bg) 46%, #f6ede1 100%);
  color: var(--ink);
  font-family: "Assistant", Arial, "Segoe UI", sans-serif;
  line-height: 1.7;
  text-align: right;
}

.scroll-progress {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 30;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
  transform: scaleX(0);
  transform-origin: right center;
  will-change: transform;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(234, 220, 200, 0.78);
  background: rgba(255, 250, 242, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(215, 164, 58, 0.24);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 14px 34px rgba(62, 41, 25, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-wrap {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(234, 220, 200, 0.95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(90, 57, 40, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand:hover .brand-logo-wrap {
  transform: rotate(-2deg) scale(1.02);
  box-shadow: 0 16px 34px rgba(90, 57, 40, 0.2);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brown), var(--brown-dark));
  color: var(--gold-soft);
  box-shadow: 0 10px 28px rgba(90, 57, 40, 0.22);
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(-4deg) scale(1.03);
  box-shadow: 0 16px 34px rgba(90, 57, 40, 0.28);
}

.brand-name,
.brand-line {
  display: block;
}

.brand-name {
  color: var(--brown-dark);
  font-size: 1.12rem;
  font-weight: 900;
}

.brand-line {
  color: var(--muted);
  font-size: 0.84rem;
}

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

.nav-links a,
.mobile-nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
  color: var(--brown-dark);
}

.nav-links a:hover {
  background: rgba(134, 205, 244, 0.23);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--brown), var(--brown-dark));
  color: #fffaf2;
  box-shadow: 0 14px 34px rgba(90, 57, 40, 0.24);
}

.btn.primary:hover {
  box-shadow: 0 18px 40px rgba(90, 57, 40, 0.3);
}

.btn.secondary {
  border-color: rgba(40, 127, 169, 0.28);
  background: linear-gradient(135deg, #ffffff, var(--surface-blue));
  color: var(--sky-deep);
}

.btn.secondary:hover {
  border-color: var(--sky-deep);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 64px 0 50px;
}

.landing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  min-height: clamp(690px, 80vh, 880px);
  overflow: hidden;
  isolation: isolate;
  margin-top: 20px;
  border: 1px solid rgba(234, 220, 200, 0.95);
  border-radius: 8px;
  background: var(--brown-dark);
  padding: clamp(32px, 6vw, 72px);
  box-shadow: var(--shadow);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05) sepia(0.08);
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.08);
  transition: transform 120ms linear;
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(134, 205, 244, 0.16), transparent 24rem),
    linear-gradient(270deg, rgba(52, 33, 23, 0.96) 0%, rgba(52, 33, 23, 0.9) 54%, rgba(52, 33, 23, 0.68) 100%);
}

.hero-content,
.about-copy {
  position: relative;
  z-index: 1;
}

.landing-hero .hero-content {
  max-width: 820px;
  align-self: center;
}

.landing-hero .eyebrow {
  color: var(--gold-soft);
}

.landing-hero .eyebrow::before {
  background: var(--sky);
}

.landing-hero h1 {
  color: #fffaf2;
  text-shadow: 0 14px 44px rgba(0, 0, 0, 0.34);
}

.landing-hero p {
  max-width: 660px;
  color: #fff4e3;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.landing-hero .btn.primary {
  background: linear-gradient(135deg, var(--gold), #b8791e);
  color: var(--brown-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.landing-hero .btn.secondary {
  border-color: rgba(255, 250, 242, 0.38);
  background: rgba(255, 250, 242, 0.94);
  color: var(--brown-dark);
  backdrop-filter: blur(10px);
}

.landing-hero .trust-row span {
  border-color: rgba(255, 250, 242, 0.28);
  background: rgba(52, 33, 23, 0.42);
  color: #fffaf2;
  backdrop-filter: blur(12px);
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.5);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  display: grid;
  gap: 2px;
  min-height: 82px;
  align-content: center;
  padding: 14px 18px;
  color: var(--brown-dark);
}

.hero-proof div + div {
  border-inline-start: 1px solid rgba(90, 57, 40, 0.14);
}

.hero-proof strong {
  color: var(--sky-deep);
  font-size: 0.9rem;
}

.hero-proof span {
  font-weight: 900;
}

.hero h1,
.page-hero h1,
.about-hero h1 {
  max-width: 930px;
  margin: 0 0 20px;
  color: var(--brown-dark);
  font-family: "Assistant", Arial, "Segoe UI", sans-serif;
  font-size: clamp(2.65rem, 5.4vw, 5.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.about-hero p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.landing-hero .hero-content h1 {
  color: #fffaf2;
}

.landing-hero .hero-content p {
  color: #fff4e3;
}

.hero-visual,
.about-photo,
.founder-mini-photo {
  overflow: hidden;
  border: 1px solid rgba(234, 220, 200, 0.92);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  transform: translateZ(0);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 241, 200, 0.7);
  border-radius: 8px;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) sepia(0.08);
  animation: heroDrift 11s ease-in-out infinite alternate;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--sky-deep);
  font-size: 0.9rem;
  font-weight: 900;
}

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

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  border: 1px solid rgba(234, 220, 200, 0.88);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.8);
  color: var(--muted);
  padding: 8px 13px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.trust-row span:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 127, 169, 0.34);
  background: rgba(238, 248, 255, 0.88);
}

.page-hero {
  max-width: 890px;
  padding: 76px 0 40px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--sky-deep);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--brown-dark);
}

.page-hero.compact {
  min-height: 58vh;
}

.section {
  padding: 62px 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  color: var(--brown-dark);
  font-family: "Assistant", Arial, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--brown-dark);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.35;
}

.cards {
  display: grid;
  gap: 16px;
}

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

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.panel,
.contact-form {
  border: 1px solid rgba(234, 220, 200, 0.95);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 38px rgba(62, 41, 25, 0.065);
}

.card {
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.card:hover {
  border-color: rgba(215, 164, 58, 0.55);
  box-shadow: 0 18px 46px rgba(62, 41, 25, 0.095);
  transform: translateY(-4px);
}

.card p,
.panel p,
.step-card p,
.final-cta p,
.contact-copy li,
.founder-teaser p,
.about-story p,
.values-section p {
  color: var(--muted);
}

.service-link {
  position: relative;
  min-height: 220px;
  text-decoration: none;
}

.service-link::after {
  content: "";
  position: absolute;
  inset-inline-start: 22px;
  inset-block-start: 22px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(134, 205, 244, 0.28);
}

.service-link span {
  display: inline-block;
  margin-top: 10px;
  color: var(--sky-deep);
  font-weight: 900;
}

.competitor-gap {
  padding-top: 72px;
}

.gap-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.gap-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(234, 220, 200, 0.95);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.gap-card::after {
  content: "";
  position: absolute;
  inset-inline-start: -4rem;
  inset-block-end: -5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  pointer-events: none;
}

.gap-card span {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.9rem;
  font-weight: 900;
}

.gap-card h3 {
  max-width: 560px;
  font-family: "Assistant", Arial, "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.55rem);
  line-height: 1.08;
}

.gap-card p {
  max-width: 540px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.gap-card.weak {
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(246, 237, 225, 0.92));
}

.gap-card.weak::after {
  background: rgba(118, 105, 95, 0.1);
}

.gap-card.weak span {
  background: rgba(118, 105, 95, 0.1);
  color: var(--muted);
}

.gap-card.strong {
  border-color: rgba(40, 127, 169, 0.26);
  background:
    radial-gradient(circle at 12% 18%, rgba(134, 205, 244, 0.24), transparent 18rem),
    linear-gradient(135deg, #fffdf8, #eef8ff);
}

.gap-card.strong::after {
  background: rgba(215, 164, 58, 0.18);
}

.gap-card.strong span {
  background: var(--gold-soft);
  color: var(--brown-dark);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: start;
}

.panel {
  padding: 30px;
}

.panel p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.panel-actions {
  margin-top: 24px;
}

.step-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-soft), rgba(134, 205, 244, 0.22));
  color: var(--brown-dark);
  font-weight: 900;
}

.benefit-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid rgba(234, 220, 200, 0.95);
  border-bottom: 1px solid rgba(234, 220, 200, 0.95);
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(234, 220, 200, 0.95);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  padding: 15px;
}

.benefit-list span {
  color: var(--gold);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid rgba(234, 220, 200, 0.95);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  padding: 18px 20px;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

summary {
  cursor: pointer;
  color: var(--brown-dark);
  font-weight: 900;
}

details[open] {
  border-color: rgba(40, 127, 169, 0.34);
  background: rgba(238, 248, 255, 0.7);
  box-shadow: 0 16px 42px rgba(62, 41, 25, 0.08);
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.founder-teaser {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin: 16px 0;
  border: 1px solid rgba(234, 220, 200, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(238, 248, 255, 0.84)),
    var(--surface);
  padding: 28px;
  box-shadow: var(--shadow);
}

.founder-mini-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.founder-teaser p {
  max-width: 690px;
  font-size: 1.08rem;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 46px;
  align-items: center;
  padding: 72px 0 48px;
}

.about-photo {
  position: relative;
  transform: translateZ(0);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset-inline-end: -18px;
  inset-block-end: -18px;
  z-index: -1;
  width: 56%;
  height: 42%;
  border-radius: 8px;
  background: var(--gold);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms ease;
}

.about-photo:hover img,
.founder-mini-photo:hover img {
  transform: scale(1.035);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
}

.warm-panel {
  background: linear-gradient(135deg, var(--gold-soft), rgba(255, 253, 248, 0.95));
}

.warm-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-inline-start: 0;
  padding-inline-end: 20px;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin: 38px 0 74px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 6% 20%, rgba(134, 205, 244, 0.28), transparent 18rem),
    linear-gradient(135deg, var(--brown), var(--brown-dark));
  color: #fffaf2;
  padding: 38px;
  box-shadow: var(--shadow);
  position: relative;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset-block-start: -40%;
  inset-inline-start: -10%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(215, 164, 58, 0.12);
  pointer-events: none;
  animation: softPulse 7s ease-in-out infinite alternate;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: #fffaf2;
}

.final-cta .eyebrow {
  color: var(--gold-soft);
}

.final-cta p {
  max-width: 680px;
  margin: 12px 0 0;
  color: #f2e8d9;
}

.final-cta .btn.secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 250, 242, 0.32);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
  padding: 20px 0 62px;
}

.fit-quiz-form {
  display: block;
}

.fit-quiz .section-head p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
}

.quiz-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 24px;
  align-items: start;
}

.quiz-questions {
  display: grid;
  gap: 14px;
}

.quiz-card {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(234, 220, 200, 0.95);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(62, 41, 25, 0.055);
}

.quiz-card legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--brown-dark);
  font-size: 1.08rem;
  font-weight: 900;
}

.quiz-card legend span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--brown-dark);
  font-size: 0.95rem;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quiz-option {
  position: relative;
  min-height: 50px;
  border: 1px solid rgba(234, 220, 200, 0.95);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--ink);
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.quiz-option:hover {
  border-color: rgba(40, 127, 169, 0.38);
  transform: translateY(-1px);
}

.quiz-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quiz-option:has(input:checked) {
  border-color: var(--sky-deep);
  background: var(--surface-blue);
  box-shadow: 0 0 0 3px rgba(134, 205, 244, 0.18);
}

.quiz-result {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(90, 57, 40, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(134, 205, 244, 0.18), transparent 13rem),
    linear-gradient(135deg, #fffdf8, #fff1c8);
  padding: 24px;
  box-shadow: var(--shadow);
}

.quiz-result .eyebrow {
  margin-bottom: 0;
}

.fit-level {
  display: block;
  color: var(--brown-dark);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
}

.fit-note {
  margin: 0;
  color: var(--muted);
}

.fit-meter {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(90, 57, 40, 0.12);
}

.fit-meter span {
  display: block;
  inline-size: 6%;
  block-size: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sky), var(--gold));
  transition: inline-size 260ms ease;
}

.quiz-contact {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.quiz-contact h3 {
  margin-top: 4px;
}

.contact-copy ul {
  margin: 18px 0 24px;
  padding-right: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 26px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--brown-dark);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 4px rgba(134, 205, 244, 0.22);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .hero-visual.reveal,
.motion-ready .about-photo.reveal,
.motion-ready .founder-mini-photo.reveal {
  transform: translateY(24px) scale(0.985);
}

.motion-ready .reveal.is-visible,
.motion-ready .hero-visual.reveal.is-visible,
.motion-ready .about-photo.reveal.is-visible,
.motion-ready .founder-mini-photo.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.no-motion .reveal {
  opacity: 1;
  transform: none;
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035) translate3d(-6px, 4px, 0);
  }
}

@keyframes softPulse {
  from {
    transform: scale(0.95);
    opacity: 0.55;
  }

  to {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid rgba(234, 220, 200, 0.95);
  background: rgba(255, 253, 248, 0.82);
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  gap: 28px;
}

.footer-grid p {
  max-width: 460px;
  color: var(--muted);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  font-weight: 800;
}

.footer-contact a {
  color: var(--sky-deep);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--brown-dark);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 1120px) {
  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--brown-dark);
    padding: 10px 14px;
    font-weight: 900;
  }

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav {
    gap: 6px;
    width: min(100% - 34px, var(--max));
    margin: 0 auto;
    padding: 0 0 16px;
  }

  .mobile-nav a {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    padding: 12px;
    font-weight: 800;
  }

  .hero,
  .split,
  .benefit-band,
  .contact-layout,
  .quiz-layout,
  .final-cta,
  .about-hero,
  .story-grid,
  .gap-grid {
    grid-template-columns: 1fr;
  }

  .quiz-result {
    position: static;
  }

  .landing-hero {
    min-height: 760px;
    padding-bottom: 56px;
  }

  .about-photo {
    max-width: 440px;
  }

  .cards.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .brand-logo-wrap {
    width: 54px;
    height: 54px;
  }

  .brand-logo {
    width: 49px;
    height: 49px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-line {
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero,
  .cards.three,
  .cards.four,
  .footer-grid,
  .contact-form,
  .quiz-options,
  .founder-teaser {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    min-height: auto;
    padding: 28px;
  }

  .landing-hero h1 {
    font-size: 3rem;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 18% 18%, rgba(134, 205, 244, 0.18), transparent 20rem),
      linear-gradient(180deg, rgba(52, 33, 23, 0.94) 0%, rgba(52, 33, 23, 0.86) 58%, rgba(52, 33, 23, 0.76) 100%);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-proof div + div {
    border-inline-start: 0;
    border-top: 1px solid rgba(90, 57, 40, 0.14);
  }

  .hero-visual {
    order: -1;
  }

  .hero h1,
  .page-hero h1,
  .about-hero h1 {
    font-size: 2.65rem;
  }

  .hero p,
  .page-hero p,
  .about-hero p {
    font-size: 1.04rem;
  }

  .section {
    padding: 44px 0;
  }

  .cta-row,
  .cta-row .btn,
  .final-cta .btn {
    width: 100%;
  }

  .founder-teaser,
  .final-cta,
  .panel,
  .contact-form,
  .quiz-result,
  .quiz-card {
    padding: 22px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
