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

:root {
  --rose:    #E8837A;
  --blush:   #F5D7D4;
  --cream:   #FDF7F2;
  --mocha:   #3B2218;
  --caramel: #C4874A;
  --sage:    #8FA68B;
  --white:   #FFFFFF;
  --shadow:  rgba(59, 34, 24, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--mocha);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: rgba(253, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--blush);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--mocha);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mocha);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  max-width: 14ch;
  margin-bottom: 1.6rem;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: #6B4C3B;
  max-width: 42ch;
  line-height: 1.7;
  margin-bottom: 2.8rem;
}

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

/* Floating cupcake doodles */
.doodle {
  position: absolute;
  font-size: 3.5rem;
  opacity: 0.13;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.doodle:nth-child(1) { top: 20%; right: 12%; animation-delay: 0s; }
.doodle:nth-child(2) { top: 60%; right: 6%;  animation-delay: 2s; font-size: 2.2rem; }
.doodle:nth-child(3) { bottom: 15%; right: 25%; animation-delay: 4s; font-size: 4.5rem; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 131, 122, 0.38);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(232, 131, 122, 0.5);
}

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

.btn-outline:hover {
  background: var(--mocha);
  color: var(--white);
}

/* ── MENU STRIP ── */
.menu-strip {
  background: var(--mocha);
  padding: 60px 6vw;
}

.menu-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.menu-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s;
}

.menu-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

.menu-card .icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.menu-card h3 {
  color: var(--blush);
  font-size: 1rem;
  margin-bottom: 6px;
}

.menu-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.menu-card .price {
  color: var(--caramel);
  font-weight: 500;
  margin-top: 10px;
  font-size: 0.95rem;
}

/* ── SECTION COMMON ── */
.section {
  padding: 90px 6vw;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-intro {
  color: #6B4C3B;
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: 2.8rem;
}

/* ── FORMS GRID ── */
.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ── FORM CARD ── */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 32px var(--shadow);
}

.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.form-card .form-desc {
  font-size: 0.85rem;
  color: #6B4C3B;
  margin-bottom: 1.6rem;
  line-height: 1.6;
}

/* ── FIELDS ── */
.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #E5D8D2;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--mocha);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232, 131, 122, 0.18);
}

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

.fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── FORM BUTTON ── */
.form-btn {
  width: 100%;
  padding: 14px;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.6rem;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(232, 131, 122, 0.3);
}

.form-btn:hover {
  background: #d9706a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232, 131, 122, 0.42);
}

.form-btn.sage-btn {
  background: var(--sage);
  box-shadow: 0 4px 16px rgba(143, 166, 139, 0.3);
}

.form-btn.sage-btn:hover {
  background: #7a9476;
  box-shadow: 0 6px 22px rgba(143, 166, 139, 0.42);
}

/* ── TOAST ── */
.toast {
  display: none;
  margin-top: 1rem;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
}

.toast.success {
  background: #EAF5EA;
  color: #2E6E2E;
  border: 1px solid #B8DEBA;
}

.toast.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* ── VALIDATION ERRORS ── */
.field-error {
  font-size: 0.76rem;
  color: #C0392B;
  margin-top: 4px;
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #C0392B;
}

.field.has-error .field-error {
  display: block;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  height: 1px;
  background: var(--blush);
  margin: 0 6vw;
}

/* ── FOOTER ── */
footer {
  background: var(--mocha);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 36px 6vw;
  font-size: 0.84rem;
}

footer strong {
  color: var(--blush);
}

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .forms-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .fields-row {
    grid-template-columns: 1fr;
  }
}
