:root {
  --pink: #efc1c7;
  --pink-deep: #e5a3ac;
  --cream: #fff2e3;
  --sand: #ede0d1;
  --navy: #38495b;
  --coral: #e79b7f;
  --peach: #fac7a9;
  --red: #c4304a;
  --red-dark: #9d2238;
  --radius: 18px;
  --gutter: 1.25rem;
  --max: 1100px;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head: "Archivo Black", "Nunito", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--pink);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); }
h1, h2, h3 { font-family: var(--font-head); font-weight: 400; line-height: 1.1; margin: 0; }
h2 { font-size: clamp(2rem, 6vw, 3rem); }

.skip { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: .5rem 1rem; z-index: 100; }
.skip:focus { left: 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem var(--gutter);
  background: rgba(239, 193, 199, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(56, 73, 91, .12);
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--navy); font-family: var(--font-head); font-size: 1.3rem; }
.brand img { border-radius: 50%; }
.nav { display: flex; gap: 1.5rem; }
.nav a { color: var(--navy); text-decoration: none; font-weight: 700; font-size: .95rem; }
.nav a:hover, .nav a:focus-visible, .nav a[aria-current="page"] { color: var(--red); }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; text-transform: uppercase; letter-spacing: .05em;
  font-weight: 800; font-size: .95rem;
  background: var(--navy); color: var(--cream); padding: .9rem 2rem; border-radius: 999px;
  border: 2px solid var(--navy); transition: background .15s, transform .15s;
}
.btn:hover, .btn:focus-visible { background: var(--red); border-color: var(--red); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); }
.btn-outline:hover, .btn-outline:focus-visible { background: var(--navy); border-color: var(--navy); color: var(--cream); }

/* Sections */
section { padding: 3.5rem var(--gutter); }
.hero { display: grid; gap: 2rem; max-width: var(--max); margin: 0 auto; align-items: center; }
.eyebrow { display: inline-block; background: var(--coral); color: var(--cream); font-weight: 800; letter-spacing: .12em; padding: .3rem 1rem; border-radius: 999px; margin: 0 0 1rem; }
.hero h1 { font-size: clamp(3.4rem, 16vw, 6.5rem); margin-bottom: 1rem; color: var(--navy); }
.lead { font-size: 1.2rem; margin: 0 0 1.75rem; }
.hero-photo img {
  width: min(100%, 480px); aspect-ratio: 1; object-fit: cover; border-radius: 50%; margin: 0 auto;
  border: 8px solid var(--cream); box-shadow: 0 20px 50px rgba(56, 73, 91, .22);
}

.offer { background: var(--cream); max-width: none; text-align: center; }
.offer h2 { margin-bottom: 2rem; }
.cards { list-style: none; margin: 0 auto 2.5rem; padding: 0; display: grid; gap: 1.25rem; max-width: var(--max); }
.card { background: var(--sand); border-radius: var(--radius); overflow: hidden; }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card h3 { font-size: 1.3rem; padding: 1.1rem 1rem .3rem; }
.card p { margin: 0; padding: 0 1rem 1.25rem; }

.order { text-align: center; max-width: var(--max); margin: 0 auto; }
.order h2 { margin-bottom: .75rem; }
.order p { margin: 0 0 1.5rem; }

/* Menu page */
.menu-page { background: var(--peach); }
.menu-head { text-align: center; max-width: var(--max); margin: 0 auto; }
.menu-head h1 { font-size: clamp(2.4rem, 9vw, 4.5rem); margin-bottom: .75rem; }
.menu-head p { margin: 0 0 1rem; }
.menu-grid { list-style: none; margin: 0 auto; padding: 0 var(--gutter) 3.5rem; display: grid; gap: 1.25rem; max-width: var(--max); }
.menu-grid li { border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 28px rgba(56, 73, 91, .2); background: #fff; }
.menu-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.prices { max-width: 640px; margin: 0 auto; padding: 0 var(--gutter) 3.5rem; }
.prices h2 { font-size: 1.6rem; margin-bottom: 1rem; text-align: center; }
.prices dl { margin: 0; background: var(--cream); border-radius: var(--radius); padding: .5rem 1.25rem; }
.prices div { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px dashed rgba(56, 73, 91, .25); }
.prices div:last-child { border-bottom: 0; }
.prices dt { font-weight: 700; }
.prices dt small { display: block; font-weight: 400; font-size: .85rem; }
.prices dd { margin: 0; font-weight: 800; white-space: nowrap; }

.site-footer { padding: 2rem var(--gutter); text-align: center; font-size: .9rem; }
.site-footer p { margin: 0; }

:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }

@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 760px) {
  section { padding: 5rem 2rem; }
  .hero { grid-template-columns: 1.1fr .9fr; gap: 4rem; }
  .menu-grid { padding-bottom: 5rem; }
}
@media (min-width: 960px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
