/* KATIE — Design tokens */
:root {
  --color-milk: #F7F3ED;
  --color-sage: #5B7A6A;
  --color-sage-light: #8FA898;
  --color-sage-dark: #3D5249;
  --color-lavender: #B8A9C9;
  --color-honey: #D4A574;
  --color-rose: #C9A0A0;
  --color-ink: #2A2F2C;
  --color-ink-muted: #5C6560;
  --color-white: #FFFFFF;
  --color-surface: #FDFBF8;
  --color-border: rgba(91, 122, 106, 0.15);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-soap: 12px 12px 20px 20px;

  --shadow-soft: 0 4px 24px rgba(42, 47, 44, 0.06);
  --shadow-card: 0 8px 32px rgba(42, 47, 44, 0.08);
  --shadow-soap: 0 12px 40px rgba(91, 122, 106, 0.2);

  --header-h: 72px;
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease-out);
  --transition-color: color 0.3s var(--ease-out);
  --transition-transform: transform 0.35s var(--ease-spring);
  --transition-opacity: opacity 0.35s var(--ease-out);
  --transition-shadow: box-shadow 0.35s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

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

  .marquee__track { animation: none; }

  .hero-float {
    opacity: 1 !important;
    transform: rotate(var(--rotate, 0deg)) !important;
  }

  .hero-landing__eyebrow,
  .hero-landing__title-line,
  .hero-landing__subtitle,
  .hero-landing__actions,
  .hero-landing__stats,
  .hero-landing__scroll {
    opacity: 1 !important;
    transform: none !important;
  }

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

  .process-timeline,
  .feature-card {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-milk);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  color-scheme: light;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(91, 122, 106, 0.12);
}

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

a {
  color: var(--color-sage-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-sage); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 3px;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--color-sage);
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Paper grain — signature texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 200;
  background: transparent;
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--color-sage), var(--color-lavender));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 243, 237, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.header.is-scrolled { box-shadow: var(--shadow-soft); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-sage-dark);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.logo__icon { width: 36px; height: 36px; color: var(--color-sage); }

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-ink-muted);
  padding: 0.25rem 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-sage);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }

.nav__link--cta {
  background: var(--color-sage);
  color: var(--color-white);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  transition: background 0.3s var(--ease-out), transform 0.35s var(--ease-spring);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--color-sage-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
  border-radius: 2px;
}

/* Buttons */
[hidden] {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-sage);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-sage-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn--ghost {
  background: transparent;
  color: var(--color-sage-dark);
  border: 1.5px solid var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-sage);
  background: rgba(91, 122, 106, 0.06);
}

.btn--small { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* Hero landing — TextRotate + floating parallax */
.hero-landing {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 2rem) 1.5rem 3rem;
}

.hero-landing__floating {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  max-width: none;
  width: 100%;
}

.hero-float {
  position: absolute;
  will-change: transform;
  opacity: 0;
  transform: rotate(var(--rotate, 0deg));
  transition: opacity 0.6s ease;
}

.hero-landing--ready .hero-float {
  opacity: 1;
}

.hero-float img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(42, 47, 44, 0.18);
}

/* Дальше от центрального текста */
.hero-float--1 { top: 18%; left: 3%; width: 4.5rem; height: 3.25rem; transition-delay: 0.5s; }
.hero-float--2 { top: 6%; left: 8%; width: 9rem; height: 6.5rem; transition-delay: 0.7s; }
.hero-float--3 { bottom: 12%; left: 4%; top: auto; width: 9rem; height: 9rem; transition-delay: 0.9s; }
.hero-float--4 { top: 8%; right: 4%; left: auto; width: 9rem; height: 8rem; transition-delay: 1.1s; }
.hero-float--5 { bottom: 10%; right: 3%; left: auto; width: 10rem; height: 10rem; transition-delay: 1.3s; }

.hero-landing__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 44rem;
  pointer-events: none;
}

.hero-landing__content a,
.hero-landing__content button {
  pointer-events: auto;
}

.hero-landing__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.hero-landing--ready .hero-landing__eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero-landing__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  text-wrap: balance;
}

.hero-landing__title-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.hero-landing--ready .hero-landing__title-line {
  opacity: 1;
  transform: translateY(0);
}

