/* ===== Pastry Pallet — brand styles =====
   Palette sampled from the logo (Pastry Pallet · Patisserie & Gelato):
   warm cream ground, dusty mauve-rose script, blush pink, sage green.
*/
:root {
  --rose: #b07e85;        /* dusty mauve-rose — main brand (logo script) */
  --rose-dark: #91626a;   /* deeper rose for hovers */
  --rose-soft: #f0e1e1;   /* blush wash for cards/sections */
  --blush: #dcafb2;       /* flower pink accent */
  --sage: #98a07f;        /* muted sage green (leaves) */
  --cream: #f6f0e8;       /* page background — matches logo ground */
  --ink: #4a3d40;         /* soft brown-charcoal body text */
  --muted: #8d7e80;
  --line: #e8dcd9;
  --shadow: 0 10px 30px rgba(74, 61, 64, 0.08);
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }

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

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.section { padding: 88px 0; }

.section__title { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--ink); margin-bottom: 22px; }
.section__title--center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary { background: var(--rose); color: #fff; box-shadow: 0 8px 20px rgba(176, 126, 133, 0.35); }
.btn--primary:hover { background: var(--rose-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--rose-dark); border-color: var(--rose); }
.btn--ghost:hover { background: var(--rose-soft); transform: translateY(-2px); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 249, 246, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { max-width: 1080px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav__brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.35rem; color: var(--rose); }
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-weight: 500; font-size: 0.95rem; color: var(--ink); transition: color 0.15s ease; }
.nav__links a:hover { color: var(--rose); }

/* ===== Hero ===== */
.hero {
  /* Mostly cream (matches the logo's own background so it blends seamlessly),
     easing into a soft blush at the very bottom to transition into the page. */
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 58%, var(--rose-soft) 100%);
  color: var(--ink);
  text-align: center;
  padding: 56px 24px 84px;
}
.hero__content { max-width: 640px; margin: 0 auto; }
.hero__logo { width: clamp(200px, 30vw, 280px); height: auto; margin: 0 auto; display: block; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; font-weight: 600; color: var(--rose); margin-bottom: 18px; }
.hero__title { font-size: clamp(2.8rem, 8vw, 5rem); font-weight: 700; color: var(--rose-dark); margin-bottom: 18px; }
.hero__tagline { font-size: clamp(1.05rem, 2.5vw, 1.3rem); font-weight: 300; color: var(--muted); margin-bottom: 36px; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== About ===== */
.about { background: #fff; }
.about__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: center; }
.about p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.about__card {
  background: var(--rose-soft);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
}
.about__emoji { font-size: 4rem; display: block; margin-bottom: 12px; }
.about__note { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--rose-dark); }

/* ===== Menu ===== */
.menu { background: var(--cream); }
.menu__note { text-align: center; color: var(--muted); margin-bottom: 44px; font-style: italic; }
.menu__loading { text-align: center; color: var(--muted); }
.menu__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 30px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--rose);
}
.menu-card__head { margin-bottom: 18px; }
.menu-card__title { font-size: 1.5rem; color: var(--ink); }
.menu-card__blurb { color: var(--muted); font-size: 0.92rem; margin-top: 2px; }
.menu-item { padding: 11px 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item__name { font-weight: 600; color: var(--ink); }
.menu-item__soldout { display: inline-block; margin-left: 8px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--rose-dark); background: var(--rose-soft); border-radius: 999px; padding: 1px 8px; vertical-align: middle; }
.menu-item__desc { color: var(--muted); font-size: 0.9rem; }

/* ===== Visit ===== */
.visit { background: #fff; }
.visit__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.visit__line { color: var(--muted); margin-bottom: 26px; font-size: 1.05rem; }
.visit__line strong { color: var(--ink); }
.visit__subhead { font-size: 1.3rem; margin-bottom: 12px; color: var(--ink); }
.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.hours li span:first-child { font-weight: 600; color: var(--ink); }
.visit__map { min-height: 320px; }
.map-placeholder {
  height: 100%; min-height: 320px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--muted); background: var(--rose-soft);
}
.map-placeholder span { font-size: 2.5rem; margin-bottom: 8px; }
.visit__map iframe { width: 100%; min-height: 320px; border: 0; border-radius: var(--radius); }

/* ===== Contact ===== */
.contact { background: var(--cream); }
.contact__inner { max-width: 620px; margin: 0 auto; text-align: center; }
.contact__details { margin-bottom: 30px; font-size: 1.1rem; }
.contact__details a { color: var(--rose); font-weight: 600; }
.contact__form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.contact__row { display: flex; gap: 14px; }
.contact__form input, .contact__form textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 1rem; background: #fff;
}
.contact__form input:focus, .contact__form textarea:focus { outline: 2px solid var(--rose); border-color: transparent; }
.contact__form .btn { align-self: center; margin-top: 6px; }
.contact__hint { color: var(--muted); font-size: 0.82rem; margin-top: 14px; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #fff; padding: 40px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__brand { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; }
.footer__social { display: flex; gap: 22px; }
.footer__social a { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.footer__social a:hover { color: #fff; }
.footer__copy { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* ===== Responsive ===== */
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .nav__links { gap: 16px; }
  .nav__links a { font-size: 0.85rem; }
  .about__grid, .visit__grid { grid-template-columns: 1fr; gap: 32px; }
  .menu__grid { grid-template-columns: 1fr; }
  .contact__row { flex-direction: column; }
}
@media (max-width: 480px) {
  .nav__brand { font-size: 1.15rem; }
  .nav__links { gap: 12px; }
}
