@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:wght@500;600;700&family=Parisienne&display=swap');

:root {
  --olive: #6c754b;
  --olive-dark: #505a39;
  --cream: #fbf7eb;
  --cream-2: #f2eddc;
  --paper: #fffdf7;
  --rose: #d9948b;
  --rose-light: #f0c9bf;
  --gold: #b69a58;
  --ink: #46483b;
  --muted: #737463;
  --line: #ded8c1;
  --shadow: 0 18px 50px rgba(72,70,45,.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 0, rgba(217,148,139,.08), transparent 25rem),
    var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(251,247,235,.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(108,117,75,.14);
}
.brand, .footer-brand {
  font-family: "Parisienne", cursive;
  color: var(--olive-dark);
  font-size: 2rem;
}
nav { display: flex; gap: 26px; align-items: center; font-size: .92rem; }
nav a:hover { color: var(--olive); }
.pill {
  border: 1px solid var(--olive);
  padding: 8px 18px;
  border-radius: 999px;
}

.hero {
  min-height: 88vh;
  padding: 7vw 8vw 6vw;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 5vw;
  overflow: hidden;
}
.hero-copy { max-width: 690px; }
.tiny-flourish, .kicker {
  color: var(--olive);
  letter-spacing: .17em;
  font-weight: 600;
  font-size: .7rem;
}
h1 {
  font-family: "Parisienne", cursive;
  color: var(--olive-dark);
  font-weight: 400;
  font-size: clamp(5.5rem, 11vw, 10rem);
  line-height: .75;
  margin: 25px 0 30px;
}
h1 span { margin-left: 1.8em; }
h2 {
  font-family: "Playfair Display", serif;
  color: var(--olive-dark);
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.12;
  margin: 8px 0 20px;
}
h3 {
  font-family: "Playfair Display", serif;
  color: var(--olive-dark);
  font-size: 1.5rem;
  margin: 8px 0;
}
.lead { font-family: "Playfair Display", serif; font-size: 1.35rem; max-width: 590px; }
.sublead { color: var(--muted); max-width: 580px; }
.buttons, .order-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0; }
.btn {
  display: inline-block;
  background: var(--olive);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--olive-dark); }
.btn.outline { background: transparent; color: var(--olive-dark); border: 1px solid var(--olive); }
.mini-info { display: flex; gap: 18px; flex-wrap: wrap; color: var(--olive-dark); font-size: .82rem; }

.logo-wrap { position: relative; display: flex; justify-content: center; }
.logo-wrap img {
  width: min(100%, 530px);
  border-radius: 50%;
  filter: drop-shadow(0 25px 35px rgba(70,70,45,.16));
}
.petal {
  position: absolute;
  z-index: 2;
  color: var(--rose);
  font-size: 2.2rem;
}
.petal-a { top: 4%; left: 5%; transform: rotate(-18deg); }
.petal-b { right: 3%; bottom: 8%; color: var(--gold); }

.welcome {
  max-width: 850px;
  margin: 0 auto;
  padding: 90px 8vw 100px;
  text-align: center;
}
.ornament { color: var(--rose); font-size: 2rem; }
.welcome p:last-child { max-width: 700px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }

.section { padding: 100px 8vw; }
.menu { background: rgba(242,237,220,.72); }
.heading { text-align: center; max-width: 680px; margin: 0 auto 42px; }
.heading p:last-child { color: var(--muted); }
.menu-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sweet-card {
  background: rgba(255,253,247,.88);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 31px 26px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(70,70,45,.045);
  transition: transform .2s ease;
}
.sweet-card:hover { transform: translateY(-4px); }
.sweet-card.featured { border-color: rgba(108,117,75,.55); }
.sweet-icon { font-size: 2.5rem; min-height: 58px; }
.sweet-card p { color: var(--muted); min-height: 55px; }
.sweet-card span { color: var(--olive); font-size: .78rem; letter-spacing: .06em; }

.custom {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 7vw;
  background: var(--paper);
}
.custom-art {
  min-height: 430px;
  border-radius: 45% 55% 48% 52%;
  background:
    radial-gradient(circle at 45% 38%, rgba(217,148,139,.3), transparent 17%),
    radial-gradient(circle at 63% 68%, rgba(108,117,75,.22), transparent 18%),
    var(--cream-2);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
.circle-note {
  width: 230px;
  height: 230px;
  border: 1px dashed var(--olive);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--olive-dark);
  background: rgba(255,253,247,.55);
}
.circle-note span { font-family: "Parisienne", cursive; font-size: 2rem; }
.circle-note strong { font-family: "Playfair Display", serif; text-align: center; font-size: 2rem; line-height: 1; }
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 25px;
  margin: 25px 0;
  color: var(--olive-dark);
}

.about { text-align: center; }
.about-card {
  max-width: 950px;
  margin: auto;
  padding: 65px 8vw;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 15% 20%, rgba(217,148,139,.12), transparent 20%),
    radial-gradient(circle at 85% 80%, rgba(108,117,75,.12), transparent 22%),
    var(--paper);
  box-shadow: var(--shadow);
}
.about-card p:not(.kicker) { max-width: 700px; margin: 0 auto; color: var(--muted); }
.signature { font-family: "Parisienne", cursive; color: var(--olive); font-size: 2.4rem; margin-top: 28px; }

.order { background: var(--olive-dark); }
.order-card {
  max-width: 1050px;
  margin: auto;
  padding: 60px 7vw;
  border-radius: 38px;
  background: var(--paper);
  text-align: center;
}
.order-card > div:first-child p:last-child { max-width: 700px; margin: auto; color: var(--muted); }
.order-buttons { justify-content: center; }
.order-info {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  padding-top: 15px;
  color: var(--olive-dark);
  font-size: .9rem;
}
.order-info strong { font-size: .7rem; letter-spacing: .14em; }

footer {
  background: #424b30;
  color: #f9f6e9;
  padding: 28px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .82rem;
}
footer .footer-brand { color: #f9f6e9; font-size: 1.8rem; }

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 55px; }
  .hero-copy { margin: auto; }
  h1 span { margin-left: .5em; }
  .buttons, .mini-info { justify-content: center; }
  .logo-wrap { order: -1; }
  .logo-wrap img { max-width: 340px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .custom { grid-template-columns: 1fr; }
  .custom-art { min-height: 330px; }
}
@media (max-width: 560px) {
  .header { padding: 11px 5vw; }
  nav a:not(.pill) { display: none; }
  .hero { padding-left: 6vw; padding-right: 6vw; }
  h1 { font-size: 5.7rem; }
  .section { padding: 72px 6vw; }
  .menu-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .order-card { padding: 45px 24px; }
  .order-info { gap: 25px; }
}
