/* ===== DESIGN TOKENS ===== */
:root {
  --color-blush:      #F9EAEA;
  --color-blush-mid:  #F0CECE;
  --color-cream:      #FFFBFB;
  --color-rose-gold:  #6B6B9A;   /* dusty purple — primary brand color */
  --color-rose-dark:  #4A4A72;   /* darker purple for hover states */
  --color-pink:       #F0AEAE;   /* blush pink — secondary accent */
  --color-text:       #2A2A3A;
  --color-text-light: #6B6B82;
  --color-white:      #FFFFFF;
  --color-border:     #E8D8E8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(44, 36, 32, 0.08);
  --shadow-md:  0 4px 20px rgba(44, 36, 32, 0.12);
  --shadow-lg:  0 8px 40px rgba(44, 36, 32, 0.16);

  --max-width: 1100px;
  --nav-height: 72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
}

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

a { color: var(--color-rose-gold); text-decoration: none; }
a:hover { color: var(--color-rose-dark); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

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

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--color-blush);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 600px;
  margin: 0.75rem auto 0;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--color-rose-gold);
  margin: 1rem auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  line-height: 1;
}

.btn--primary {
  background: var(--color-rose-gold);
  color: var(--color-white);
  border-color: var(--color-rose-gold);
}
.btn--primary:hover {
  background: var(--color-rose-dark);
  border-color: var(--color-rose-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-rose-gold);
  border-color: var(--color-rose-gold);
}
.btn--outline:hover {
  background: var(--color-rose-gold);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 246, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 58px;
  width: auto;
}

.nav__logo:hover { opacity: 0.85; }

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--color-rose-gold); }

.nav__links .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.nav__links .btn--primary,
.nav__links .btn--primary:hover,
.nav__links .btn--primary.active { color: var(--color-white); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: calc(90vh - var(--nav-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-cream) 60%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  margin-bottom: 1rem;
}

.hero__title { margin-bottom: 1.5rem; }

.hero__sub {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 460px;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__image {
  position: relative;
}

.hero__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero__image-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero__image-badge .badge-icon { font-size: 1.4rem; }

/* ===== FEATURE STRIP ===== */
.features {
  background: var(--color-rose-gold);
  padding: 1.5rem 0;
}

.features__inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-item .icon { font-size: 1.2rem; }

/* ===== CARDS ===== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: all 0.2s;
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-blush-mid);
  transform: translateY(-2px);
}

.pricing-card--featured {
  border-color: var(--color-rose-gold);
  box-shadow: var(--shadow-md);
}

.pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-rose-gold);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.pricing-card__desc {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--color-rose-gold);
  line-height: 1;
}

.pricing-card__unit {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.pricing-card__minimum {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-card__features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features .check { color: var(--color-rose-gold); font-weight: 700; }

/* ===== ADD-ONS ===== */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.addon-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.addon-card__icon { font-size: 1.6rem; flex-shrink: 0; }

.addon-card__info { flex: 1; }
.addon-card__name { font-weight: 700; font-size: 0.95rem; }
.addon-card__desc { font-size: 0.82rem; color: var(--color-text-light); }

.addon-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-rose-gold);
  white-space: nowrap;
}

