/* ============================================
   Integra Korp — shared styles
   ============================================ */

:root {
  --rose: #C2185B;
  --rose-dark: #8E0E40;
  --green: #1B5E20;
  --green-dark: #0F3A13;
  --pink-soft: #FFC1D9;
  --pink-bg: #FFF0F5;
  --cream: #FAF7F2;
  --sand: #F2EBDF;
  --ink: #1A1A1A;
  --ink-2: #2A2A2A;
  --muted: #6B6B6B;
  --line: #E8E2D6;
  --line-2: #ECE6D9;
  --gold: #B8915C;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* Typography */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--rose);
  font-weight: 500;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--rose);
  display: inline-block;
}

.eyebrow.is-light {
  color: var(--pink-soft);
}

.eyebrow.is-light::before {
  background: var(--pink-soft);
}

.section-title {
  font-size: clamp(34px, 4.4vw, 60px);
  margin-bottom: 24px;
}

.section-lead {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(194, 24, 91, 0.5);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(194, 24, 91, 0.6);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.site-header:not(.scrolled):not(.solid) .logo {
  color: #fff;
}

.site-header:not(.scrolled):not(.solid) .logo .logo-mark {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo .logo-text em {
  color: var(--rose);
  font-style: italic;
  font-weight: 500;
  margin-right: 0.28em;
}

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

.nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.site-header:not(.scrolled):not(.solid) .nav a {
  color: rgba(255, 255, 255, 0.92);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a.active {
  color: var(--rose);
}

.site-header:not(.scrolled):not(.solid) .nav a.active {
  color: var(--pink-soft);
}

.header-cta {
  background: var(--rose);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta::after { display: none !important; }

.header-cta:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header:not(.scrolled):not(.solid) .burger span {
  background: #fff;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav { display: none; }
  .burger { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px 32px 32px;
    gap: 20px;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .nav.open a { color: var(--ink) !important; }
}

/* ============================================
   HERO (home)
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(142, 14, 64, 0.82) 0%, rgba(27, 94, 32, 0.72) 100%),
    url('img/hero-bg.jpg') center / cover no-repeat,
    linear-gradient(135deg, #C2185B 0%, #8E0E40 35%, #2D5F2A 75%, #1B5E20 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
}

.hero-petals {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.petal {
  position: absolute;
  width: 14px;
  height: 18px;
  background: linear-gradient(135deg, #FFC1D9, #C2185B);
  border-radius: 50% 0 50% 50%;
  opacity: 0.5;
  animation: drift linear infinite;
  filter: blur(0.4px);
}

@keyframes drift {
  0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.4; }
  100% { transform: translateY(110vh) translateX(120px) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: #6EE7B7;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(110, 231, 183, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(110, 231, 183, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(110, 231, 183, 0.1); }
}

.hero h1 {
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.98;
  margin-bottom: 32px;
  color: #fff;
  letter-spacing: -0.025em;
}

.hero h1 em {
  color: var(--pink-soft);
  font-style: italic;
}

.hero h1 .word {
  display: inline-block;
  margin-right: 0.18em;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero h1 .word:nth-child(1) { animation-delay: 0.1s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.18s; }
.hero h1 .word:nth-child(3) { animation-delay: 0.28s; }
.hero h1 .word:nth-child(4) { animation-delay: 0.4s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.5;
  opacity: 0;
  animation: rise 0.6s ease 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: rise 0.6s ease 0.65s forwards;
}

.hero-meta {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.6s ease 0.8s forwards;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--pink-soft);
  line-height: 1;
}

.hero-meta-lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-card {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) rotate(3deg);
  width: 280px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px -8px rgba(0, 0, 0, 0.4);
  z-index: 2;
  animation: floatcard 6s ease-in-out infinite;
}

@keyframes floatcard {
  0%, 100% { transform: translateY(-50%) rotate(3deg); }
  50% { transform: translateY(calc(-50% - 12px)) rotate(2deg); }
}

.hero-card-img {
  height: 280px;
  background: url('img/hero-card-red-naomi.jpg') center / cover no-repeat, #8E0E40;
  position: relative;
  overflow: hidden;
}

.hero-card-img-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-card-meta {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  background: #fff;
}

.hero-card-meta-l {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-card-meta-l span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
}

.hero-card-meta-l span:last-child {
  font-size: 12px;
  color: var(--muted);
}

.hero-card-meta-r {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--rose);
  white-space: nowrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

@media (max-width: 1100px) {
  .hero-card { display: none; }
}

/* ============================================
   B2B STRIP
   ============================================ */

.b2b-strip {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.b2b-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.b2b-strip-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(194, 24, 91, 0.18);
  color: var(--pink-soft);
  border: 1px solid rgba(255, 193, 217, 0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.b2b-strip-text {
  flex: 1;
  min-width: 280px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: baseline;
}

.b2b-strip-text strong {
  color: #fff;
  font-weight: 600;
}

.b2b-strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-soft);
  border-bottom: 1px solid rgba(255, 193, 217, 0.4);
  padding-bottom: 2px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.b2b-strip-cta:hover {
  gap: 14px;
  color: #fff;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  padding: 180px 0 80px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 193, 217, 0.4), transparent 60%),
    linear-gradient(180deg, #FFF0F5 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

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

.breadcrumbs .sep { opacity: 0.5; }

.breadcrumbs .current { color: var(--ink); font-weight: 500; }

.page-hero h1 {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin-bottom: 36px;
  padding-bottom: 4px;
}

.page-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.6;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 120px 0;
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
}

/* Reveal */
.reveal,
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible,
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

/* ============================================
   WHY US
   ============================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}

@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 28px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 193, 217, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--rose);
  box-shadow: 0 20px 40px -16px rgba(194, 24, 91, 0.25);
}

.why-card:hover::before { opacity: 1; }

.why-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--pink-bg);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.why-icon svg { width: 26px; height: 26px; }

.why-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
}

.why-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
}

/* ============================================
   CATALOG (categories)
   ============================================ */

.cat-section { background: var(--sand); }

.cat-intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}

@media (max-width: 880px) {
  .cat-intro { grid-template-columns: 1fr; gap: 32px; }
}

.cat-page-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.cat-page-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 8px;
}

.cat-page-stat-lbl {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.4;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

@media (max-width: 1000px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  position: relative;
  border-radius: 18px;
  padding: 36px 32px 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  isolation: isolate;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.82) 100%);
  z-index: 1;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: overlay;
  z-index: 0;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.3);
}

.cat-card > * { position: relative; z-index: 2; }

.cat-card-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  z-index: 3;
}

.cat-card-count {
  position: absolute;
  top: 28px;
  right: 24px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.cat-card h3 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.cat-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
  line-height: 1.5;
}

.cat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  align-self: flex-start;
  transition: gap 0.2s ease, border-color 0.2s ease;
}

.cat-card:hover .cat-card-cta {
  gap: 14px;
  border-color: #fff;
}

.bg-rose {
  background: url('img/cat-roses.jpg') center / cover no-repeat, #8E0E40;
}

.bg-tulip {
  background: url('img/cat-tulips.jpg') center / cover no-repeat, #7C5832;
}

.bg-orchid {
  background: url('img/cat-orchids.jpg') center / cover no-repeat, #5A1A5F;
}

.bg-peony {
  background: url('img/cat-peonies.jpg') center / cover no-repeat, #C2185B;
}

.bg-exotic {
  background: url('img/cat-exotic.jpg') center / cover no-repeat, #934018;
}

.bg-seasonal {
  background: url('img/cat-seasonal.jpg') center / cover no-repeat, #1B5E20;
}

/* ============================================
   STEPPER
   ============================================ */

.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}

