:root {
  --bg: #fff8f7;
  --bg-strong: #ffe7ec;
  --text: #332221;
  --muted: #7c6260;
  --pink: #ff5f8f;
  --pink-dark: #de3b70;
  --cream: #fff2df;
  --choco: #6a382d;
  --white: #ffffff;
  --stroke: rgba(106, 56, 45, 0.14);
  --shadow: 0 24px 70px rgba(106, 56, 45, 0.13);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 95, 143, 0.20), transparent 26rem),
    radial-gradient(circle at 90% 0%, rgba(255, 216, 139, 0.26), transparent 26rem),
    var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select {
  font: inherit;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.34;
  pointer-events: none;
}

.page-glow-one {
  top: 15%;
  left: -8rem;
  background: #ff8db3;
}

.page-glow-two {
  right: -10rem;
  bottom: 10%;
  background: #ffd67e;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: rgba(255, 248, 247, 0.78);
  box-shadow: 0 14px 38px rgba(106, 56, 45, 0.10);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 158px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(106, 56, 45, 0.10));
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--pink-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 850;
  background: var(--text);
}

.burger {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 22px;
}

.compact-pad {
  padding-top: 38px;
  padding-bottom: 38px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 50px;
  min-height: calc(100vh - 90px);
  padding-top: 66px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--pink-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(255, 95, 143, 0.13);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.86;
  letter-spacing: -0.085em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 1.14rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  box-shadow: 0 18px 34px rgba(255, 95, 143, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 22px 42px rgba(255, 95, 143, 0.34);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--stroke);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 36px;
}

.trust-row div {
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  margin-bottom: 4px;
  font-size: 1.36rem;
  letter-spacing: -0.04em;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.cake-stage {
  position: absolute;
  inset: 24px 0 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 46px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 226, 236, 0.72)),
    radial-gradient(circle at 50% 32%, rgba(255, 95, 143, 0.25), transparent 18rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cake-stage::before,
.cake-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 95, 143, 0.14);
}

.cake-stage::before {
  width: 180px;
  height: 180px;
  left: -50px;
  top: 52px;
}

.cake-stage::after {
  width: 240px;
  height: 240px;
  right: -70px;
  bottom: -70px;
  background: rgba(255, 204, 116, 0.22);
}

.cake-stage img {
  position: relative;
  z-index: 2;
  width: min(84%, 460px);
  filter: drop-shadow(0 28px 40px rgba(106, 56, 45, 0.22));
}

.floating-card {
  position: absolute;
  z-index: 4;
  max-width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(106, 56, 45, 0.14);
  backdrop-filter: blur(14px);
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.floating-card strong {
  letter-spacing: -0.03em;
}

.card-top {
  top: 0;
  right: 28px;
}

.card-bottom {
  left: 20px;
  bottom: 32px;
}

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

.feature-card,
.menu-card,
.steps article,
.contact-card,
.order-card,
.split-block {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 48px rgba(106, 56, 45, 0.08);
  backdrop-filter: blur(12px);
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 18px;
  font-size: 1.45rem;
  background: var(--cream);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 660px;
}

.section-heading p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.menu-card.highlight {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 229, 237, 0.76));
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--cream);
}

.menu-card-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--pink-dark);
  background: rgba(255, 95, 143, 0.12);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.price-row span {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 950;
}

.price-row a {
  color: var(--pink-dark);
  font-weight: 900;
}

.occasion-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.occasion-marquee span {
  display: inline-flex;
  padding: 12px 18px;
  border: 1px solid rgba(255, 95, 143, 0.24);
  border-radius: 999px;
  color: var(--pink-dark);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 900;
}

.split-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 34px;
  padding: 26px;
  border-radius: var(--radius-xl);
}

.split-image {
  display: grid;
  min-height: 380px;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffe9ef, #fff6e4);
  overflow: hidden;
}

.split-image img {
  width: min(85%, 390px);
  filter: drop-shadow(0 24px 32px rgba(106, 56, 45, 0.19));
}