/* ===== PACKAGING NOTE ===== */
.packaging-note {
  background: var(--color-blush);
  border-left: 3px solid var(--color-rose-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 1rem auto 0;
}

/* ===== ORDER FORM ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group--full { grid-column: 1 / -1; }

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}

.label-hint {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-left: 0.35rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 0 3px rgba(196, 149, 106, 0.15);
}

textarea { resize: vertical; min-height: 100px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5B55' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.dozen-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-blush);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}

.dozen-row:last-child { margin-bottom: 0; }

.dozen-row__label { font-weight: 600; font-size: 0.9rem; white-space: nowrap; }

.dozen-row__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--color-rose-gold);
  background: var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--color-rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.15s;
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--color-rose-gold); color: var(--color-white); }

.qty-display {
  min-width: 2rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
}

.dozen-row__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-rose-gold);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  accent-color: var(--color-rose-gold);
  cursor: pointer;
}

.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  background: var(--color-white);
}

.radio-label:has(span > span + span) {
  align-items: flex-start;
}

.radio-label:has(span > span + span) input[type="radio"] {
  margin-top: 0.2rem;
}

.radio-label input[type="radio"] { accent-color: var(--color-rose-gold); }

.radio-label:has(input:checked) {
  border-color: var(--color-rose-gold);
  background: var(--color-blush);
}

.form-section {
  border-top: 1.5px solid var(--color-border);
  padding-top: 1.75rem;
  margin-top: 1.75rem;
}

.form-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.order-summary {
  background: var(--color-blush);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.order-summary h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  color: var(--color-text-light);
}

.summary-line--total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  border-top: 1.5px solid var(--color-border);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

.rush-notice {
  background: #FFF8E7;
  border: 1.5px solid #E8C96A;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #7A5C1A;
  display: none;
}

.rush-notice.visible { display: block; }

.file-upload-area {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--color-white);
}

.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: var(--color-rose-gold);
  background: var(--color-blush);
}

.file-upload-area .upload-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.file-upload-area p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; }
.file-upload-area input[type="file"] { display: none; }

.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
  text-align: left;
}

.file-list:not(:empty) {
  padding-top: 0.75rem;
  border-top: 1.5px dashed var(--color-border);
}

.file-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.5rem 0.4rem 0.4rem;
  max-width: 220px;
}

.file-chip__thumb {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
  background: var(--color-blush);
}

.file-chip__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.file-chip__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-chip__size {
  font-size: 0.72rem;
  color: var(--color-text-light);
}

.file-chip__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0.1rem;
  flex-shrink: 0;
  transition: color 0.15s;
}
.file-chip__remove:hover { color: var(--color-text); }

.form-submit-area { text-align: center; margin-top: 2rem; }
.form-submit-area p { font-size: 0.85rem; color: var(--color-text-light); margin-top: 0.75rem; }

/* ===== FAQ / ACCORDION ===== */
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
  border-bottom: 1.5px solid var(--color-border);
}

.faq-item:first-child { border-top: 1.5px solid var(--color-border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-icon {
  font-size: 1.2rem;
  color: var(--color-rose-gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

/* ===== INGREDIENTS ===== */
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ingredient-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.ingredient-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ingredient-card ul {
  list-style: none;
}

.ingredient-card ul li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ingredient-card ul li:last-child { border-bottom: none; }
.ingredient-card ul li::before { content: "·"; color: var(--color-rose-gold); font-size: 1.2rem; }

.allergen-badge {
  display: inline-block;
  background: #FFF3E0;
  color: #E65100;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  margin-left: auto;
}

/* ===== INSTAGRAM GALLERY ===== */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.instagram-grid a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.instagram-grid a:hover img { transform: scale(1.05); }

.instagram-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-text);
  color: rgba(255, 251, 246, 0.75);
  padding: 3rem 0 1.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer__brand .nav__logo { margin-bottom: 0.75rem; display: block; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__brand .nav__logo img { height: 48px; }
.footer__brand p { font-size: 0.9rem; line-height: 1.6; }

.footer__col h4 {
  color: var(--color-cream);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.6rem; }
.footer__col ul li a { font-size: 0.9rem; color: rgba(255,251,246,0.65); transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--color-rose-gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,251,246,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-links a {
  color: rgba(255,251,246,0.65);
  font-size: 1.3rem;
  transition: color 0.2s;
}

.social-links a:hover { color: var(--color-rose-gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-cream) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 560px;
  margin: 0.75rem auto 0;
  color: var(--color-text-light);
}

/* ===== SUCCESS / ERROR MESSAGES ===== */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: none;
}

.alert.visible { display: block; }
.alert--success { background: #E8F5E9; color: #2E7D32; border: 1.5px solid #A5D6A7; }
.alert--error   { background: #FFEBEE; color: #C62828; border: 1.5px solid #FFCDD2; }

/* ===== UTILITY GRID LAYOUTS ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lead-time-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero { min-height: auto; }
  .hero__inner { padding: 2rem 1.5rem 2.5rem; gap: 2rem; }
  .hero__image { display: block; order: -1; }
  .hero__image img { aspect-ratio: 3/2; }
  .hero__image-badge { display: none; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .nav__links { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--color-cream); flex-direction: column; padding: 1.5rem; gap: 1.25rem; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-md); }
  .nav__links.open { display: flex; }
  .nav__hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }
  .addons-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .radio-group { flex-direction: column; }
  .features__inner { gap: 1.5rem; justify-content: flex-start; padding: 0 1.5rem; }
  .about-story { grid-template-columns: 1fr; gap: 2rem; }
  .offer-cards { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .lead-time-cards { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}
