:root {
  --blush: #f4bebc;
  --rose: #dc5c78;
  --rose-dark: #b9415e;
  --cream: #fff8ee;
  --paper: #fffdf9;
  --espresso: #311514;
  --brown: #735b54;
  --gold: #c79954;
  --line: rgba(220, 92, 120, 0.28);
  --shadow: 0 18px 50px rgba(63, 24, 31, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: .75rem max(4vw, 1rem);
  background: rgba(255, 248, 238, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}
.brand strong, .brand span { display: block; }
.brand strong { font-family: "Playfair Display", serif; font-size: 1.05rem; }
.brand span { color: var(--brown); font-size: .76rem; }

.nav { display: flex; align-items: center; gap: 1.1rem; font-weight: 700; font-size: .9rem; }
.nav a:hover { color: var(--rose-dark); }
.phone-link { color: white; background: var(--rose); padding: .65rem .9rem; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--espresso); font-size: 1.5rem; cursor: pointer; }

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-photo, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(31,10,10,.88) 0%, rgba(31,10,10,.72) 44%, rgba(31,10,10,.18) 78%, rgba(31,10,10,.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 6rem max(7vw, 1.25rem);
  color: white;
}
.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid rgba(255,255,255,.75);
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .76rem;
  font-weight: 800;
}
.eyebrow.light { color: #ffd2d8; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.08; }
h1 { margin: 0; font-size: clamp(3.2rem, 7vw, 6.8rem); letter-spacing: -.045em; }
h2 { margin: 0 0 1rem; font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: -.035em; }
h3 { margin: 0 0 .75rem; font-size: 1.45rem; }
.hero-content > p:not(.eyebrow) { max-width: 650px; font-size: 1.1rem; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: .82rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--rose); color: white; box-shadow: 0 12px 28px rgba(220,92,120,.27); }
.button.ghost { border: 1px solid rgba(255,255,255,.75); color: white; background: rgba(255,255,255,.08); }
.button.outline { border: 1px solid var(--espresso); }

.hours-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -2.2rem max(5vw, 1rem) 0;
  position: relative;
  z-index: 5;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hours-strip > div { padding: 1.35rem; text-align: center; background: var(--paper); }
.hours-strip strong, .hours-strip span { display: block; }
.hours-strip span { color: var(--brown); font-size: .9rem; }

.section { padding: 7rem max(6vw, 1.2rem); }
.section-heading { max-width: 820px; margin: 0 auto 3rem; text-align: center; }
.section-heading p { color: var(--brown); font-size: 1.05rem; }

.intro { background: var(--paper); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 1100px; margin: auto; }
.feature-grid article {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #fffdf9, #fff2f4);
  box-shadow: 0 12px 30px rgba(63,24,31,.06);
}
.feature-grid article > span { font-size: 2rem; }
.feature-grid p { color: var(--brown); }

.menu-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(244,190,188,.28), transparent 28%),
    var(--cream);
}
.menu-columns { display: grid; grid-template-columns: 1.15fr .9fr .9fr; gap: 1.15rem; align-items: start; }
.stack { display: grid; gap: 1.15rem; }
.menu-panel {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 10px 28px rgba(49,21,20,.05);
}
.menu-panel h3 {
  padding: .55rem .75rem;
  border: 1px solid var(--rose);
  color: var(--rose-dark);
  background: rgba(255,249,239,.8);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.price-list { display: grid; gap: .52rem; }
.price-list > div, .cake-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: .4rem;
  border-bottom: 1px dashed rgba(49,21,20,.14);
}
.price-list strong, .cake-row strong { white-space: nowrap; }
.flavors { color: var(--brown); font-size: .94rem; }
.allergy-note { margin: 2.5rem 0 0; text-align: center; color: var(--rose-dark); font-weight: 800; }

.pricing-section { background: var(--paper); }
.cake-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 1.3rem; max-width: 1100px; margin: auto; }
.cake-price-card, .specialty-card {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.cake-price-card { display: grid; gap: .85rem; }
.cake-row { padding: .55rem 0 .7rem; font-size: 1.08rem; }
.specialty-card h3 {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--rose);
  color: var(--rose-dark);
}
.specialty-card p { color: var(--brown); }
.advance-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--rose);
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
}

.gallery-section { background: #fff2f4; }
.bread-section { background: #fffaf2; }
.gallery-grid {
  columns: 4 260px;
  column-gap: 1rem;
}
.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
  break-inside: avoid;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform .25s ease;
}
.gallery-item:hover img { transform: scale(1.025); }

.visit-section {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: stretch;
  background: var(--paper);
}
.visit-photo, .visit-card { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }
.visit-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; }
.visit-card { padding: clamp(2rem, 5vw, 4rem); background: linear-gradient(145deg, #fff7ef, #fff0f3); }
.visit-details { display: grid; gap: .7rem; color: var(--brown); }
.visit-details a { color: var(--rose-dark); font-weight: 800; }

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem max(4vw, 1rem);
  border-top: 1px solid var(--line);
  background: white;
  color: var(--brown);
  font-size: .88rem;
}
footer img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
footer strong, footer span { display: block; }

.lightbox {
  width: min(92vw, 1050px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 25px 80px rgba(0,0,0,.45);
}
.lightbox::backdrop { background: rgba(0,0,0,.78); }
.lightbox img { width: 100%; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 1.7rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem max(4vw, 1rem);
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .menu-columns { grid-template-columns: repeat(2, 1fr); }
  .menu-columns > .stack:last-child { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); }
  .cake-layout, .visit-section { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .brand span { display: none; }
  .brand img { width: 48px; height: 48px; }
  .hero { min-height: 76vh; }
  .hero-overlay { background: rgba(31,10,10,.72); }
  .hero-content { padding-top: 5rem; padding-bottom: 5rem; }
  .hero-logo { width: 88px; height: 88px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hours-strip, .menu-columns, .menu-columns > .stack:last-child { grid-template-columns: 1fr; }
  .hours-strip { margin: 0; border-radius: 0; }
  .section { padding: 5rem 1.05rem; }
  .gallery-grid { columns: 2 150px; }
  footer { grid-template-columns: auto 1fr; }
  footer p { grid-column: 1 / -1; }
}