@media (max-width: 880px) {
  .stepper { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stepper { grid-template-columns: 1fr; }
}

.step {
  padding: 40px 32px 36px;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
  transition: background 0.3s ease;
}

.step + .step {
  border-left: none;
}

@media (max-width: 880px) {
  .step + .step { border-left: 1px solid var(--line); }
  .step:nth-child(3) { border-top: none; }
  .step:nth-child(4) { border-top: none; border-left: none; }
}

.step:first-child { border-radius: 16px 0 0 16px; }
.step:last-child { border-radius: 0 16px 16px 0; }

@media (max-width: 880px) {
  .step:first-child { border-radius: 16px 16px 0 0; }
  .step:nth-child(2) { border-radius: 0 0 0 0; }
  .step:last-child { border-radius: 0 0 16px 16px; }
}

.step:hover {
  background: var(--pink-bg);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.step h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

.step-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  color: var(--green);
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.step-icon svg { width: 28px; height: 28px; }

.step:hover .step-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* ============================================
   STATS (dark)
   ============================================ */

.stats {
  background: linear-gradient(135deg, #1B5E20 0%, #0F3A13 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
}

.stats > .container { position: relative; z-index: 1; }

.stats h2 { color: #fff; }

.stats .section-lead { color: rgba(255, 255, 255, 0.75); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 72px;
}

@media (max-width: 1000px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

.stat {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--pink-soft);
  letter-spacing: -0.02em;
}

.stat-num .suf {
  color: var(--pink-soft);
  font-size: 0.55em;
  font-style: italic;
  margin-left: 4px;
}

.stat-lbl {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  max-width: 260px;
  margin-bottom: 20px;
}

.stat-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.stat-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--pink-soft);
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stat.animated .stat-bar::after {
  width: var(--pct, 50%);
}

/* ============================================
   ABOUT page
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-image {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 30% 20%, #FFC1D9 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, #1B5E20 0%, transparent 60%),
    linear-gradient(135deg, #C2185B 0%, #1B5E20 100%);
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.about-image::after {
  content: '— Plantation in Cayambe, Ecuador';
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

.about-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 12px 0 24px;
}

.about-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

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

.value {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.value-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--rose);
  margin-bottom: 18px;
}

.value h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.value p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Timeline */
.timeline {
  margin-top: 64px;
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 280px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.timeline-item:last-child { border-bottom: 1px solid var(--line); }

@media (max-width: 720px) {
  .timeline-item { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--rose);
  font-style: italic;
  line-height: 1;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.timeline-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================
   CTA strip
   ============================================ */

.cta-strip {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
}

.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

@media (max-width: 720px) {
  .cta-strip-inner { grid-template-columns: 1fr; gap: 24px; }
}

.cta-strip h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 8px;
}

.cta-strip p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
}

.cta-strip .btn {
  background: var(--rose);
  color: #fff;
  padding: 18px 32px;
  font-size: 15px;
}

.cta-strip .btn:hover {
  background: var(--rose-dark);
}

/* ============================================
   ORDER FORM
   ============================================ */

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 880px) {
  .order-grid { grid-template-columns: 1fr; gap: 48px; }
}

.order-info h3 {
  font-size: 36px;
  margin: 12px 0 20px;
}

.order-points {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.order-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.order-point:last-child { border-bottom: 1px solid var(--line); }

.order-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pink-bg);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.order-point-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.order-point-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.order-point-text span {
  font-size: 13px;
  color: var(--muted);
}

.order-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
}

@media (max-width: 480px) {
  .order-form { padding: 28px 22px; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.field .req { color: var(--rose); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
  background: #fff;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
  font-family: 'Inter', sans-serif;
}

.field-error {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--rose);
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--rose);
  background: #FFF5F8;
}

.field.error .field-error {
  display: inline-flex;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
  font-size: 15px;
  margin-top: 8px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-top: 16px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 10px;
  color: #166534;
  font-size: 14px;
}

.form-success.visible { display: flex; }

.form-error-msg {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-top: 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  color: #991B1B;
  font-size: 14px;
}

.form-error-msg.visible { display: flex; }

.form-error-msg a { color: inherit; font-weight: 600; }

.hp-field { display: none !important; }

.form-foot {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

.footer-social a svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--rose); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom em {
  color: var(--rose);
  font-style: italic;
}

/* ============================================
   FARMS STRIP (Dutch growers / auction)
   ============================================ */

.farms {
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.farms-head {
  text-align: center;
  margin-bottom: 36px;
}

.farms-head .eyebrow {
  justify-content: center;
}

.farms-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

.farms-head h3 em {
  color: var(--rose);
  font-style: italic;
  font-weight: 500;
}

.farms-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

@media (max-width: 1100px) { .farms-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .farms-grid { grid-template-columns: repeat(2, 1fr); } }

.farm {
  background: #fff;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  transition: background 0.25s ease;
  min-height: 110px;
}

.farm:hover { background: var(--pink-bg); }

.farm-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.farm-loc {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   FAQ
   ============================================ */

.faq-section { background: var(--cream); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

.faq-aside p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 360px;
}

.faq-aside .btn {
  margin-top: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 56px 24px 0;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.faq-q:hover { color: var(--rose); }

.faq-q::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-a-inner {
  padding: 0 0 28px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
}

.faq-a-inner p + p { margin-top: 10px; }

.faq-a-inner strong { color: var(--ink); font-weight: 600; }

/* ============================================
   AUCTION callout (catalog page)
   ============================================ */

.auction-block {
  background: linear-gradient(135deg, #1B5E20 0%, #0F3A13 100%);
  color: #fff;
  border-radius: 18px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.auction-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
}

.auction-block > * { position: relative; }

@media (max-width: 880px) {
  .auction-block { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
}

.auction-block .eyebrow { color: var(--pink-soft); }
.auction-block .eyebrow::before { background: var(--pink-soft); }

.auction-block h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.1;
}

.auction-block h3 em {
  color: var(--pink-soft);
  font-style: italic;
  font-weight: 500;
}

.auction-block p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}

.auction-facts {
  display: grid;
  gap: 16px;
}

.auction-fact {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  align-items: center;
}

.auction-fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--pink-soft);
  line-height: 1;
  letter-spacing: -0.01em;
}

.auction-fact-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

.auction-fact-text strong { color: #fff; font-weight: 600; }

/* ============================================
   CATALOG — extra detail rows
   ============================================ */

.cat-card-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 4px 18px;
  align-self: flex-start;
  margin-bottom: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.cat-card-meta b {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

/* ============================================
   ABOUT — geography & team
   ============================================ */

.geo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

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

.geo-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.geo-row + .geo-row {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

@media (max-width: 720px) {
  .geo-row + .geo-row { border-left: none; padding-left: 0; }
}

.geo-code {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--rose);
  letter-spacing: 0.04em;
}

.geo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.geo-text span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.team-card:hover {
  border-color: var(--rose);
  transform: translateY(-3px);
}

.team-card-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 14px;
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.team-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================
   ABOUT — intro blocks
   ============================================ */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
}

.intro-grid h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-bottom: 24px;
}

.intro-grid p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.intro-grid strong { color: var(--ink); font-weight: 600; }

.intro-side {
  background: var(--pink-bg);
  border: 1px solid #FBD4E2;
  border-radius: 14px;
  padding: 28px 32px;
}

.intro-side h4 {
  font-size: 17px;
  margin-bottom: 14px;
}

.intro-side ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.intro-side li {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.intro-side li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rose);
}

/* ============================================
   SEASONAL — auto-rotated section
   ============================================ */

.seasonal {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

.seasonal-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.seasonal-head .eyebrow { justify-content: center; }

.seasonal-head .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

@media (max-width: 1000px) { .seasonal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .seasonal-grid { grid-template-columns: 1fr; } }

.pick {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.pick:hover {
  transform: translateY(-6px);
  border-color: var(--rose);
  box-shadow: 0 24px 48px -16px rgba(194, 24, 91, 0.22);
}

.pick-img {
  height: 152px;
  position: relative;
  overflow: hidden;
}

.pick-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.pick-img-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--rose);
  border-radius: 999px;
}

/* 4 chained tones across each season */
.pick:nth-child(4n+1) .pick-img {
  background:
    radial-gradient(ellipse at 30% 30%, #FFD9E8 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, #C2185B 0%, #8E0E40 70%);
}
.pick:nth-child(4n+2) .pick-img {
  background:
    radial-gradient(ellipse at 30% 30%, #B8D88A 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, #1B5E20 0%, #0F3A13 70%);
}
.pick:nth-child(4n+3) .pick-img {
  background:
    radial-gradient(ellipse at 30% 30%, #FFE5A3 0%, transparent 45%),
    radial-gradient(ellipse at 70% 70%, #C0521C 0%, #6F2A0E 70%);
}
.pick:nth-child(4n+4) .pick-img {
  background:
    radial-gradient(ellipse at 30% 30%, #D9B8E8 0%, transparent 45%),
    radial-gradient(ellipse at 70% 70%, #6A1F6F 0%, #401040 70%);
}

.pick-body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pick-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.pick-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.pick-note {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: auto;
}

.seasonal-cta { text-align: center; }

.seasonal-cta .updated {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .seasonal-head { margin-bottom: 36px; }
  .seasonal-grid { gap: 14px; margin-bottom: 32px; }
  .pick-img { height: 130px; }
  .pick-body { padding: 20px 18px 22px; }
  .pick-name { font-size: 17px; }
  .pick-meta { font-size: 10.5px; }
  .pick-note { font-size: 13px; }
}

/* ============================================
   PAGE LOAD & MICRO-INTERACTIONS
   ============================================ */

body {
  opacity: 0;
  animation: page-in 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 0.05s forwards;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.is-leaving {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

a, button {
  -webkit-tap-highlight-color: rgba(194, 24, 91, 0.12);
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 6px;
}

.btn,
.cat-card,
.why-card,
.team-card,
.step,
.farm,
.faq-q,
.nav a,
.footer-social a,
.footer-col a,
.b2b-strip-cta {
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Header gets a soft drop-shadow once scrolled */
.site-header.scrolled {
  box-shadow: 0 6px 24px -18px rgba(26, 26, 26, 0.4);
}

/* Hero parallax target */
.hero-bg { will-change: transform; }

/* ============================================
   MOBILE — fine-tuning
   ============================================ */

@media (max-width: 880px) {
  .container { padding: 0 22px; }
  .section { padding: 88px 0; }

  .hero { padding: 110px 0 80px; min-height: 92svh; }
  .hero h1 { font-size: clamp(40px, 9vw, 72px); margin-bottom: 24px; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-actions { gap: 12px; margin-bottom: 48px; }
  .hero-tag { font-size: 12px; padding: 7px 14px 7px 10px; margin-bottom: 24px; }
  .hero-meta { gap: 32px; }
  .hero-meta-num { font-size: 30px; }
  .hero-meta-lbl { font-size: 11px; }
  .hero-scroll { display: none; }

  .page-hero { padding: 130px 0 64px; }
  .page-hero h1 { font-size: clamp(32px, 7.5vw, 56px); margin-bottom: 24px; }
  .page-hero-sub { font-size: 16px; }
  .breadcrumbs { margin-bottom: 22px; font-size: 12.5px; }

  .section-title { margin-bottom: 18px; }
  .section-lead { font-size: 16px; }

  .b2b-strip { padding: 18px 0; }
  .b2b-strip-inner { gap: 14px; }
  .b2b-strip-tag { font-size: 10px; padding: 5px 10px; }
  .b2b-strip-text { font-size: 13.5px; min-width: 200px; }
  .b2b-strip-cta { font-size: 12.5px; }

  .farms { padding: 44px 0; }
  .farms-head { margin-bottom: 28px; }
  .farms-head h3 { font-size: 18px; }
  .farm { padding: 22px 12px; min-height: 92px; }
  .farm-name { font-size: 14px; }
  .farm-loc { font-size: 10px; letter-spacing: 0.1em; }

  .why-grid { gap: 14px; margin-top: 40px; }
  .why-card { padding: 28px 22px 26px; }
  .why-card h3 { font-size: 19px; }
  .why-card p { font-size: 14px; }

  .cat-grid { gap: 14px; margin-top: 32px; }
  .cat-card { padding: 28px 24px 26px; min-height: 280px; }
  .cat-card h3 { font-size: 30px; }
  .cat-card p { font-size: 13px; margin-bottom: 14px; }
  .cat-card-tag { top: 20px; left: 20px; font-size: 10px; padding: 5px 10px; }
  .cat-card-count { top: 22px; right: 20px; font-size: 11px; }
  .cat-card-meta { grid-template-columns: 1fr 1fr; gap: 4px 14px; font-size: 11px; margin-bottom: 14px; }
  .cat-card-meta b { font-size: 13px; }

  .auction-block { padding: 32px 24px; gap: 24px; border-radius: 14px; }
  .auction-block h3 { font-size: 26px; }
  .auction-block p { font-size: 14.5px; }
  .auction-fact { padding: 14px 14px; gap: 14px; grid-template-columns: 56px 1fr; }
  .auction-fact-num { font-size: 24px; }
  .auction-fact-text { font-size: 13px; }

  .cat-page-stats { gap: 16px; }
  .cat-page-stat-num { font-size: 28px; }
  .cat-intro { margin-bottom: 48px; }

  .stepper { margin-top: 48px; }
  .step { padding: 32px 24px 28px; }
  .step-num { font-size: 44px; margin-bottom: 18px; }
  .step h4 { font-size: 19px; }
  .step p { font-size: 14px; }
  .step-icon { top: 24px; right: 24px; }
  .step-icon svg { width: 22px; height: 22px; }

  .stats-grid { gap: 20px; margin-top: 48px; }
  .stat { padding: 24px 0; }
  .stat-num { font-size: clamp(44px, 11vw, 64px); margin-bottom: 12px; }
  .stat-lbl { font-size: 13.5px; max-width: 100%; margin-bottom: 16px; }

  .faq-grid { gap: 32px; }
  .faq-q { font-size: 17px; padding: 18px 44px 18px 0; line-height: 1.35; }
  .faq-q::after { width: 11px; height: 11px; right: 6px; }
  .faq-a-inner { padding: 0 0 22px; font-size: 14.5px; }

  .order-form { padding: 28px 22px; }
  .order-info h3 { font-size: 28px; }
  .order-points { margin-top: 24px; gap: 12px; }
  .order-point { padding: 14px 0; gap: 14px; }
  .order-point-icon { width: 36px; height: 36px; border-radius: 9px; }
  .order-point-text strong { font-size: 14.5px; }
  .order-point-text span { font-size: 12.5px; }

  .cta-strip { padding: 56px 0; }
  .cta-strip h2 { font-size: clamp(24px, 5vw, 34px); }
  .cta-strip p { font-size: 14.5px; }

  .intro-grid { gap: 28px; }
  .intro-grid h2 { font-size: clamp(26px, 5.5vw, 38px); margin-bottom: 18px; }
  .intro-grid p { font-size: 15px; line-height: 1.65; }
  .intro-side { padding: 22px 24px; }
  .intro-side li { font-size: 13.5px; }

  .geo-row { padding: 18px 0; gap: 18px; grid-template-columns: 64px 1fr; }
  .geo-code { font-size: 16px; }
  .geo-text strong { font-size: 17px; }
  .geo-text span { font-size: 13.5px; }

  .team-grid { gap: 14px; margin-top: 40px; }
  .team-card { padding: 24px 20px; border-radius: 12px; }
  .team-card-num { font-size: 30px; margin-bottom: 10px; }
  .team-card h4 { font-size: 17px; }
  .team-card p { font-size: 13px; }

  .timeline { margin-top: 40px; }
  .timeline-item { padding: 22px 0; gap: 8px; }
  .timeline-year { font-size: 28px; }
  .timeline-title { font-size: 19px; }
  .timeline-desc { font-size: 14px; }

  .site-footer { padding: 56px 0 28px; }
  .footer-grid { gap: 28px; padding-bottom: 36px; }
  .footer-col h5 { font-size: 11px; margin-bottom: 12px; }
  .footer-col a { font-size: 13.5px; padding: 4px 0; }
  .footer-bottom { font-size: 12px; padding-top: 24px; }

  .header-inner { padding: 16px 0; }
  .logo { font-size: 19px; }
  .logo-mark { width: 34px; height: 34px; font-size: 17px; }
  .nav.open { padding: 22px 22px 28px; gap: 16px; }
  .header-cta { padding: 10px 18px; font-size: 12.5px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 72px 0; }

  .hero { padding: 100px 0 64px; }
  .hero h1 { font-size: clamp(36px, 11vw, 56px); }
  .hero-meta { gap: 22px; }
  .hero-meta-num { font-size: 26px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .page-hero { padding: 110px 0 56px; }

  .farm { padding: 18px 10px; min-height: 84px; }
  .farm-name { font-size: 13px; }

  .cat-card { padding: 24px 20px 22px; min-height: 260px; }
  .cat-card h3 { font-size: 26px; }
  .cat-card-meta { grid-template-columns: 1fr 1fr; gap: 2px 12px; font-size: 10.5px; }

  .auction-block { padding: 28px 20px; }
  .auction-block h3 { font-size: 22px; }

  .step { padding: 28px 22px 24px; }
  .step-num { font-size: 38px; }

  .order-form { padding: 24px 18px; border-radius: 12px; }
  .field input,
  .field select,
  .field textarea { font-size: 16px; padding: 13px 14px; }
  /* 16px на input запобігає zoom-у iOS Safari */

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

/* Pretty hover lift on inputs */
.field input,
.field select,
.field textarea {
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 0 0 0 4px rgba(194, 24, 91, 0.08);
}

/* Smoother nav underline */
.nav a::after {
  transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* CTA links — chevron nudge */
.cat-card-cta i,
.b2b-strip-cta i,
.btn i {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn:hover i { transform: translateX(3px); }
.cat-card:hover .cat-card-cta i { transform: translateX(4px); }
.b2b-strip-cta:hover i { transform: translateX(3px); }

/* Reveal — slightly longer + softer easing on desktop */
@media (min-width: 881px) {
  .reveal,
  .reveal-stagger > * {
    transform: translateY(28px);
    transition-duration: 0.8s;
  }
}

/* Reduce intensity on mobile to avoid janky scroll */
@media (max-width: 880px) {
  .reveal,
  .reveal-stagger > * {
    transform: translateY(14px);
    transition-duration: 0.55s;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  body { animation: none; opacity: 1; transform: none; }
  .petal { display: none; }
}
