:root {
  --bg: oklch(98% 0.004 240);
  --surface: oklch(100% 0 0);
  --fg: oklch(20% 0.02 240);
  --muted: oklch(50% 0.018 240);
  --border: oklch(90% 0.006 240);
  --accent: oklch(56% 0.12 170);
  --accent-fg: oklch(99% 0.01 170);
  --accent-soft: oklch(94% 0.03 170);
  --accent-strong: oklch(42% 0.1 170);

  --font-display:
    "Söhne", "Avenir Next", -apple-system, BlinkMacSystemFont, system-ui,
    sans-serif;
  --font-body:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;

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

  --shadow-card:
    0 1px 2px oklch(20% 0.02 240 / 0.04), 0 8px 24px oklch(20% 0.02 240 / 0.06);
  --shadow-lift:
    0 4px 8px oklch(20% 0.02 240 / 0.06), 0 16px 40px oklch(20% 0.02 240 / 0.1);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.ff-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  padding: clamp(56px, 9vw, 120px) 0;
}
section.tight {
  padding: clamp(40px, 6vw, 72px) 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--accent);
}

h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fg);
}
h2,
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
}
h3,
.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
}
p.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 65ch;
}
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
}

.ff-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.ff-btn:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}
.ff-btn-primary {
  background: var(--accent-strong);
  color: var(--accent-fg);
  box-shadow: var(--shadow-card);
}
.ff-btn-primary:hover {
  background: oklch(34% 0.1 170);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}
.ff-btn-primary:active {
  transform: translateY(0);
}
.ff-btn-secondary {
  background: var(--surface);
  color: var(--fg);
  border: 1.5px solid var(--border);
}
.ff-btn-secondary:hover {
  border-color: var(--fg);
  background: oklch(96% 0.006 240);
}
.ff-btn-ghost {
  height: auto;
  padding: 0;
  color: var(--fg);
  font-weight: 600;
  border-bottom: 1.5px solid var(--border);
  border-radius: 0;
  padding-bottom: 2px;
}
.ff-btn-ghost:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}
.ff-btn-sm {
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
}
.ff-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: oklch(98% 0.004 240 / 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 oklch(20% 0.02 240 / 0.02);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.ff-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.ff-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}
.ff-logo-mark::before,
.ff-logo-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--accent-fg);
}
.ff-logo-mark::before {
  width: 14px;
  height: 14px;
  top: 8px;
  left: 7px;
}
.ff-logo-mark::after {
  width: 9px;
  height: 9px;
  bottom: 6px;
  right: 6px;
  opacity: 0.6;
}
.ff-logo small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition:
    background-color 0.16s ease,
    color 0.16s ease;
}
.nav-links a:hover {
  color: var(--fg);
  background: oklch(95% 0.008 240);
}
.nav-links a[aria-current="page"] {
  color: var(--fg);
  background: var(--accent-soft);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--fg);
  position: relative;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.nav-toggle span::before {
  position: absolute;
  top: -6px;
}
.nav-toggle span::after {
  position: absolute;
  top: 6px;
}
.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.ph-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(
    155deg,
    oklch(93% 0.03 170) 0%,
    oklch(96% 0.015 90) 52%,
    oklch(92% 0.02 60) 100%
  );
  isolation: isolate;
}
.ph-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    oklch(20% 0.02 240 / 0.05) 1px,
    transparent 1px
  );
  background-size: 14px 14px;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.ph-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    oklch(20% 0.03 60 / 0.14) 100%
  );
}
.ph-img .ph-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.ph-img .ph-icon svg {
  width: 34%;
  height: 34%;
  max-width: 88px;
  max-height: 88px;
  color: oklch(30% 0.05 60 / 0.4);
  stroke-width: 1.5;
}
.ph-img .ph-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(30% 0.05 60 / 0.55);
}
.ph-img.tone-clay {
  background: linear-gradient(
    155deg,
    oklch(90% 0.035 55) 0%,
    oklch(95% 0.015 90) 55%,
    oklch(88% 0.03 40) 100%
  );
}
.ph-img.tone-wool {
  background: linear-gradient(
    155deg,
    oklch(94% 0.02 90) 0%,
    oklch(97% 0.008 90) 55%,
    oklch(90% 0.025 80) 100%
  );
}
.ph-img.tone-fiber {
  background: linear-gradient(
    155deg,
    oklch(92% 0.03 40) 0%,
    oklch(96% 0.012 60) 55%,
    oklch(88% 0.035 30) 100%
  );
}
.ph-img.tone-sage {
  background: linear-gradient(
    155deg,
    oklch(92% 0.04 170) 0%,
    oklch(96% 0.012 150) 55%,
    oklch(88% 0.04 165) 100%
  );
}

