@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --sage: #c5d4bf;
  --sage-strong: #8fa888;
  --beige: #f6f2ea;
  --beige-strong: #ebe3d6;
  --cream: #fdfbf7;
  --text-dark: #2a332a;
  --text-muted: #5a635a;
  --accent: #c9a87a;
  --accent-strong: #a68558;
  --white: #ffffff;
  --border-subtle: rgba(42, 51, 42, 0.09);
  --shadow-soft: 0 20px 48px rgba(30, 43, 33, 0.1);
  --shadow-light: 0 8px 24px rgba(30, 43, 33, 0.06);
  --shadow-hover: 0 16px 40px rgba(30, 43, 33, 0.12);
  --radius-card: 20px;
  --radius-lg: 24px;
  --transition: 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --disclaimer-bg: #e85d4c;
  --disclaimer-border: #b84032;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--beige);
  color: var(--text-dark);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  margin: 0 0 0.45em;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(197, 212, 191, 0.35), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--beige) 45%, #efe8dd 100%);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--text-dark);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.btn.primary {
  background: linear-gradient(135deg, var(--sage-strong) 0%, #3d4f3d 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(61, 79, 61, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(61, 79, 61, 0.3);
  filter: brightness(1.03);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-dark);
  border: 1px solid rgba(47, 58, 47, 0.14);
}

.btn.ghost:hover {
  background: var(--white);
  transform: translateY(-1px);
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px) saturate(1.1);
  background: rgba(253, 251, 247, 0.82);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand .dot {
  width: 12px;
  height: 12px;
  background: var(--sage-strong);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(143, 168, 136, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(143, 168, 136, 0.18);
  color: var(--text-dark);
}

.hero {
  position: relative;
  padding: 64px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px;
  align-items: center;
}

.hero-text {
  grid-column: span 6;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(156, 175, 155, 0.16);
  border-radius: 999px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  margin-bottom: 14px;
}

.hero p.lead {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 34em;
}

.hero p.lead strong {
  color: var(--text-dark);
  font-weight: 600;
}

.hero-text .price-tag {
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201, 168, 122, 0.35), rgba(201, 168, 122, 0.15));
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 15px;
  border: 1px solid rgba(166, 133, 88, 0.25);
  box-shadow: 0 4px 16px rgba(42, 51, 42, 0.06);
}

.hero-media {
  grid-column: span 6;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 14px;
}

.hero-media .card-large {
  grid-column: span 4;
  grid-row: span 6;
  background: linear-gradient(160deg, rgba(143, 168, 136, 0.22), rgba(253, 251, 247, 0.85));
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  min-height: 340px;
}

.hero-media .card-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .card-small {
  grid-column: span 2;
  grid-row: span 6;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 16px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.hero-media .card-small .label {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}

.hero-media .card-small img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.disclaimer {
  margin: 24px auto;
  padding: 20px 24px 22px;
  border-radius: var(--radius-card);
  background: linear-gradient(165deg, var(--disclaimer-bg) 0%, #d64a3d 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(232, 93, 76, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  text-align: center;
  border: 1px solid var(--disclaimer-border);
  max-width: min(920px, 100%);
}

.disclaimer--top {
  margin-top: 20px;
  margin-bottom: 8px;
}

.disclaimer p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 1.55;
  max-width: 56em;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer strong {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  opacity: 0.98;
}

.section {
  padding: 48px 0;
}

.section--product {
  padding: 56px 0;
  margin-top: 8px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, transparent, rgba(143, 168, 136, 0.1) 45%, transparent);
  border-radius: var(--radius-lg);
}

.product-showcase-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 440px;
  margin: 0 auto;
}

.product-showcase-grid .product-card {
  width: 100%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section-header p {
  max-width: 520px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(156, 175, 155, 0.08) 100%);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(143, 168, 136, 0.35);
}

.card:hover::after {
  opacity: 1;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(156, 175, 155, 0.16);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 181, 140, 0.2);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 13px;
}

.editorial {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 6px;
}

.editorial .block {
  background: linear-gradient(150deg, rgba(143, 168, 136, 0.12), rgba(253, 251, 247, 0.95));
  padding: 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-subtle);
  display: grid;
  gap: 16px;
  align-items: center;
  transition: var(--transition);
}

.editorial .block:hover {
  border-color: rgba(143, 168, 136, 0.28);
  box-shadow: var(--shadow-hover);
}

.editorial .block img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
}

.product-card {
  display: grid;
  gap: 16px;
  text-align: center;
  padding: 28px 24px;
  background: linear-gradient(180deg, var(--white) 0%, rgba(246, 242, 234, 0.5) 100%);
}

.product-card.card-link:hover {
  border-color: rgba(143, 168, 136, 0.45);
}

.product-card .card-link {
  display: block;
  color: inherit;
}

.product-card img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(42, 51, 42, 0.08));
}

.product-card .price-tag {
  justify-content: center;
}

.product-card .btn {
  width: 100%;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text-dark);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.ingredient-card {
  border: 1px solid rgba(47, 58, 47, 0.1);
}

.ingredient-card h4 {
  font-size: 18px;
}

.ingredient-tag {
  display: inline-block;
  background: rgba(156, 175, 155, 0.16);
  color: var(--text-dark);
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.step-card {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(47, 58, 47, 0.06);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(47, 58, 47, 0.1);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.order-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.footer {
  background: linear-gradient(180deg, #ebe4d8 0%, #e0d8ca 100%);
  padding: 36px 0 32px;
  margin-top: 48px;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-dark);
  padding-left: 2px;
}

.legal-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Order page */
.order-hero {
  padding: 32px 0 18px;
}

.order-shell {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  margin-bottom: 40px;
}

.progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.progress-step {
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(143, 168, 136, 0.14);
  text-align: center;
  font-weight: 700;
  color: var(--text-dark);
  border: 1px solid transparent;
  font-size: 12px;
  line-height: 1.35;
}

.progress-step.active {
  background: linear-gradient(135deg, var(--sage-strong), #3d4a3d);
  color: var(--white);
  box-shadow: var(--shadow-light);
}

@media (max-width: 640px) {
  .progress {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .progress-step {
    text-align: left;
    padding-left: 14px;
  }
}

.form-step {
  display: none;
  animation: fadeIn 0.35s ease;
}

.form-step.active {
  display: grid;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 600;
  color: var(--text-dark);
}

.field input,
.field select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(47, 58, 47, 0.18);
  background: #faf7f1;
  font-size: 15px;
  transition: var(--transition);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--sage-strong);
  box-shadow: 0 0 0 3px rgba(156, 175, 155, 0.18);
}

.field input.error,
.field select.error {
  border-color: #c0392b;
  background: #fff4f4;
}

.error-text {
  color: #c0392b;
  font-size: 13px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.summary {
  margin-top: 14px;
  padding: 14px;
  background: rgba(156, 175, 155, 0.12);
  border-radius: 14px;
}

.summary strong {
  display: block;
  margin-bottom: 6px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  header {
    position: sticky;
  }
}

@media (min-width: 960px) {
  .editorial .block {
    grid-template-columns: 1.1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .badge {
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-links {
    order: 3;
    flex: 1 1 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    gap: 4px;
    mask-image: linear-gradient(to right, #000 88%, transparent 100%);
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 48px 0 28px;
  }

  .section {
    padding: 32px 0;
  }

  .section--product {
    padding: 40px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

