:root {
  --ink: #303637;
  --deep: #222728;
  --cream: #f7f4ee;
  --white: #fffdfa;
  --seafoam: #dce7e3;
  --sage: #afc0b9;
  --blue: #afbec7;
  --gray: #d8d9d7;
  --line: #d8d1c7;
  --muted: #6e7472;
  --shadow: 0 22px 55px rgba(38, 40, 39, 0.12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 250, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.nav-cta {
  padding: 10px 18px;
  background: var(--sage);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 31, 31, 0.34), rgba(28, 31, 31, 0.04) 62%, rgba(28, 31, 31, 0.16)),
    linear-gradient(0deg, rgba(23, 25, 24, 0.12), transparent 55%);
}

.hero-card {
  position: absolute;
  left: 6%;
  bottom: 70px;
  width: min(520px, 88vw);
  padding: 42px;
  background: rgba(255, 253, 250, 0.93);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card h1,
.section-heading h2,
.about-detail h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.hero-card h1 {
  font-size: clamp(46px, 6vw, 74px);
}

.hero-card h1 em {
  color: #61766f;
  font-family: "Sacramento", cursive;
  font-weight: 400;
}

.hero-card p {
  color: #5f6462;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  background: var(--sage);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--ink);
}

.announcement {
  padding: 14px 20px;
  background: var(--deep);
  color: #fff;
  text-align: center;
}

.announcement p {
  margin: 0;
}

.announcement a {
  font-weight: 700;
}

.section {
  padding: 105px clamp(20px, 7vw, 105px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.section-heading h2,
.about-detail h2,
.contact-copy h2 {
  font-size: clamp(44px, 6vw, 72px);
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.menu-section {
  background: var(--white);
}

.menu-brand {
  margin-bottom: 25px;
  text-align: center;
}

.menu-brand img {
  width: 150px;
  height: 150px;
  margin: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.menu-tab {
  padding: 10px 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.menu-tab.active {
  background: var(--seafoam);
}

.menu-panel {
  display: none;
  max-width: 1050px;
  margin: auto;
  border-top: 1px solid var(--line);
}

.menu-panel.active {
  display: block;
}

.menu-item {
  display: grid;
  grid-template-columns: 120px 46px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.menu-placeholder {
  position: relative;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #cbd7d2;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.8), rgba(255,255,255,.15)),
    var(--seafoam);
}

.menu-placeholder::before,
.menu-placeholder::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(84, 104, 97, 0.20);
  border-radius: 50%;
}

.menu-placeholder::before {
  width: 70px;
  height: 70px;
}

.menu-placeholder::after {
  width: 48px;
  height: 48px;
}

.menu-placeholder span {
  position: relative;
  z-index: 1;
  color: #71817c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.menu-number {
  color: #929795;
  font-size: 12px;
}

.menu-copy h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 29px;
}

.menu-copy h4 {
  margin: 4px 0 5px;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-copy p {
  margin: 0;
  color: var(--muted);
}

.pricing-note {
  display: flex;
  max-width: 1050px;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 36px auto 0;
  padding: 20px 23px;
  background: var(--seafoam);
  border-radius: 16px;
}

.pricing-note p {
  margin: 0;
}

.pricing-note a {
  font-weight: 700;
}

.gallery-section {
  background: linear-gradient(145deg, #f6f3ed, #edf3f1);
}

.gallery-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: end;
}

.gallery-instagram {
  margin-bottom: 58px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.gallery-grid {
  columns: 4 245px;
  column-gap: 16px;
}

.gallery-card {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 8px 24px rgba(42, 44, 43, 0.08);
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: auto;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.018);
  filter: brightness(1.02);
}

.about-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 75px;
  align-items: center;
  background: var(--white);
}

.script-label {
  margin: 0 0 8px;
  color: #657a72;
  font-family: "Sacramento", cursive;
  font-size: 40px;
  line-height: 1;
}

.about-detail p {
  color: var(--muted);
  font-size: 17px;
}

.about-detail a {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid;
}

.about-mark {
  display: flex;
  justify-content: center;
}

.about-mark img {
  width: min(390px, 80vw);
  height: min(390px, 80vw);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.order-section {
  background: var(--seafoam);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.steps article {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-weight: 700;
}

.steps h3 {
  margin: 18px 0 6px;
  font-family: "Playfair Display", serif;
  font-size: 27px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  background: var(--white);
}

.contact-copy p {
  color: var(--muted);
}

.contact-copy a {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 35px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form .button {
  justify-self: start;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 48px clamp(20px, 7vw, 105px) 25px;
  background: var(--deep);
  color: #fff;
}

footer img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}

footer strong {
  font-family: "Playfair Display", serif;
  font-size: 28px;
}

footer p {
  margin: 3px 0;
  color: #b8bcba;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid #434948;
  font-size: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 35px;
  background: rgba(23, 27, 27, 0.92);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 950px) {
  .site-nav {
    position: fixed;
    inset: 82px 0 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 42px 25px;
    background: var(--white);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    font-size: 25px;
  }

  .menu-toggle {
    display: block;
  }

  .gallery-heading-row {
    display: block;
  }

  .gallery-instagram {
    display: inline-block;
    margin: -20px 0 38px;
  }

  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps article:nth-child(2) {
    border-right: 0;
  }

  .steps article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .section {
    padding: 76px 18px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-photo {
    object-position: 55% center;
  }

  .hero-card {
    left: 18px;
    bottom: 40px;
    width: calc(100% - 36px);
    padding: 28px;
  }

  .menu-brand img {
    width: 132px;
    height: 132px;
  }

  .menu-item {
    grid-template-columns: 84px 28px 1fr;
    gap: 14px;
  }

  .menu-placeholder {
    width: 84px;
    height: 84px;
    border-radius: 14px;
  }

  .menu-placeholder::before {
    width: 52px;
    height: 52px;
  }

  .menu-placeholder::after {
    width: 34px;
    height: 34px;
  }

  .menu-placeholder span {
    font-size: 8px;
  }

  .menu-copy h3 {
    font-size: 24px;
  }

  .pricing-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    columns: 2 145px;
    column-gap: 10px;
  }

  .gallery-card {
    margin-bottom: 10px;
    border-radius: 13px;
  }

  .about-mark img {
    width: min(300px, 82vw);
    height: min(300px, 82vw);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps article:last-child {
    border-bottom: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gallery-card img {
    transition: none;
  }
}

/* V8 HERO AND GALLERY FIX START */

.hero-card {
  left: 5% !important;
  bottom: 42px !important;
  width: min(325px, 68vw) !important;
  padding: 17px 19px !important;
  background: rgba(255, 253, 250, 0.985) !important;
  box-shadow: 0 16px 38px rgba(38, 40, 39, 0.14) !important;
}

.hero-card .eyebrow {
  margin-bottom: 5px !important;
  font-size: 8px !important;
  letter-spacing: 0.14em !important;
}

.hero-card h1 {
  font-size: clamp(30px, 3.7vw, 42px) !important;
  line-height: 0.96 !important;
}

.hero-card h1 em {
  font-size: 0.92em !important;
}

.hero-card > p {
  margin: 9px 0 13px !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.hero-actions {
  gap: 7px !important;
}

.hero-actions .button {
  padding: 7px 12px !important;
  font-size: 10px !important;
}

.gallery-grid {
  columns: 4 245px !important;
  column-gap: 16px !important;
}

.gallery-card {
  display: inline-block !important;
  width: 100% !important;
  margin: 0 0 16px !important;
  overflow: hidden !important;
  break-inside: avoid !important;
  border-radius: 18px !important;
  background: #fffdfa !important;
}

.gallery-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 620px) {
  .hero-card {
    left: 14px !important;
    bottom: 20px !important;
    width: min(280px, calc(100% - 28px)) !important;
    padding: 15px 16px !important;
  }

  .hero-card h1 {
    font-size: 31px !important;
  }

  .hero-card > p {
    font-size: 11px !important;
  }

  .hero-actions .button {
    padding: 7px 10px !important;
    font-size: 9px !important;
  }

  .gallery-grid {
    columns: 2 145px !important;
    column-gap: 10px !important;
  }

  .gallery-card {
    margin-bottom: 10px !important;
    border-radius: 13px !important;
  }
}

/* V8 HERO AND GALLERY FIX END */

/* V9 NATURAL GALLERY START */

.gallery-grid {
  columns: 4 250px !important;
  column-gap: 18px !important;
}

.gallery-card {
  display: inline-block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  overflow: visible !important;
  break-inside: avoid !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: transparent !important;
  box-shadow: 0 8px 24px rgba(42, 44, 43, 0.08) !important;
}

.gallery-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 16px !important;
}

@media (max-width: 900px) {
  .gallery-grid {
    columns: 3 220px !important;
  }
}

@media (max-width: 620px) {
  .gallery-grid {
    columns: 2 145px !important;
    column-gap: 10px !important;
  }

  .gallery-card {
    margin-bottom: 10px !important;
    border-radius: 12px !important;
  }

  .gallery-card img {
    border-radius: 12px !important;
  }
}

/* V9 NATURAL GALLERY END */

/* Hide the gallery grid until new photos are added. */
.gallery-grid:empty {
  display: none !important;
}

/* CBK BRAND + HERO + ABOUT REFINEMENT START */

.brand {
  gap: 16px !important;
}

.brand img {
  width: 74px !important;
  height: 74px !important;
  border-radius: 50% !important;
}

.brand-wordmark {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.brand-wordmark strong {
  display: flex !important;
  align-items: flex-end !important;
  gap: 8px !important;
  line-height: 0.95 !important;
}

.brand-script {
  font-family: "Sacramento", cursive !important;
  font-size: clamp(34px, 4vw, 52px) !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
}

.brand-serif {
  font-family: "Playfair Display", serif !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  color: var(--ink) !important;
}

.brand-wordmark small {
  margin-top: 8px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
}

.hero-card {
  left: 5% !important;
  bottom: 48px !important;
  width: min(430px, 82vw) !important;
  padding: 28px 30px !important;
  background: rgba(255, 253, 250, 0.96) !important;
  box-shadow: 0 18px 42px rgba(38, 40, 39, 0.14) !important;
}

.hero-card .eyebrow {
  font-size: 10px !important;
  letter-spacing: 0.18em !important;
  margin-bottom: 10px !important;
}

.hero-card h1 {
  font-size: clamp(38px, 4.5vw, 58px) !important;
  line-height: 0.98 !important;
}

.hero-card h1 em {
  font-family: "Sacramento", cursive !important;
  font-weight: 400 !important;
  font-size: 0.95em !important;
}

.hero-card > p {
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin: 14px 0 18px !important;
}

.hero-actions .button {
  font-size: 13px !important;
  padding: 10px 16px !important;
}

.script-label {
  font-size: 44px !important;
  color: #6e887f !important;
}

.about-detail .eyebrow {
  margin-bottom: 10px !important;
}

.about-detail h2 {
  font-size: clamp(54px, 6vw, 82px) !important;
  line-height: 1.02 !important;
  max-width: 780px !important;
}

.about-detail p {
  font-size: 18px !important;
  line-height: 1.8 !important;
  max-width: 760px !important;
}

@media (max-width: 700px) {
  .brand img {
    width: 60px !important;
    height: 60px !important;
  }

  .brand-wordmark strong {
    gap: 5px !important;
  }

  .brand-script {
    font-size: 30px !important;
  }

  .brand-serif {
    font-size: 24px !important;
  }

  .brand-wordmark small {
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
  }

  .hero-card {
    width: min(360px, calc(100% - 28px)) !important;
    left: 14px !important;
    bottom: 20px !important;
    padding: 22px !important;
  }

  .hero-card h1 {
    font-size: 34px !important;
  }

  .hero-card > p {
    font-size: 14px !important;
  }

  .about-detail h2 {
    font-size: 42px !important;
  }

  .about-detail p {
    font-size: 16px !important;
  }
}

/* CBK BRAND + HERO + ABOUT REFINEMENT END */

/* CAKEDBYKIM NUMBER 9 FONT START */

/* Clean, readable supporting font */
body,
p,
a,
label,
input,
textarea,
select,
button,
small,
.menu-copy h4,
.pricing-note,
.contact-form {
  font-family: "DM Sans", sans-serif !important;
}

/* Number 9: GFS Artemisia */
.brand strong,
.brand-script,
.brand-serif,
.hero-card h1,
.section-heading h2,
.about-detail h2,
.contact-copy h2,
.menu-copy h3,
.steps h3,
.script-label,
footer strong {
  font-family: "GFS Artemisia", Georgia, serif !important;
}

.brand strong {
  display: block !important;
  font-size: clamp(40px, 4.5vw, 58px) !important;
  font-weight: 700 !important;
  line-height: 0.95 !important;
  letter-spacing: -0.025em !important;
}

/* Makes split brand markup appear as one matching word */
.brand-script,
.brand-serif {
  display: inline !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
}

.hero-card h1 {
  font-size: clamp(44px, 5vw, 64px) !important;
  font-weight: 700 !important;
  line-height: 0.96 !important;
  letter-spacing: -0.035em !important;
}

.hero-card h1 em {
  font-family: "GFS Artemisia", Georgia, serif !important;
  font-size: inherit !important;
  font-weight: 400 !important;
  font-style: italic !important;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(50px, 7vw, 82px) !important;
  font-weight: 700 !important;
  line-height: 0.96 !important;
  letter-spacing: -0.035em !important;
}

.about-detail h2 {
  font-size: clamp(58px, 7vw, 90px) !important;
  font-weight: 700 !important;
  line-height: 0.94 !important;
  letter-spacing: -0.035em !important;
}

.menu-copy h3,
.steps h3,
footer strong {
  font-weight: 700 !important;
}

.script-label {
  font-size: 40px !important;
  font-weight: 400 !important;
  font-style: italic !important;
  line-height: 1.05 !important;
}

.eyebrow,
.site-nav a,
.button,
.menu-tab,
.gallery-instagram,
.about-detail a,
.brand small {
  font-family: "DM Sans", sans-serif !important;
}

@media (max-width: 700px) {
  .brand strong {
    font-size: 36px !important;
  }

  .hero-card h1 {
    font-size: 40px !important;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 48px !important;
  }

  .about-detail h2 {
    font-size: 52px !important;
  }

  .script-label {
    font-size: 34px !important;
  }
}

/* CAKEDBYKIM NUMBER 9 FONT END */

/* MOBILE HERO REFINEMENT START */

@media (max-width: 700px) {
  .hero {
    min-height: 850px !important;
    height: auto !important;
  }

  .hero-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 70% center !important;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(28, 31, 31, 0.08),
        rgba(28, 31, 31, 0.01) 60%,
        rgba(28, 31, 31, 0.08)
      ) !important;
  }

  .hero-card {
    top: 300px !important;
    bottom: auto !important;
    left: 18px !important;
    width: calc(100% - 36px) !important;
    max-width: 370px !important;
    padding: 22px 23px !important;
    background: rgba(255, 253, 250, 0.95) !important;
    box-shadow: 0 16px 36px rgba(38, 40, 39, 0.15) !important;
  }

  .hero-card .eyebrow {
    margin-bottom: 8px !important;
    font-size: 9px !important;
    letter-spacing: 0.16em !important;
  }

  .hero-card h1 {
    font-size: 39px !important;
    line-height: 0.98 !important;
  }

  .hero-card > p {
    margin: 13px 0 17px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 9px !important;
  }

  .hero-actions .button {
    padding: 9px 14px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 820px !important;
  }

  .hero-card {
    top: 270px !important;
    left: 14px !important;
    width: calc(100% - 28px) !important;
    padding: 19px !important;
  }

  .hero-card h1 {
    font-size: 35px !important;
  }

  .hero-card > p {
    font-size: 13px !important;
  }
}

/* MOBILE HERO REFINEMENT END */

/* COOKIE MENU THUMBNAILS START */

.menu-photo {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #d8d1c7;
  border-radius: 18px;
  background: #fffdfa;
  box-shadow: 0 7px 18px rgba(42, 44, 43, 0.08);
}

@media (max-width: 700px) {
  .menu-photo {
    width: 84px;
    height: 84px;
    border-radius: 14px;
  }
}

/* COOKIE MENU THUMBNAILS END */

/* CUPCAKE MENU THUMBNAILS START */

.menu-photo {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #d8d1c7;
  border-radius: 18px;
  background: #fffdfa;
  box-shadow: 0 7px 18px rgba(42, 44, 43, 0.08);
}

@media (max-width: 700px) {
  .menu-photo {
    width: 84px;
    height: 84px;
    border-radius: 14px;
  }
}

/* CUPCAKE MENU THUMBNAILS END */

/* EXTRAS MENU THUMBNAILS START */

#extras .menu-photo {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  object-position: center;
  border: 1px solid #d8d1c7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(42, 44, 43, 0.08);
}

@media (max-width: 700px) {
  #extras .menu-photo {
    width: 84px;
    height: 84px;
    border-radius: 14px;
  }
}

/* EXTRAS MENU THUMBNAILS END */

/* CURRENT GALLERY PHOTOS START */

.gallery-grid {
  columns: 4 250px !important;
  column-gap: 18px !important;
}

.gallery-card {
  display: inline-block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  overflow: hidden !important;
  break-inside: avoid !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: transparent !important;
  box-shadow: 0 8px 24px rgba(42, 44, 43, 0.08) !important;
  cursor: pointer !important;
}

.gallery-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 16px !important;
}

@media (max-width: 900px) {
  .gallery-grid {
    columns: 3 220px !important;
  }
}

@media (max-width: 620px) {
  .gallery-grid {
    columns: 2 145px !important;
    column-gap: 10px !important;
  }

  .gallery-card {
    margin-bottom: 10px !important;
    border-radius: 12px !important;
  }

  .gallery-card img {
    border-radius: 12px !important;
  }
}

/* CURRENT GALLERY PHOTOS END */

/* CUSTOMER REVIEWS START */

.reviews-section {
  background:
    linear-gradient(
      135deg,
      rgba(220, 231, 227, 0.68),
      rgba(255, 253, 250, 0.96)
    );
}

.reviews-section .section-heading {
  max-width: 900px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(30px, 6vw, 85px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.approved-reviews {
  display: grid;
  gap: 24px;
}

.review-intro-card,
.review-empty-state,
.review-form {
  background: rgba(255, 253, 250, 0.97);
  border: 1px solid rgba(216, 209, 199, 0.9);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(42, 44, 43, 0.09);
}

.review-intro-card {
  padding: clamp(28px, 5vw, 50px);
}

.review-intro-stars {
  margin-bottom: 15px;
  color: #b6914c;
  font-size: 26px;
  letter-spacing: 0.16em;
}

.review-intro-card h3,
.review-empty-state h3,
.review-form-heading h3 {
  margin: 0 0 15px;
  font-family: "GFS Artemisia", Georgia, serif;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.review-intro-card p,
.review-empty-state p,
.review-form-heading p {
  color: var(--muted);
}

.review-intro-card .button {
  margin-top: 10px;
}

.review-empty-state {
  padding: 30px;
  background: rgba(255, 253, 250, 0.72);
}

.review-empty-state .script-label {
  margin-bottom: 15px;
  font-size: 34px !important;
}

.review-form {
  display: grid;
  gap: 20px;
  padding: clamp(25px, 5vw, 48px);
}

.review-form-heading {
  margin-bottom: 5px;
}

.review-form label,
.rating-field legend {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cec8bf;
  border-radius: 13px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: #82958e;
  outline: 3px solid rgba(130, 149, 142, 0.18);
}

.review-form textarea {
  resize: vertical;
}

.review-form label small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.rating-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.star-rating input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.star-rating label {
  display: block;
  color: #cbc5bb;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #b6914c;
}

.star-rating label:hover {
  transform: translateY(-2px);
}

.review-permission {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 12px !important;
  align-items: flex-start;
  font-weight: 400 !important;
}

.review-permission input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
  accent-color: #82958e;
}

.review-permission span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.review-submit {
  width: fit-content;
  min-width: 190px;
}

.review-privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .reviews-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .reviews-layout {
    gap: 20px;
  }

  .review-intro-card,
  .review-empty-state,
  .review-form {
    border-radius: 20px;
  }

  .review-intro-card,
  .review-form {
    padding: 24px 20px;
  }

  .review-empty-state {
    padding: 22px 20px;
  }

  .review-intro-card h3,
  .review-empty-state h3,
  .review-form-heading h3 {
    font-size: 32px;
  }

  .star-rating label {
    font-size: 35px;
  }

  .review-submit {
    width: 100%;
  }
}

/* CUSTOMER REVIEWS END */

/* CROSS-BROWSER HERO COLOR FIX START */

.hero-card {
  background: rgba(248, 245, 237, 0.62) !important;
  opacity: 1 !important;
  backdrop-filter: blur(3px) saturate(90%) !important;
  -webkit-backdrop-filter: blur(3px) saturate(90%) !important;
}

/* Firefox blends transparent warm colors more heavily with the photo. */
@supports (-moz-appearance: none) {
  .hero-card {
    background: rgba(251, 248, 241, 0.70) !important;
    backdrop-filter: blur(2px) !important;
  }
}

/* CROSS-BROWSER HERO COLOR FIX END */

/* PUBLISHED CUSTOMER REVIEWS START */

.customer-review-card {
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(216, 209, 199, 0.9);
  border-radius: 26px;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 18px 45px rgba(42, 44, 43, 0.09);
}

.customer-review-stars {
  margin-bottom: 12px;
  color: #b6914c;
  font-size: 25px;
  letter-spacing: 0.12em;
}

.customer-review-type {
  margin: 0 0 12px;
  color: #6e837b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.customer-review-card h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: "GFS Artemisia", Georgia, serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
}

.customer-review-card blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}

.customer-review-card blockquote p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.customer-review-name {
  margin: 22px 0 0 !important;
  color: var(--ink) !important;
  font-weight: 700;
}

@media (max-width: 620px) {
  .customer-review-card {
    padding: 25px 21px;
    border-radius: 20px;
  }

  .customer-review-card h3 {
    font-size: 34px;
  }

  .customer-review-card blockquote p {
    font-size: 15px;
  }
}

/* PUBLISHED CUSTOMER REVIEWS END */

/* AUTOMATIC REVIEW FEED START */

.approved-review-feed {
  display: grid;
  gap: 24px;
}

.approved-review-feed:empty {
  display: none;
}

.dynamic-review-card blockquote p {
  white-space: pre-line;
}

/* AUTOMATIC REVIEW FEED END */

@media (max-width: 900px) {
  .nav-links {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 9999;
    width: min(78vw, 340px);
    height: 100dvh;
    padding: 120px 28px 40px;
    background: #f4efe5;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
  }

  .nav-links a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid rgba(48, 54, 55, 0.12);
    font-size: 28px;
  }

  body.menu-open .nav-links {
    transform: translateX(0);
  }

  body > header,
  body > main,
  body > footer {
    transition: transform 0.28s ease;
  }

  body.menu-open > header,
  body.menu-open > main,
  body.menu-open > footer {
    transform: translateX(min(78vw, 340px));
  }
}
/* =========================================================
   CAKEDBYKIM MOBILE PUSH MENU — FINAL OVERRIDE
   ========================================================= */

@media (max-width: 950px) {
  :root {
    --cbk-mobile-menu-width: min(78vw, 340px);
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  /*
   * Mobile navigation drawer
   */
  .site-nav {
    position: fixed !important;
    top: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;

    display: flex !important;
    width: var(--cbk-mobile-menu-width) !important;
    height: 100dvh !important;

    margin: 0 !important;
    padding:
      calc(env(safe-area-inset-top, 0px) + 105px)
      28px
      calc(env(safe-area-inset-bottom, 0px) + 40px) !important;

    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;

    overflow-y: auto !important;

    background: #f4efe5 !important;
    border-right: 1px solid rgba(48, 54, 55, 0.12);
    box-shadow: 18px 0 48px rgba(35, 39, 39, 0.16);

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform: translateX(-105%) !important;
    transition: transform 0.28s ease !important;
  }

  /*
   * Open state
   */
  .site-nav.open,
  body.menu-open .site-nav {
    transform: translateX(0) !important;
  }

  /*
   * Menu links
   */
  .site-nav a {
    display: block !important;
    width: 100% !important;

    margin: 0 !important;
    padding: 18px 0 !important;

    border-bottom: 1px solid rgba(48, 54, 55, 0.12);

    color: #303637 !important;
    font-size: clamp(24px, 7vw, 30px) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    text-align: left !important;
    text-decoration: none !important;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: #6e837b !important;
  }

  /*
   * Keep hamburger above the drawer
   */
  .menu-toggle {
    position: relative !important;
    z-index: 10001 !important;
  }

  /*
   * Smooth page movement
   */
  .site-header,
  body > main,
  body > footer {
    transition: transform 0.28s ease !important;
    will-change: transform;
  }

  /*
   * Push the entire visible website to the right
   */
  body.menu-open .site-header,
  body.menu-open > main,
  body.menu-open > footer {
    transform: translateX(
      var(--cbk-mobile-menu-width)
    ) !important;
  }

  /*
   * Prevent older navigation styles from expanding over the page
   */
  body:not(.menu-open) .site-nav {
    transform: translateX(-105%) !important;
  }
}

/* =========================================================
   END CAKEDBYKIM MOBILE PUSH MENU
   ========================================================= */

/* =========================================================
   CAKEDBYKIM CLEAN MOBILE MENU
   ========================================================= */

.mobile-menu-overlay {
  display: none !important;
}

@media (max-width: 950px) {
  body.menu-open {
    overflow: hidden !important;
  }

  .menu-toggle {
    position: relative !important;
    z-index: 1002 !important;
    display: block !important;
    width: 46px !important;
    height: 46px !important;
    padding: 7px !important;
    background: transparent !important;
    border: 0 !important;
    cursor: pointer !important;
  }

  .menu-toggle span {
    display: block !important;
    width: 25px !important;
    height: 2px !important;
    margin: 5px auto !important;
    background: var(--ink) !important;
    transform-origin: center !important;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease !important;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0 !important;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  .site-nav {
    position: fixed !important;
    top: 82px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1000 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;

    width: 100% !important;
    height: calc(100dvh - 82px) !important;
    margin: 0 !important;
    padding: 24px 24px 50px !important;

    overflow-y: auto !important;

    background: #fffdfa !important;
    box-shadow: none !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform: translateX(100%) !important;
    transition:
      transform 0.28s ease,
      opacity 0.2s ease,
      visibility 0.2s ease !important;
  }

  .site-nav.open,
  body.menu-open .site-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
  }

  .site-nav a {
    display: block !important;
    width: 100% !important;
    padding: 18px 4px !important;

    border-bottom: 1px solid rgba(48, 54, 55, 0.14) !important;
    border-radius: 0 !important;
    background: transparent !important;

    color: var(--ink) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    text-decoration: none !important;
  }

  .site-nav .nav-cta {
    margin-top: 18px !important;
    padding: 15px 20px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--sage) !important;
    text-align: center !important;
  }
}

/* =========================================================
   END CAKEDBYKIM CLEAN MOBILE MENU
   ========================================================= */

/* =========================================================
   MOBILE MENU VIEWPORT POSITION FIX
   ========================================================= */

@media (max-width: 950px) {
  html {
    overflow-x: hidden !important;
  }

  body {
    position: relative !important;
    width: 100% !important;
    overflow-x: hidden !important;
    transform: none !important;
  }

  body.menu-open {
    overflow: hidden !important;
    transform: none !important;
  }

  /*
   * Backdrop filters can cause fixed descendants to position
   * relative to the header instead of the phone viewport.
   */
  .site-header {
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /*
   * Cancel every previous drawer rule that shifted the page.
   */
  .site-header .brand,
  .site-header .menu-toggle,
  body > main,
  body > footer,
  body.menu-open .site-header,
  body.menu-open .site-header .brand,
  body.menu-open .site-header .menu-toggle,
  body.menu-open > main,
  body.menu-open > footer {
    transform: none !important;
  }

  .site-nav {
    position: fixed !important;
    top: 82px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    z-index: 9999 !important;

    display: flex !important;
    width: 100vw !important;
    max-width: none !important;
    height: calc(100dvh - 82px) !important;

    margin: 0 !important;
    padding: 25px 25px 60px !important;

    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;

    background: #fffdfa !important;
    box-shadow: none !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform: translate3d(100vw, 0, 0) !important;
    transition:
      transform 0.28s ease,
      opacity 0.2s ease,
      visibility 0.2s ease !important;
  }

  .site-nav.open,
  body.menu-open .site-nav {
    right: 0 !important;
    left: 0 !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform: translate3d(0, 0, 0) !important;
  }

  .site-nav a {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 18px 4px !important;

    border-bottom: 1px solid rgba(48, 54, 55, 0.14) !important;
    border-radius: 0 !important;
    background: transparent !important;

    color: #303637 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  .site-nav .nav-cta {
    margin-top: 18px !important;
    padding: 15px 20px !important;
    border-bottom: 0 !important;
    border-radius: 999px !important;
    background: var(--sage) !important;
    text-align: center !important;
  }

  .mobile-menu-overlay {
    display: none !important;
  }
}

/* =========================================================
   END MOBILE MENU VIEWPORT POSITION FIX
   ========================================================= */