.hero {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(56px, 8vw, 96px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-copy .lede {
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg {
  width: 16px;
  height: 16px;
  color: var(--accent-strong);
  flex-shrink: 0;
}
.hero-media {
  position: relative;
}
.hero-media .ph-img {
  aspect-ratio: 4 / 5;
}
.hero-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  background: oklch(100% 0 0 / 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lift);
}
.hero-badge svg {
  width: 22px;
  height: 22px;
  color: var(--accent-strong);
  flex-shrink: 0;
}
.hero-badge strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
}
.hero-badge span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 1px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cat-card .ph-img {
  aspect-ratio: 1 / 1;
  transition: transform 0.25s ease;
}
.cat-card:hover .ph-img {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.cat-card h3 {
  font-size: 17px;
}
.cat-card p {
  font-size: 13.5px;
  color: var(--muted);
}
.cat-count {
  font-size: 12px;
  color: var(--accent-strong);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.benefit-card {
  background: var(--surface);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-strong);
  stroke-width: 1.6;
}
.benefit-card p {
  font-size: 14.5px;
  color: var(--muted);
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.kit-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}
.kit-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
  border-color: oklch(90% 0.006 240);
}
.kit-card .ph-img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}
.kit-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.kit-tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.kit-card h3 {
  font-size: 18px;
}
.kit-card p.desc {
  font-size: 13.5px;
  color: var(--muted);
  flex: 1;
}
.kit-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.kit-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
}
.kit-price small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--muted);
  margin-left: 4px;
}
.kit-level {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
}
.kit-level .dots {
  display: flex;
  gap: 3px;
}
.kit-level .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--border);
}
.kit-level .dot.on {
  background: var(--accent-strong);
}

.flow-band {
  background: linear-gradient(140deg, var(--accent-strong), oklch(46% 0.1 185));
  border-radius: var(--radius-lg);
  color: var(--accent-fg);
  padding: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.flow-band::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: oklch(100% 0 0 / 0.08);
}
.flow-band .eyebrow {
  color: oklch(94% 0.03 170);
}
.flow-band .eyebrow::before {
  background: oklch(94% 0.03 170);
}
.flow-band h2 {
  color: var(--accent-fg);
}
.flow-band p {
  color: oklch(96% 0.02 170 / 0.88);
}
.flow-media {
  position: relative;
  z-index: 1;
}
.flow-media .ph-img {
  aspect-ratio: 5 / 4;
  background: linear-gradient(
    155deg,
    oklch(60% 0.09 175) 0%,
    oklch(70% 0.07 160) 100%
  );
}
.flow-media .ph-img::before {
  opacity: 0.25;
}
.flow-media .ph-img .ph-icon svg {
  color: oklch(98% 0.02 170 / 0.6);
}
.flow-media .ph-img .ph-label {
  color: oklch(98% 0.02 170 / 0.65);
}
.flow-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.flow-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.flow-meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.flow-meta strong {
  font-family: var(--font-display);
  font-size: 17px;
}
.flow-meta span {
  font-size: 12.5px;
  color: oklch(96% 0.02 170 / 0.72);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.story-media .ph-img {
  aspect-ratio: 3 / 4;
}
.story-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.story-copy p.body {
  max-width: 60ch;
}
.story-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}
.story-signature .avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-strong);
  font-size: 15px;
  flex-shrink: 0;
}
.story-signature strong {
  display: block;
  font-size: 14.5px;
}
.story-signature span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}
.story-stats {
  display: flex;
  gap: 32px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.story-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
}
.story-stats div span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-item .ph-img {
  aspect-ratio: 3 / 4;
}
.gallery-item .cap strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
}
.gallery-item .cap span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi-quote {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg);
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-strong);
  font-size: 14px;
  flex-shrink: 0;
}
.testi-person strong {
  display: block;
  font-size: 13.5px;
}
.testi-person span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
}
.testi-stars {
  display: flex;
  gap: 3px;
}
.testi-stars svg {
  width: 14px;
  height: 14px;
  color: var(--accent-strong);
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  max-width: 780px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
}
.faq-q .plus {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--fg);
  top: 50%;
  left: 50%;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.faq-q .plus::before {
  width: 14px;
  height: 1.6px;
  transform: translate(-50%, -50%);
}
.faq-q .plus::after {
  width: 1.6px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item[aria-expanded="true"] .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 64ch;
}

