:root {
  color-scheme: light;
  --cream: #fff8f1;
  --cream-deep: #f7eadb;
  --pink: #f0b6bf;
  --pink-deep: #b85d70;
  --berry: #763747;
  --cocoa: #4f352f;
  --text: #372a27;
  --muted: #76635d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(118, 55, 71, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(240, 182, 191, 0.28), transparent 34rem), linear-gradient(180deg, var(--cream) 0%, #fffdf9 52%, var(--cream) 100%);
  line-height: 1.6;
}
img, video { display: block; max-width: 100%; }
a { color: var(--pink-deep); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 248, 241, 0.9);
  border-bottom: 1px solid rgba(184, 93, 112, 0.16);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--cocoa); font-weight: 800; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--berry);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.04em;
}
.nav { display: flex; align-items: center; gap: clamp(0.7rem, 2vw, 1.5rem); font-size: 0.95rem; font-weight: 700; }
.nav a { color: var(--cocoa); text-decoration: none; }
.nav a:hover, .nav a:focus-visible { color: var(--pink-deep); }
.section-pad { padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem); }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); min-height: 78vh; }
.eyebrow { margin: 0 0 0.75rem; color: var(--pink-deep); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; color: var(--cocoa); font-family: "Cormorant Garamond", Georgia, serif; line-height: 0.98; }
h1 { max-width: 13ch; font-size: clamp(3.5rem, 9vw, 7.8rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4.25rem); }
h3 { font-size: 1.75rem; }
.hero-text, .section-heading p, .order-intro p, .facebook-strip p, .about-copy p { color: var(--muted); font-size: 1.07rem; }
.hero-text { max-width: 42rem; margin: 1.4rem 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.button.primary { color: var(--white); background: var(--berry); box-shadow: 0 14px 32px rgba(118, 55, 71, 0.24); }
.button.secondary { color: var(--berry); background: var(--white); border: 1px solid rgba(184, 93, 112, 0.22); }
.hero-photo-card, .order-form, .gallery-item, .facebook-strip, .contact-note, .flavor-card, .menu-image-card, .cupcake-video {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(184, 93, 112, 0.14);
  box-shadow: var(--shadow);
}
.hero-photo-card { margin: 0; overflow: hidden; border-radius: var(--radius); }
.hero-photo-card img { width: 100%; height: min(66vh, 42rem); object-fit: cover; object-position: center; }
.hero-photo-card figcaption, .gallery-item figcaption, .menu-image-card figcaption { padding: 0.9rem 1rem; color: var(--muted); font-size: 0.95rem; font-weight: 700; }
.about { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); background: linear-gradient(90deg, rgba(247, 234, 219, 0.74), rgba(255, 255, 255, 0.28)); }
.about-copy, .section-heading { max-width: 48rem; }
.section-heading { margin-bottom: 2rem; }
.section-heading.compact { max-width: 42rem; }
.gallery-section { padding-bottom: clamp(2rem, 4vw, 4rem); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.gallery-item { margin: 0; overflow: hidden; border-radius: 24px; }
.gallery-item.feature { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 18rem; object-fit: cover; }
.gallery-item.feature img { height: 38.2rem; }
.video-section { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1fr); align-items: center; gap: clamp(2rem, 5vw, 4rem); padding-top: clamp(2rem, 4vw, 4rem); }
.cupcake-video { width: 100%; border-radius: var(--radius); overflow: hidden; }
.flavors-section { background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(247, 234, 219, 0.72)); }
.flavor-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr); gap: clamp(1.25rem, 4vw, 3rem); align-items: start; }
.flavor-card, .menu-image-card { border-radius: var(--radius); overflow: hidden; }
.flavor-card { padding: clamp(1.25rem, 3vw, 2rem); }
.flavor-card h3 { margin-bottom: 1rem; }
.flavor-list { columns: 2; column-gap: 2rem; margin: 0; padding-left: 1.2rem; color: var(--muted); font-weight: 700; }
.flavor-list li { break-inside: avoid; margin: 0 0 0.45rem; }
.menu-image-card { margin: 0; }
.menu-image-card img { width: 100%; height: auto; }
.facebook-strip { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin: 0 clamp(1rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem); padding: clamp(1.5rem, 4vw, 3rem); border-radius: var(--radius); }
.facebook-strip h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.facebook-strip p { max-width: 44rem; margin-bottom: 0; }
.order-section { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.order-intro { position: sticky; top: 7rem; }
.contact-note { margin-top: 1.5rem; padding: 1rem; border-radius: 18px; color: var(--muted); }
.order-form { display: grid; gap: 1rem; padding: clamp(1.25rem, 3vw, 2rem); border-radius: var(--radius); }
.form-row { display: grid; gap: 0.45rem; }
.two-column { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
label { color: var(--cocoa); font-weight: 800; }
label span { color: var(--muted); font-weight: 600; }
input, textarea { width: 100%; border: 1px solid rgba(118, 55, 71, 0.18); border-radius: 16px; padding: 0.9rem 1rem; color: var(--text); background: rgba(255, 255, 255, 0.92); font: inherit; }
input:focus, textarea:focus { outline: 3px solid rgba(240, 182, 191, 0.45); border-color: var(--pink-deep); }
textarea { resize: vertical; }
.hidden-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 1.5rem; margin: 0; color: var(--berry); font-weight: 700; }
.form-status.error { color: #9d2831; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 2rem clamp(1rem, 4vw, 4rem); color: var(--muted); background: var(--cream-deep); }
.site-footer p { margin: 0; }
.site-footer div { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 980px) {
  .site-header, .site-footer, .facebook-strip { align-items: flex-start; flex-direction: column; }
  .nav { flex-wrap: wrap; }
  .hero, .about, .order-section, .video-section, .flavor-layout { grid-template-columns: 1fr; }
  .order-intro { position: static; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.feature { grid-column: span 2; }
  .gallery-item.feature img { height: 28rem; }
}
@media (max-width: 640px) {
  .two-column, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.feature { grid-column: span 1; }
  .gallery-item img, .gallery-item.feature img { height: 18rem; }
  .flavor-list { columns: 1; }
  .hero-actions, .button { width: 100%; }
  h1 { font-size: clamp(3rem, 17vw, 4.5rem); }
}


/* Responsive polish: keep the layout comfortable from phones to wide desktops. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
}

main {
  overflow: hidden;
}

p,
li,
a,
figcaption,
.form-status {
  overflow-wrap: anywhere;
}

input,
textarea,
select,
button {
  font-size: 16px;
}

@media (min-width: 1180px) {
  .section-pad {
    padding-left: max(4rem, calc((100vw - 1280px) / 2));
    padding-right: max(4rem, calc((100vw - 1280px) / 2));
  }

  .facebook-strip {
    margin-left: max(4rem, calc((100vw - 1280px) / 2));
    margin-right: max(4rem, calc((100vw - 1280px) / 2));
  }
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    gap: 0.8rem;
  }

  .brand {
    font-size: 1rem;
  }

  .nav {
    width: 100%;
    gap: 0.5rem;
  }

  .nav a {
    display: inline-flex;
    min-height: 2.45rem;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    background: rgba(255, 255, 255, 0.58);
  }

  .hero {
    min-height: auto;
    padding-top: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-photo-card img {
    height: min(62vh, 34rem);
  }

  .video-section {
    padding-top: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 640px) {
  :root {
    --radius: 22px;
    --shadow: 0 16px 42px rgba(118, 55, 71, 0.12);
  }

  .site-header {
    padding: 0.85rem 1rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.86rem;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav a {
    justify-content: center;
    font-size: 0.88rem;
    text-align: center;
  }

  .section-pad {
    padding: 3rem 1rem;
  }

  .hero {
    gap: 1.5rem;
  }

  h1 {
    max-width: 11ch;
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  h3 {
    font-size: 1.55rem;
  }

  .hero-text,
  .section-heading p,
  .order-intro p,
  .facebook-strip p,
  .about-copy p {
    font-size: 1rem;
  }

  .hero-photo-card img {
    height: 26rem;
    object-position: center top;
  }

  .hero-photo-card figcaption,
  .gallery-item figcaption,
  .menu-image-card figcaption {
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
  }

  .gallery-grid {
    gap: 0.9rem;
  }

  .gallery-item img,
  .gallery-item.feature img {
    height: 17rem;
  }

  .gallery-item:nth-child(4) img,
  .menu-image-card img {
    height: auto;
  }

  .cupcake-video {
    border-radius: 18px;
  }

  .flavor-card,
  .order-form {
    padding: 1rem;
  }

  .flavor-list {
    padding-left: 1.1rem;
    font-size: 0.96rem;
  }

  .facebook-strip {
    margin: 0 1rem 2rem;
    padding: 1.25rem;
  }

  .contact-note {
    padding: 0.9rem;
  }

  input,
  textarea {
    border-radius: 14px;
    padding: 0.85rem 0.9rem;
  }

  .site-footer {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 390px) {
  .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 3.45rem);
  }

  .hero-photo-card img,
  .gallery-item img,
  .gallery-item.feature img {
    height: 15.5rem;
  }
}


/* Primary navigation cleanup: four clear actions with Order emphasized. */
.desktop-only {
  display: inline;
}

.nav .nav-cta {
  color: var(--white);
  background: var(--berry);
  box-shadow: 0 10px 24px rgba(118, 55, 71, 0.2);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--pink-deep);
}

@media (min-width: 981px) {
  .nav a {
    display: inline-flex;
    min-height: 2.55rem;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
  }
}

@media (max-width: 640px) {
  .desktop-only {
    display: none;
  }

  .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav a {
    min-height: 2.8rem;
  }
}


/* Reviews and tighter mobile navigation: compact pills and clear review cards. */
.reviews-section {
  background: linear-gradient(90deg, rgba(247, 234, 219, 0.76), rgba(255, 255, 255, 0.32));
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 100%;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  border: 1px solid rgba(184, 93, 112, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.review-source {
  width: fit-content;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--berry);
  background: var(--cream-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.review-author {
  margin: 0;
  color: var(--cocoa);
  font-weight: 800;
}

.verified-review-info h3 {
  margin-top: 0.25rem;
}

.verified-review-info p:not(.review-source) {
  margin: 0;
  color: var(--muted);
}

.review-form-section {
  min-height: calc(100vh - 5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.review-form select {
  width: 100%;
  border: 1px solid rgba(118, 55, 71, 0.18);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
}

@media (max-width: 980px) {
  .review-grid,
  .review-form-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    gap: 0.35rem;
  }

  .nav a {
    min-height: 2.25rem;
    padding: 0.25rem 0.45rem;
    font-size: 0.78rem;
    line-height: 1.1;
  }

  .review-grid {
    gap: 0.85rem;
  }

  .review-card {
    border-radius: 20px;
    padding: 1rem;
  }

  .review-card blockquote {
    font-size: 0.96rem;
  }
}

@media (max-width: 390px) {
  .nav a {
    min-height: 2.15rem;
    padding-inline: 0.35rem;
    font-size: 0.74rem;
  }
}


/* Clean reviews presentation: keep public reviews natural and uncluttered. */
.review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card.facebook-review {
  min-height: auto;
}

@media (max-width: 760px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}


/* Single-row mobile navigation: keep all four pills across the top. */
@media (max-width: 640px) {
  .site-header {
    gap: 0.55rem;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.28rem;
  }

  .nav a {
    min-height: 2rem;
    padding: 0.22rem 0.24rem;
    border-radius: 999px;
    font-size: clamp(0.66rem, 2.7vw, 0.76rem);
    line-height: 1;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.22rem;
  }

  .nav a {
    min-height: 1.9rem;
    padding-inline: 0.18rem;
    font-size: clamp(0.6rem, 2.65vw, 0.7rem);
  }
}
