/* Paradise Pastries — warm bakery palette */
:root {
  --cream: #fbf6f0;
  --cream-deep: #f3e8dc;
  --blush: #f6e4df;
  --coral: #d4847a;
  --coral-deep: #c46b60;
  --rose: #e8a598;
  --cocoa: #3d2b22;
  --cocoa-soft: #5c4336;
  --muted: #7a6358;
  --white: #fffdfb;
  --shadow: 0 12px 40px rgba(61, 43, 34, 0.08);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max: 1100px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--cocoa);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(232, 165, 152, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(243, 232, 220, 0.9), transparent 50%),
    var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--coral-deep); }
a:hover { color: var(--cocoa); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cocoa);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 43, 34, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--cocoa);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--coral); }

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.25rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--cocoa-soft);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--coral-deep); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cocoa);
  border-radius: 2px;
}

.nav-links.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--cream);
  padding: 1rem 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(61, 43, 34, 0.08);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--coral-deep);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--cocoa);
  border-color: rgba(61, 43, 34, 0.2);
}
.btn-ghost:hover {
  border-color: var(--coral);
  color: var(--coral-deep);
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36ch;
  margin: 0 0 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-card {
  background: linear-gradient(160deg, var(--blush), var(--cream-deep));
  border-radius: calc(var(--radius) + 8px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 132, 122, 0.25);
}
.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}
.hero-card p { margin: 0 0 1rem; color: var(--cocoa-soft); }
.hours-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(61, 43, 34, 0.08);
}
.hours-pill strong { font-size: 1.05rem; }
.hours-pill span { color: var(--muted); font-size: 0.95rem; }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
}

/* Sections */
section { padding: 3.25rem 0; }
.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
}

.alt {
  background: rgba(255, 253, 251, 0.65);
  border-block: 1px solid rgba(61, 43, 34, 0.06);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(61, 43, 34, 0.07);
  box-shadow: 0 6px 20px rgba(61, 43, 34, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.product-visual {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  background: linear-gradient(145deg, var(--blush), var(--cream-deep));
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0;
  padding: 0.9rem 1rem 0.25rem;
}
.product-card p {
  margin: 0;
  padding: 0 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.stat {
  background: var(--white);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(61, 43, 34, 0.07);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--coral-deep);
}
.stat span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  border: 1px solid rgba(61, 43, 34, 0.08);
  box-shadow: var(--shadow);
  max-width: 36rem;
}
.form-grid {
  display: grid;
  gap: 1rem;
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1.5px solid rgba(61, 43, 34, 0.15);
  background: var(--cream);
  color: var(--cocoa);
  font: inherit;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(212, 132, 122, 0.35);
  border-color: var(--coral);
}
.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

/* Sister / footer */
.sister {
  background: linear-gradient(135deg, var(--cocoa), #5a3f32);
  color: var(--cream);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}
.sister h2 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
}
.sister p { margin: 0 0 1rem; opacity: 0.9; }
.sister .btn-primary {
  background: var(--rose);
  color: var(--cocoa);
}
.sister .btn-primary:hover {
  background: var(--cream);
  color: var(--cocoa);
}

.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(61, 43, 34, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.site-footer h3 {
  font-family: var(--font-display);
  color: var(--cocoa);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li { margin-bottom: 0.35rem; }
.site-footer a { text-decoration: none; color: var(--cocoa-soft); }
.site-footer a:hover { color: var(--coral-deep); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(61, 43, 34, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}