.cta-band {
  background: oklch(96% 0.01 90);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-band h2 {
  max-width: 20ch;
}
.cta-band p.lede {
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 32ch;
  margin-top: 14px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.16s ease,
    background-color 0.16s ease;
}
.footer-social a:hover {
  border-color: var(--accent-strong);
  background: var(--accent-soft);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-col h4 {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  font-size: 14px;
  color: var(--fg);
}
.footer-col a:hover {
  color: var(--accent-strong);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .legal-links {
  display: flex;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(140%);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {
  font-size: 13.5px;
  color: var(--muted);
}
.cookie-banner p a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 56px);
}
.page-hero .eyebrow {
  margin-bottom: 16px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a:hover {
  color: var(--accent-strong);
}
.breadcrumb .sep {
  opacity: 0.5;
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-chip {
  height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.16s ease;
  display: inline-flex;
  align-items: center;
}
.filter-chip:hover {
  border-color: var(--fg);
  color: var(--fg);
}
.filter-chip.is-active {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--surface);
}

.prose {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.prose h2 {
  margin-top: 8px;
}
.prose p,
.prose li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.prose ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 22px;
  list-style: disc;
}
.prose .updated {
  font-size: 13px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-item .ic {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .ic svg {
  width: 19px;
  height: 19px;
  color: var(--accent-strong);
}
.contact-info-item strong {
  display: block;
  font-size: 14.5px;
}
.contact-info-item span,
.contact-info-item a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}
.contact-info-item a:hover {
  color: var(--accent-strong);
}
.contact-map .ph-img {
  aspect-ratio: 16 / 10;
  margin-top: 32px;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
}
.field input,
.field textarea,
.field select {
  height: 50px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  padding: 0 16px;
  font: inherit;
  font-size: 14.5px;
  color: var(--fg);
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}
.field textarea {
  height: 120px;
  padding: 14px 16px;
  resize: vertical;
}
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field .error-msg {
  display: none;
  font-size: 12.5px;
  color: oklch(52% 0.16 30);
}
.field.has-error input,
.field.has-error textarea {
  border-color: oklch(52% 0.16 30);
}
.field.has-error .error-msg {
  display: block;
}
.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.field-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-strong);
  flex-shrink: 0;
}
.field-check label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.field-check a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 8px;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.form-success.is-visible {
  display: flex;
}
.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--accent-strong);
}
.form-fields.is-hidden {
  display: none;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.course-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.course-card .ph-img {
  border-radius: 0;
  height: 100%;
  min-height: 220px;
}
.course-body {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.course-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--muted);
}
.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.course-meta svg {
  width: 14px;
  height: 14px;
  color: var(--accent-strong);
}

@media (max-width: 1080px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-grid .footer-col:last-child {
    grid-column: span 2;
  }
  .course-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-media {
    order: -1;
  }
  .flow-band {
    grid-template-columns: 1fr;
  }
  .flow-media {
    order: -1;
  }
  .course-card {
    grid-template-columns: 1fr;
  }
  .course-card .ph-img {
    aspect-ratio: 16/9;
    min-height: 0;
  }
}
@media (max-width: 640px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .kit-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .footer-grid .footer-col:last-child {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .story-stats {
    gap: 22px;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .header-actions .ff-btn {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  inset: 84px 0 0 0;
  z-index: 39;
  background: var(--bg);
  padding: 24px var(--gutter) 40px;
  display: none;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .ff-btn {
  margin-top: 20px;
}

a:focus-visible,
button:focus-visible,
.filter-chip:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
  border-radius: 6px;
}

.badge-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}
