:root {
  --background: #ffffff;
  --surface: #ffffff;
  --border-soft: #f1e8df;

  /* Very soft accents inspired by your original palette */
  --accent-peach: #ffe4d5;
  --accent-mint: #e5f7f0;
  --accent-gold: #fff3bf;
  --accent-teal: #007a7a;

  --text-main: #3b2a23;
  --text-muted: #7a6456;
  --heading: #3a2a23;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--text-main);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--heading);
  margin-top: 0;
}

a {
  color: var(--accent-teal);
  text-decoration: none;
}

/* HEADER + HERO */

header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-soft);
  padding: 2.4rem 1rem 2.8rem;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-card {
  background:
    radial-gradient(circle at top left, rgba(255,228,213,0.7) 0, rgba(255,228,213,0) 60%),
    radial-gradient(circle at bottom right, rgba(229,247,240,0.7) 0, rgba(229,247,240,0) 60%),
    #ffffff;
  border-radius: 1.5rem;
  padding: 1.8rem 1.6rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-soft);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 243, 191, 0.8);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
}

header p {
  margin: 0.3rem 0;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--accent-teal);
  color: #ffffff;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.cta-btn:hover {
  opacity: 0.92;
}

/* MAIN LAYOUT + SECTIONS */

main {
  padding: 2rem 1rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

section {
  margin-bottom: 2.3rem;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-soft);
}

section:nth-of-type(odd) {
  border-top: 5px solid var(--accent-peach);
}

section:nth-of-type(even) {
  border-top: 5px solid var(--accent-mint);
}

.section-heading {
  margin-bottom: 0.9rem;
  font-size: 1.5rem;
}

/* CALLOUTS */

.disclaimer {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--accent-teal);
  background: #f4fffb;
  font-size: 0.9rem;
}

.allergen-box {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  background: var(--accent-gold);
  font-size: 0.9rem;
}


/* ORDER SECTION */

.order-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.product-image {
  width: 100%;
  border-radius: 0.8rem;
  background: #faf3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--border-soft);		
}

.product-image img {
  max-width: 100%;
  border-radius: 0.8rem;
  display: block;
}

.order-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.order-form select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #d0c2b8;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  background: #ffffff;
}

.paypal-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}


/* ABOUT SECTION */
.about-wrapper {
  padding: 2rem;
  background: linear-gradient(135deg, #e8f8f5 0%, rgba(232, 248, 245, 0.6) 100%);
  border-radius: 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-mint);
}

.about-highlight {
  border-left: 4px solid var(--accent-gold);
  padding-left: 0.9rem;
  margin-top: 0.75rem;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.profile-image {
  background: linear-gradient(135deg, #e8f8f5 0%, rgba(232, 248, 245, 0.6) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--border-soft);	
}

@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* CONTACT FORM */

form.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid #d0c2b8;
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
  background: #ffffff;
}

.contact-form button {
  justify-self: flex-start;
  background: var(--accent-teal);
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form button:hover {
  opacity: 0.92;
}

/* FOOTER */

footer {
  text-align: center;
  font-size: 0.8rem;
  padding: 1rem 0 1.5rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
}

/* RESPONSIVE */

@media (min-width: 720px) {
  header {
    padding: 2.6rem 1rem 3rem;
  }

  header h1 {
    font-size: 2.4rem;
  }

  main {
    padding: 2.2rem 1rem 3.2rem;
  }

  section {
    padding: 2rem 1.9rem;
  }

  .order-section {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    align-items: center;
  }
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent-teal);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}