.text-rotate {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  min-height: 1.15em;
  color: var(--color-sage-dark);
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}

.hero-landing--ready .text-rotate {
  opacity: 1;
  transform: translateY(0);
}

.text-rotate__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-rotate__visible {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}

.text-rotate__char {
  display: inline-block;
  will-change: transform, opacity;
}

.text-rotate__char--enter {
  animation: charEnter 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.text-rotate__char--exit {
  animation: charExit 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes charEnter {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes charExit {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-120%); opacity: 0; }
}

.hero-landing__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  color: var(--color-ink-muted);
  max-width: 36ch;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}

.hero-landing--ready .hero-landing__subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-landing__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.7s, transform 0.4s ease 0.7s;
}

.hero-landing--ready .hero-landing__actions {
  opacity: 1;
  transform: translateY(0);
}

.btn--hero {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  padding: 0.75rem 1.75rem;
  box-shadow: var(--shadow-card);
}

.btn--hero:hover {
  transform: translateY(-2px) scale(1.03);
}

/* Hero stats & scroll cue */
.hero-landing__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  list-style: none;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out) 0.85s, transform 0.5s var(--ease-out) 0.85s;
}

.hero-landing--ready .hero-landing__stats {
  opacity: 1;
  transform: translateY(0);
}

.hero-landing__stats li {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  text-align: center;
}

.hero-landing__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-sage-dark);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.hero-landing__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
  color: var(--color-ink-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out) 1s, color 0.3s var(--ease-out);
}

.hero-landing--ready .hero-landing__scroll {
  opacity: 1;
}

.hero-landing__scroll:hover {
  color: var(--color-sage);
}

.hero-landing__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-sage), transparent);
  animation: scrollPulse 2s var(--ease-out) infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--color-border);
  background: var(--color-surface);
  padding-block: 0.875rem;
}

.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 55s linear infinite;
  will-change: transform;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  padding-right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-sage-dark);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.marquee__sep {
  color: var(--color-sage-light);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* Feature sections */
.features {
  padding: var(--space-2xl) 0;
  background: var(--color-milk);
}

.features__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto var(--space-xl);
}

.features__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--color-ink);
  text-wrap: balance;
}

.features__desc {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
  text-wrap: pretty;
}

.features__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 2.5rem;
}

.features__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 20rem;
  transition: transform 0.3s var(--ease-out);
}

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

.features__media {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.features__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.features__media--portrait .features__image {
  object-position: center 30%;
}

.features__name {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
}

.features__text {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) 0;
}

.section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
  text-wrap: balance;
}

.section__desc {
  color: var(--color-ink-muted);
  font-size: 1.05rem;
}

/* Catalog */
.catalog { background: var(--color-surface); }

.catalog__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  background: transparent;
  color: var(--color-ink-muted);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--color-sage);
  border-color: var(--color-sage);
  color: var(--color-white);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.catalog__more {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.catalog__more .btn {
  min-width: 12rem;
  padding: 0.75rem 2rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out), border-color 0.3s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-border);
}

.product-card.is-hidden { display: none; }

.product-card__visual {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  background: var(--color-milk);
}

.product-card__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  pointer-events: none;
}

.product-swiper {
  width: 100%;
  height: 100%;
}

.product-swiper .swiper-slide {
  height: 100%;
}

.product-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-swiper .swiper-pagination {
  bottom: 0.5rem !important;
}

.product-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--color-white);
  opacity: 0.55;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.product-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
  background: var(--color-white);
}

.product-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  min-height: calc(1.5em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: auto;
}

.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-sage-dark);
  font-variant-numeric: tabular-nums;
}

.product-card__weight-inline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-ink-muted);
  font-variant-numeric: tabular-nums;
}

/* About — feature sections layout */
.about {
  background: var(--color-milk);
}

.about__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  max-width: 56rem;
  margin: 0 auto;
}

.about__visual {
  width: 100%;
  max-width: 32rem;
  flex-shrink: 0;
}

.about__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  max-width: 28rem;
}

.about__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: transform 0.3s var(--ease-out);
}

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

.about__icon {
  flex-shrink: 0;
  display: grid;
  place-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  padding: 1.25rem;
}

.about__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.about__icon--sage {
  background: rgba(91, 122, 106, 0.12);
  color: var(--color-sage-dark);
}