.split-content {
  padding: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 850;
}

.check-list li::before {
  content: "✓";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink);
}

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

.steps article {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.steps span {
  display: inline-flex;
  margin-bottom: 32px;
  color: rgba(255, 95, 143, 0.36);
  font-size: 3.8rem;
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.order-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 34px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 231, 236, 0.72)),
    var(--white);
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 850;
}

.order-form input,
.order-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  color: var(--text);
  outline: none;
  background: rgba(255, 255, 255, 0.86);
}

.order-form input:focus,
.order-form select:focus {
  border-color: rgba(255, 95, 143, 0.56);
  box-shadow: 0 0 0 4px rgba(255, 95, 143, 0.11);
}

.order-form button {
  grid-column: 1 / -1;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-card p {
  margin-bottom: 8px;
}

.contact-card a:not(.btn) {
  color: var(--pink-dark);
  font-weight: 900;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 22px 46px;
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.footer-brand img {
  width: 136px;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(106, 56, 45, 0.10));
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--text);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    margin: 12px 14px 0;
  }

  .burger {
    display: block;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .nav.is-open {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--stroke);
    border-radius: 24px;
    background: rgba(255, 248, 247, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.is-open a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .nav.is-open a:hover {
    background: rgba(255, 95, 143, 0.09);
  }

  .hero,
  .order-card,
  .split-block {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero-visual {
    min-height: 520px;
  }

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

@media (max-width: 680px) {
  .section-pad {
    padding: 64px 16px;
  }

  .compact-pad {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-actions,
  .contact-actions,
  .contact-card {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-row,
  .features,
  .menu-grid,
  .steps,
  .order-form {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .floating-card {
    max-width: 180px;
    padding: 14px;
  }

  .card-top {
    right: 12px;
  }

  .card-bottom {
    bottom: 12px;
    left: 10px;
  }

  .cake-stage {
    border-radius: 34px;
  }

  .menu-card img {
    height: 190px;
  }

  .split-block,
  .order-card,
  .contact-card {
    padding: 20px;
    border-radius: 28px;
  }

  .split-image {
    min-height: 300px;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-brand img {
    width: 126px;
  }
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.city-pill {
  display: inline-grid;
  gap: 1px;
  min-height: 42px;
  padding: 6px 15px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.city-pill span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
}

.city-pill strong {
  font-size: 0.9rem;
  line-height: 1.05;
}

.city-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.city-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.city-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(51, 34, 33, 0.44);
  backdrop-filter: blur(10px);
}

.city-modal-card {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 247, 0.96);
  box-shadow: var(--shadow);
}

.city-modal-logo {
  width: 168px;
  height: auto;
  margin-bottom: 16px;
}

.city-modal-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 8vw, 3.4rem);
}

.city-modal-text {
  margin-bottom: 20px;
}

.city-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.6rem;
  line-height: 1;
}

.city-options {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.city-option {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.city-option:hover,
.city-option.is-active {
  border-color: rgba(255, 95, 143, 0.46);
  box-shadow: 0 14px 34px rgba(255, 95, 143, 0.12);
  transform: translateY(-1px);
}

.city-option strong {
  font-size: 1.16rem;
}

.city-option span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.detect-btn {
  width: 100%;
  min-height: 50px;
  border: 1px dashed rgba(255, 95, 143, 0.42);
  border-radius: 18px;
  color: var(--pink-dark);
  cursor: pointer;
  background: rgba(255, 95, 143, 0.08);
  font-weight: 900;
}

@media (max-width: 980px) {
  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 680px) {
  .brand-logo {
    width: 118px;
  }

  .city-pill {
    min-height: 38px;
    padding: 5px 12px;
  }

  .city-modal-card {
    padding: 24px 18px 18px;
    border-radius: 28px;
  }
}

@media (max-width: 980px) {
  .brand { order: 1; }
  .header-actions { order: 2; }
  .burger { order: 3; }
}
