:root {
  --color-bg: oklch(98% 0.008 90);
  --color-text: oklch(27% 0.02 50);
  --color-muted: oklch(50% 0.02 50);
  --color-label: oklch(45% 0.02 50);
  --color-border: oklch(92% 0.01 90);
  --color-dark: oklch(27% 0.02 50);

  --color-rose-bg: oklch(90% 0.04 15);
  --color-rose-eyebrow: oklch(40% 0.04 15);
  --color-rose-sub: oklch(38% 0.02 30);

  --color-sage-bg: oklch(82% 0.06 155);
  --color-sage-text: oklch(25% 0.04 155);

  --color-price: oklch(50% 0.09 15);

  --color-seasonal-bg: oklch(88% 0.06 155);
  --color-seasonal-text: oklch(30% 0.05 155);

  --color-order-bg: oklch(96% 0.025 155 / 0.5);
  --color-hint: oklch(45% 0.06 155);

  --color-quote-text: oklch(35% 0.03 30);
  --color-quote-sign: oklch(45% 0.09 15);

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Nunito Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-bg);
  font-family: var(--font-sans);
  color: var(--color-text);
}

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

input, select, textarea, button {
  font-family: var(--font-sans);
}

.site-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.logo {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.nav-link.active {
  border-bottom: 2px solid var(--color-sage-bg);
  padding-bottom: 3px;
}

.btn-pill {
  padding: 11px 24px;
  background: var(--color-dark);
  color: #fff;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
}

/* Hero */
.hero {
  margin: 0 0 40px;
  padding: 56px 48px;
  background: var(--color-rose-bg);
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-rose-eyebrow);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1.08;
  font-weight: 500;
  margin: 0;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-rose-sub);
  margin: 0;
}

.btn-dark {
  margin-top: 8px;
  padding: 13px 28px;
  background: var(--color-dark);
  color: #fff;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
  border: none;
  cursor: pointer;
}

.hero-photo {
  flex: 0 0 260px;
  height: 220px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 11px ui-monospace, monospace;
  color: oklch(45% 0.03 15);
  background-image: repeating-linear-gradient(135deg, oklch(96% 0.015 15) 0 10px, oklch(99% 0.006 15) 10px 20px);
}

/* Flavors */
.flavors {
  padding: 0 0 56px;
}

.section-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.badge-week {
  padding: 6px 14px;
  background: var(--color-sage-bg);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-sage-text);
}

.flavor-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flavor-status {
  font-size: 14px;
  color: var(--color-muted);
}

.flavor-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 18px 22px;
}

.flavor-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 12px;
}

.flavor-info {
  flex: 1;
}

.flavor-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.flavor-name {
  font-weight: 700;
  font-size: 16px;
}

.flavor-badge-seasonal {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-seasonal-text);
  background: var(--color-seasonal-bg);
  padding: 2px 8px;
  border-radius: 8px;
}

.flavor-desc {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
}

.flavor-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-price);
}

/* Order form */
.order-section {
  padding: 0 0 56px;
}

.order-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--color-order-bg);
  border-radius: 24px;
  padding: 36px 40px;
}

.order-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 4px;
}

.order-sub {
  text-align: center;
  font-size: 13px;
  color: var(--color-rose-eyebrow);
  margin: 0 0 24px;
}

.order-field {
  margin-bottom: 16px;
}

.field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-label);
  margin-bottom: 6px;
}

.field-input, .field-select, .field-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  border: none;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  color: var(--color-text);
}

.field-textarea {
  resize: vertical;
  min-height: 70px;
}

.field-hint {
  font-size: 11.5px;
  color: var(--color-hint);
  margin: 6px 0 0;
}

.btn-submit {
  margin-top: 6px;
  width: 100%;
  padding: 13px;
  text-align: center;
  background: var(--color-dark);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.order-message {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.order-message.success {
  background: var(--color-sage-bg);
  color: var(--color-sage-text);
}

.order-message.error {
  background: oklch(88% 0.06 15);
  color: oklch(35% 0.1 15);
}

/* Quote */
.quote-section {
  margin: 0 0 56px;
  padding: 44px 48px;
  background: var(--color-rose-bg);
  border-radius: 24px;
  text-align: center;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-quote-text);
  max-width: 460px;
  margin: 0 auto;
}

.quote-sign {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 600;
  color: var(--color-quote-sign);
  margin-top: 16px;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: var(--color-muted);
}

/* Responsive */
@media (max-width: 720px) {
  .hero {
    flex-direction: column;
    padding: 40px 28px;
  }

  .hero-photo {
    flex: none;
    width: 100%;
  }

  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .order-card {
    padding: 28px 24px;
  }
}