.about__icon--green {
  background: rgba(143, 168, 152, 0.2);
  color: var(--color-sage);
}

.about__icon--warm {
  background: rgba(212, 165, 116, 0.22);
  color: #b8783a;
}

.about__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.35rem;
}

.about__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-ink-muted);
  text-wrap: pretty;
}

@media (min-width: 768px) {
  .about__layout {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    max-width: 64rem;
  }

  .about__visual {
    max-width: 28rem;
    flex: 1 1 45%;
  }

  .about__list {
    flex: 1 1 50%;
    max-width: none;
    padding-left: 0.5rem;
  }
}

/* Process — feature cards (shadcn / feature-card) */
.process {
  background: var(--color-surface);
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.feature-card-wrap {
  height: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 2rem;
  background: var(--color-white);
  color: var(--color-ink);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-card.is-visible {
  animation: feature-card-in 0.5s ease-out both;
  animation-delay: var(--stagger, 0s);
}

.feature-card.is-visible:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 36px rgba(42, 47, 44, 0.14);
}

.feature-card__icon {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 50%;
  background: rgba(91, 122, 106, 0.1);
  display: grid;
  place-content: center;
  flex-shrink: 0;
}

.feature-card__icon img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

@keyframes feature-card-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}

.feature-card__desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--color-ink-muted);
  text-wrap: pretty;
}

@media (min-width: 768px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Reviews */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.review-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out);
}

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

.review-card blockquote p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  text-wrap: pretty;
}

.review-card blockquote p::before {
  content: '\201C';
  color: var(--color-sage-light);
}

.review-card blockquote p::after {
  content: '\201D';
  color: var(--color-sage-light);
}

.review-card figcaption {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
}

/* Contact */
.contact { background: var(--color-surface); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__text {
  color: var(--color-ink-muted);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

.contact__channels {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--color-sage-dark);
  padding: 0.5rem 0;
}

.contact__link svg { width: 22px; height: 22px; color: var(--color-sage); }

.contact__form {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-milk);
  color: var(--color-ink);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-ink-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(91, 122, 106, 0.12);
  outline: none;
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-sage);
  min-height: 1.25rem;
}

.form-note.is-error { color: #B54A4A; }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 0;
  background: var(--color-sage-dark);
  color: rgba(255,255,255,0.7);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
}

.footer__tagline { font-size: 0.85rem; }

.footer__nav {
  display: flex;
  gap: var(--space-md);
}

.footer__nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--color-white); }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-sage-dark);
  color: var(--color-white);
  padding: 0.875rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-card);
  z-index: 200;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-spring);
}

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

.reveal--delay { transition-delay: 0.15s; }

/* Responsive */
@media (min-width: 640px) {
  .hero-float--1 { top: 22%; left: 5%; width: 6rem; height: 4.25rem; }
  .hero-float--2 { top: 8%; left: 10%; width: 11rem; height: 8rem; }
  .hero-float--3 { bottom: 14%; left: 6%; width: 12rem; height: 12rem; }
  .hero-float--4 { top: 10%; right: 6%; width: 12rem; height: 10rem; }
  .hero-float--5 { bottom: 12%; right: 5%; width: 14rem; height: 14rem; }
}

@media (min-width: 1024px) {
  .hero-landing { overflow: visible; }
  .hero-landing__content { max-width: 52rem; }
  .hero-float--1 { top: 26%; left: 8%; width: 7rem; height: 5rem; }
  .hero-float--2 { top: 10%; left: 12%; width: 13rem; height: 9.5rem; }
  .hero-float--3 { bottom: 16%; left: 8%; width: 14rem; height: 14rem; }
  .hero-float--4 { top: 12%; right: 8%; width: 14rem; height: 12rem; }
  .hero-float--5 { bottom: 14%; right: 7%; width: 16rem; height: 16rem; }
}

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

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

@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-milk);
    flex-direction: column;
    padding: var(--space-md);
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    width: 100%;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__link--cta {
    margin-top: var(--space-sm);
    text-align: center;
    border: none;
  }

  .nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-landing { overflow: hidden; }
  .hero-float--3 { width: 7rem; height: 7rem; bottom: 16%; left: 2%; }
  .hero-float--5 { width: 8rem; height: 8rem; bottom: 14%; right: 2%; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; }
}
