@font-face {
  font-family: "Canva Sans";
  src: url("../fonts/cff149ee1e9d2be50ac77bcd86769d05.woff2") format("woff2"),
       url("../fonts/f93a5165fac252ecfd593929c4e6146f.woff") format("woff");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #e1262c;
  --yellow: #ffd51a;
  --cream: #f6f6e9;
  --white: #ffffff;
  --ink: #111111;
  --brown: #71351c;
  --peach: #cd8755;
  --green: #4ab74a;
  --pink: #f6a8ad;
  --grey-script: #8b8b8b;
  --nav-height: 48px;
  --font-body: "Canva Sans", Arial, sans-serif;
  --font-script: "Brush Script MT", "Segoe Script", cursive;
  --site-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--nav-height);
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  background-color: #f7a40f;
  background-image: url("../images/decorations/navbar-bg.jpeg");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.18);
  border-bottom: 3px solid var(--red);
  overflow: visible;
}

.site-nav {
  width: min(100%, 1440px);
  height: var(--nav-height);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 30px 0 138px;
}

.nav-logo {
  position: absolute;
  left: 34px;
  top: 50%;
  width: 110px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
  z-index: 2;
}

.nav-menu {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 0 18px;
  color: var(--brown);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--red);
  background: rgba(255, 255, 255, 0.35);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
  padding: 8px;
  color: var(--ink);
  font-size: 0;
}

.nav-toggle::before {
  content: "";
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

.hero-section {
  position: relative;
  min-height: 768px;
  overflow: hidden;
  background: url("../images/hero/hero-sweets.jpg") center center / cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12));
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  min-height: 768px;
  margin: 0 auto;
}

.hero-mascot {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 340px;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-ring {
  position: absolute;
  top: 46px;
  left: 50%;
  z-index: 1;
  width: 280px;
  height: 300px;
  object-fit: contain;
  opacity: 0.9;
  transform: translateX(-50%) rotate(-10deg);
  animation: ring-spin 30s linear infinite;
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  top: 385px;
  left: 50%;
  width: 238px;
  transform: translateX(-50%);
  z-index: 3;
  border-radius: 0;
}

.hero-copy {
  position: absolute;
  left: 50%;
  bottom: 96px;
  z-index: 3;
  width: min(430px, 90%);
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-copy p,
.hero-copy h1 {
  margin: 0;
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero-copy p {
  font-size: clamp(36px, 3.2vw, 47px);
}

.hero-copy h1 {
  margin-top: 4px;
  font-size: clamp(54px, 4.6vw, 65px);
}

.primary-button,
.secondary-button,
.red-button,
.review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 42px;
  border-radius: 999px;
  font-family: var(--font-script);
  font-size: 19px;
  line-height: 1;
}

.primary-button {
  margin-top: 14px;
  background: var(--white);
  color: var(--red);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.special-section {
  position: relative;
  min-height: 570px;
  padding: 52px 40px 42px;
  background: var(--white);
  text-align: center;
}

.section-ornament {
  width: 156px;
  margin: 0 auto 6px;
  opacity: 0.55;
}

.script-title {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(42px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--pink);
}

.script-title strong {
  color: var(--grey-script);
  font-weight: 400;
}

.script-title.light,
.cuisine-section .script-title {
  color: var(--white);
}

.special-section .script-title {
  color: var(--red);
}

.feature-grid {
  width: min(1040px, 100%);
  margin: 86px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}

.feature-card {
  position: relative;
  min-height: 270px;
  padding: 184px 18px 0;
  text-align: center;
}

.feature-card::before {
  content: none;
}

.feature-ornament {
  position: absolute;
  left: 50%;
  top: -58px;
  z-index: 0;
  width: 242px;
  height: 258px;
  object-fit: contain;
  opacity: 1;
  transform: translateX(-50%) rotate(-12deg);
  animation: ring-spin 32s linear infinite;
  pointer-events: none;
}

.circle-frame {
  display: none;
}

.feature-image {
  position: absolute;
  left: 50%;
  top: 6px;
  z-index: 2;
  width: 144px;
  height: 144px;
  object-fit: contain;
  margin: 0;
  transform: translateX(-50%);
}

.feature-card:nth-child(2) .feature-image {
  width: 178px;
  height: 142px;
  top: 5px;
}

.feature-card:nth-child(3) .feature-image {
  width: 160px;
  height: 136px;
  top: 8px;
}

.feature-card:nth-child(4) .feature-image {
  width: 142px;
  height: 142px;
  top: 3px;
}

.feature-card h3 {
  position: relative;
  z-index: 2;
  min-height: 0;
  margin: 0 auto 4px;
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card p {
  position: relative;
  z-index: 2;
  width: min(170px, 100%);
  margin: 0 auto;
  color: var(--peach);
  font-size: 14px;
  line-height: 1.08;
}

@keyframes ring-spin {
  from {
    transform: translateX(-50%) rotate(var(--ring-start, -12deg));
  }
  to {
    transform: translateX(-50%) rotate(calc(var(--ring-start, -12deg) + 360deg));
  }
}

.vegetarian-section {
  position: relative;
  min-height: 360px;
  padding: 58px 40px;
  display: grid;
  grid-template-columns: 430px minmax(320px, 580px);
  justify-content: center;
  align-items: center;
  gap: 70px;
  background: var(--white);
}

.vegetarian-section::before,
.vegetarian-section::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(546px, 80%);
  height: 10px;
  background: radial-gradient(circle, var(--peach) 3px, transparent 3px) left center / 12px 100% no-repeat,
              radial-gradient(circle, var(--peach) 3px, transparent 3px) right center / 12px 100% no-repeat,
              linear-gradient(to right, transparent, var(--peach) 15%, var(--peach) 85%, transparent) center / 100% 2px no-repeat;
  transform: translateX(-50%);
}

.vegetarian-section::before {
  top: 20px;
}

.vegetarian-section::after {
  bottom: 20px;
}

.vegetarian-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vegetarian-heading {
  margin: 14px 0 0;
  color: var(--green);
  font-family: var(--font-script);
  font-size: clamp(38px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 0.95;
  text-align: center;
}

.stat-art {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  min-height: 170px;
}

.stat-art span {
  display: block;
  color: var(--white);
  font-size: 170px;
  line-height: 0.82;
  font-weight: 700;
  -webkit-text-stroke: 5px var(--green);
  text-shadow: none;
}

.zero-bowl {
  flex: 0 0 auto;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  margin-bottom: 18px;
}

.vegetarian-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-script);
  font-size: 40px;
  font-weight: 400;
}

.vegetarian-copy p {
  margin: 0;
  font-size: 19px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-section {
  position: relative;
  min-height: 760px;
  padding: 105px 90px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, 680px) minmax(360px, 520px);
  gap: 48px;
  align-items: center;
  background: var(--yellow);
}

.about-copy {
  max-width: 690px;
}

.about-kicker,
.about-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-script);
  font-size: clamp(50px, 4.2vw, 60px);
  line-height: 0.95;
  font-weight: 400;
}

.about-copy h2 {
  margin-bottom: 36px;
}

.about-copy p:not(.about-kicker) {
  margin: 0 0 18px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.secondary-button {
  margin-top: 26px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  padding: 12px 36px;
  min-width: 150px;
  min-height: 42px;
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.12);
  color: var(--red);
}

.shop-illustration {
  justify-self: center;
  width: min(100%, 500px);
}

/* About Page Milestone Section */
.milestone-section {
  position: relative;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 90px 40px 0;
  overflow: hidden;
}

.milestone-content {
  max-width: 860px;
  margin: 0 auto 58px;
}

.milestone-content h2.script-title {
  font-size: clamp(48px, 4.5vw, 60px);
  color: var(--white);
  margin-bottom: 24px;
}

.milestone-content p {
  font-size: 19px;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.02em;
}

.milestone-banner {
  position: relative;
  min-height: 380px;
  background: url("../images/hero/footer-feast.jpg") center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  margin: 0 -40px; /* pull banner to the edges */
}

.milestone-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.milestone-logo {
  position: relative;
  z-index: 2;
  width: min(240px, 60vw);
  height: auto;
  margin-bottom: 24px;
}

.milestone-banner-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-script);
  font-size: clamp(32px, 3.8vw, 48px);
  color: var(--white);
  text-shadow: 0 3px 12px rgba(17, 17, 17, 0.65);
  margin: 0 auto;
  max-width: 960px;
  line-height: 1.05;
}

/* About Page Story Section */
.story-section {
  background: var(--white);
  padding: 90px 40px;
  text-align: center;
  color: var(--ink);
}

.story-section h2.script-title.red-title {
  font-size: clamp(48px, 4.5vw, 60px);
  color: var(--red);
  margin-bottom: 40px;
}

.story-copy {
  max-width: 960px;
  margin: 0 auto;
}

.story-copy p {
  font-size: 17px;
  line-height: 1.45;
  margin: 0 auto 28px;
  color: #333333;
}

.story-image-container {
  max-width: 960px;
  margin: 44px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(17, 17, 17, 0.12);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.story-image {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}

.cuisine-section {
  position: relative;
  min-height: 930px;
  padding: 100px 50px 95px;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.cuisine-intro {
  width: min(960px, 92%);
  margin: 0 auto 86px;
}

.cuisine-intro p {
  margin: 18px auto 0;
  max-width: 950px;
  font-size: 14px;
  line-height: 1.2;
}

.cuisine-grid {
  width: min(1090px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 22px;
}

.cuisine-item {
  position: relative;
  min-height: 310px;
  padding-top: 265px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mandala {
  position: absolute;
  z-index: 0;
  width: 235px;
  height: 250px;
  object-fit: contain;
  opacity: 0.95;
  transform-origin: center;
  animation: ornament-spin 24s linear infinite;
}

.mandala-left {
  top: 38px;
  left: 50%;
  --ornament-start: -10deg;
  transform: translateX(-50%) rotate(var(--ornament-start));
}

.mandala-right {
  top: 38px;
  right: auto;
  left: 50%;
  --ornament-start: 12deg;
  transform: translateX(-50%) rotate(var(--ornament-start));
}

.rotate-soft {
  --ornament-start: 20deg;
}

.rotate-hard {
  --ornament-start: -24deg;
}

@keyframes ornament-spin {
  from {
    transform: translateX(-50%) rotate(var(--ornament-start, 0deg));
  }
  to {
    transform: translateX(-50%) rotate(calc(var(--ornament-start, 0deg) + 360deg));
  }
}

.food-image {
  position: absolute;
  left: 50%;
  top: 74px;
  z-index: 2;
  width: 178px;
  height: 178px;
  object-fit: contain;
  margin: 0;
  transform: translateX(-50%);
}

.cuisine-item:first-child .food-image {
  width: 254px;
  height: 170px;
  top: 78px;
}

.cuisine-item:nth-child(2) .food-image {
  width: 210px;
  height: 142px;
  top: 92px;
}

.cuisine-item.tall .food-image {
  width: 156px;
  height: 234px;
  top: 46px;
}

.cuisine-item h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-script);
  font-size: 24px;
  font-weight: 400;
}

.red-button {
  margin-top: 54px;
  background: var(--white);
  color: var(--red);
}

.celebrate-section {
  position: relative;
  min-height: 560px;
  background: url("../images/hero/fireworks.jpg") center center / cover no-repeat;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
}

.celebrate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.06);
}

.celebrate-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  transform: translateY(8px);
}

.celebrate-overlay img {
  width: 214px;
  margin: 0 auto 12px;
}

.celebrate-overlay h2 {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(48px, 4vw, 60px);
  line-height: 0.95;
  font-weight: 400;
}

.home-celebrate-section {
  min-height: clamp(430px, 42vw, 610px);
  background-position: center 58%;
}

.celebrate-badge {
  width: min(520px, 92vw);
  min-height: 0;
  aspect-ratio: 700 / 746;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.8vw, 24px);
  padding: 18% 19% 16%;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 3px 10px rgba(17, 17, 17, 0.22);
}

.celebrate-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100% !important;
  max-width: none;
  aspect-ratio: 700 / 746;
  height: auto;
  object-fit: contain;
  margin: 0 !important;
  opacity: 0.95;
  transform: translate(-50%, -50%);
  animation: ring-spin-centered 36s linear infinite;
  pointer-events: none;
}

.celebrate-logo {
  position: relative;
  z-index: 1;
  width: clamp(180px, 45vw, 235px) !important;
  max-width: none;
  flex: 0 0 auto;
  aspect-ratio: 727 / 250;
  height: auto;
  margin: 0 !important;
  border-radius: 0;
}

.celebrate-badge h2 {
  position: relative;
  z-index: 1;
  width: clamp(186px, 42vw, 250px);
  font-size: clamp(40px, 5.2vw, 64px);
}

@keyframes ring-spin-centered {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.menu-preview {
  position: relative;
  padding: 56px 40px 68px;
  background: var(--white);
  text-align: center;
}

.menu-preview-intro {
  width: min(560px, 90%);
  margin: 8px auto 0;
  color: var(--peach);
  font-size: 15px;
  line-height: 1.4;
}

.menu-preview-grid {
  width: min(1080px, 100%);
  margin: 44px auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.menu-preview-loading {
  grid-column: 1 / -1;
  margin: 20px 0;
  color: var(--peach);
  font-size: 16px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.menu-card-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 14px;
}

.menu-card h3 {
  margin: 0 0 6px;
  color: var(--brown);
  font-family: var(--font-script);
  font-size: 26px;
  font-weight: 400;
}

.menu-card p {
  width: 180px;
  margin: 0;
  color: var(--peach);
  font-size: 13px;
  line-height: 1.3;
}

.menu-preview .red-button {
  margin-top: 8px;
  min-width: 200px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.reviews-section {
  min-height: 560px;
  padding: 88px 50px 80px;
  text-align: center;
  background: var(--white);
}

.section-ornament.small {
  width: 95px;
}

.reviews-section .script-title {
  color: var(--red);
}

.review-grid {
  width: min(1040px, 100%);
  margin: 58px auto 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  text-align: left;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.06);
}

.stars {
  color: var(--green);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.big-stars {
  font-size: 32px;
  margin-bottom: 6px;
}

.review-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #444444;
}

.review-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--ink);
  font-weight: 700;
}

.review-card .stars {
  margin-bottom: 0;
  margin-top: auto;
}

.review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 44px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(74, 183, 74, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.review-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 183, 74, 0.36);
  background: #3fa13f;
}

.site-footer {
  background: var(--red);
  color: var(--white);
}

.footer-banner {
  min-height: clamp(150px, 14vw, 210px);
  background: url("../images/hero/footer-feast.jpg") center 50% / cover no-repeat;
}

.footer-main {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 54px 52px 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.footer-main h2 {
  margin: 0 0 10px;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.05;
}

.footer-main p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin: 14px 0 20px;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--white);
  border-radius: 4px;
  color: var(--white);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
  background-color: var(--white);
  color: var(--red);
  transform: scale(1.1);
}

.footer-script {
  font-family: var(--font-script);
  font-size: 42px !important;
  line-height: 0.92 !important;
}

.footer-info {
  padding-left: 70px;
}

.footer-main:has(.footer-branches) {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr);
  gap: 60px;
}

.footer-branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.footer-branches .footer-info {
  padding-left: 0;
}

.footer-branch-name {
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  font-size: 22px;
  line-height: 1.1;
}

.footer-info h2:not(:first-child) {
  margin-top: 20px;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 14px 52px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom img {
  display: inline-block;
  width: 54px;
  vertical-align: middle;
}

.floating-order-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-script);
  font-size: 23px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.26);
  border: 2px solid rgba(255, 255, 255, 0.84);
}

.floating-order-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.floating-order-button:hover {
  transform: translateY(-2px);
}

.page-hero {
  min-height: 430px;
  padding: 120px 40px 90px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("../images/hero/hero-sweets.jpg") center / cover;
}

.compact-hero,
.compact-hero .hero-stage {
  min-height: 720px;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 400;
}

.page-hero p {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 20px;
}

.gallery-section,
.contact-section,
.order-section {
  padding: 100px 50px;
  background: var(--white);
}

.gallery-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

.contact-card,
.order-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 46px;
  border-radius: 28px;
  background: var(--cream);
  text-align: center;
}

.why-order-section {
  background: #f4f4f4;
  padding: 82px 40px 92px;
}

.why-order-content {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #111111;
}

.why-order-content h2,
.why-order-kicker {
  margin: 0;
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 0.95;
}

.why-order-content h2 {
  color: #282828;
  font-size: clamp(48px, 5vw, 76px);
}

.why-order-kicker {
  margin-top: 28px;
  color: var(--red);
  font-size: clamp(42px, 4.5vw, 62px);
}

.why-order-content p:not(.why-order-kicker) {
  margin: 28px 0 0;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.05;
}

.why-order-content a {
  color: inherit;
}

.contact-canvas {
  min-height: 560px;
  display: grid;
  place-items: center;
  background: var(--white);
}

.contact-canvas .contact-card {
  background: var(--white);
  box-shadow: none;
}

.contact-canvas .script-title {
  margin-bottom: 32px;
  color: var(--red);
}

/* Contact Page Redesign */
.contact-page-section {
  position: relative;
  background: #1d7151; /* Brand green background */
  color: var(--white);
  padding: 56px 50px 62px;
  min-height: min(660px, calc(100vh - var(--nav-height)));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(390px, 500px) minmax(420px, 680px);
  gap: clamp(38px, 6vw, 86px);
  width: min(100%, 1180px);
  margin: 0 auto;
  align-items: center;
}

.contact-page-info {
  text-align: left;
}

.contact-page-info h1.script-title.gold-title {
  color: var(--yellow);
  font-size: clamp(58px, 5.8vw, 86px);
  margin: 0 0 30px 0;
  line-height: 0.95;
  font-weight: 400;
}

.contact-info-block {
  margin-bottom: 24px;
}

.contact-info-block h2,
.contact-info-block h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  text-transform: none;
  margin: 0 0 12px 0;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  stroke: var(--yellow);
  flex-shrink: 0;
}

.contact-info-block p,
.contact-info-block a {
  font-size: 18px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-info-block a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

.contact-page-grid:has(.contact-branches) {
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
}

.contact-branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-branch {
  padding: 22px 22px 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.12);
}

.contact-branch-name {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 26px;
  line-height: 1.1;
}

.contact-branch .contact-info-block h3 {
  font-size: 18px;
}

.contact-branch .contact-info-block p,
.contact-branch .contact-info-block a {
  font-size: 16px;
}

.contact-branch .hours-row {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  font-size: 15px;
}

.contact-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 410px;
  margin-bottom: 8px;
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(135px, 1fr) minmax(170px, 1.25fr);
  gap: 24px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
  padding: 7px 0;
}

.hours-row .day {
  font-weight: 500;
}

.hours-row .time {
  text-align: right;
  opacity: 0.95;
}

.hours-note {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin-top: 8px !important;
  font-style: italic;
}

.contact-page-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

.contact-page-image img {
  width: 100%;
  max-width: 650px;
  height: auto;
}

.contact-card h2,
.order-card h2 {
  margin: 0 0 22px;
  color: var(--red);
  font-family: var(--font-script);
  font-size: 48px;
  font-weight: 400;
}

.contact-card p,
.order-card p {
  margin: 0 0 10px;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .feature-grid,
  .cuisine-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vegetarian-section,
  .about-section,
  .contact-page-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-info {
    padding-left: 0;
  }

  .footer-main:has(.footer-branches),
  .contact-page-grid:has(.contact-branches) {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding-inline: 50px;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 64px;
  }

  .footer-branches,
  .contact-branches {
    grid-template-columns: 1fr;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    height: var(--nav-height);
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: nowrap;
    height: var(--nav-height);
    padding: 0 16px;
  }

  .nav-logo {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 96px;
    transform: translateY(-50%);
    z-index: 2;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 10px;
    border-radius: 14px;
    background: rgba(17, 17, 17, 0.06);
    cursor: pointer;
  }

  .nav-toggle::before {
    content: "";
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    margin: 3px 0;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 8px 0 14px;
    align-items: stretch;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 18px 28px rgba(17, 17, 17, 0.18);
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    justify-content: flex-start;
    min-height: 52px;
    padding: 0 20px;
    white-space: nowrap;
    font-size: 15px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .nav-menu li:first-child a {
    border-top: 0;
  }

  .hero-section,
  .hero-stage {
    min-height: 660px;
  }

  .hero-mascot {
    width: 250px;
    top: 28px;
  }

  .hero-ring {
    width: 215px;
    height: 230px;
    top: 50px;
  }

  .hero-logo {
    top: 300px;
    width: 205px;
  }

  .feature-grid,
  .cuisine-grid,
  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    width: min(360px, 100%);
    margin-top: 56px;
    gap: 58px;
  }

  .feature-card {
    min-height: 330px;
    padding-top: 235px;
  }

  .feature-ornament {
    top: 0;
    width: 230px;
    height: 230px;
  }

  .feature-image {
    width: 126px;
    height: 126px;
    top: 54px;
  }

  .feature-card:nth-child(2) .feature-image {
    width: 152px;
    height: 122px;
    top: 58px;
  }

  .feature-card:nth-child(3) .feature-image,
  .feature-card:nth-child(4) .feature-image {
    width: 138px;
    height: 138px;
    top: 50px;
  }

  .feature-card h3 {
    min-height: 0;
    font-size: 26px;
  }

  .feature-card p {
    width: 210px;
    font-size: 18px;
    line-height: 1.18;
  }

  .special-section,
  .cuisine-section,
  .reviews-section,
  .gallery-section,
  .contact-section,
  .order-section {
    padding-inline: 24px;
  }

  .script-title {
    max-width: 330px;
    margin-inline: auto;
    font-size: 36px;
    line-height: 1.08;
  }

  .vegetarian-section {
    grid-template-columns: 1fr;
    padding-inline: 24px;
    gap: 26px;
  }

  .stat-art {
    width: min(100%, 320px);
    min-height: 128px;
    margin: 0 auto;
    gap: 8px;
  }

  .stat-art span {
    font-size: 112px;
    line-height: 0.84;
    -webkit-text-stroke: 4px var(--green);
  }

  .zero-bowl {
    width: 76px;
    height: 76px;
    margin-bottom: 12px;
  }

  .about-section {
    padding: 80px 24px;
  }

  .footer-main,
  .footer-bottom {
    padding-inline: 24px;
  }

  .floating-order-button {
    right: 14px;
    bottom: 14px;
    width: 54px;
    min-width: 0;
    min-height: 54px;
    padding: 0;
    font-size: 0;
  }

  .floating-order-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .floating-order-icon {
    width: 25px;
    height: 25px;
  }

  .why-order-section {
    padding: 58px 24px 68px;
  }

  .why-order-content p:not(.why-order-kicker) {
    font-size: 22px;
    line-height: 1.1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .milestone-section,
  .story-section {
    padding-inline: 24px;
  }

  .milestone-content p {
    font-size: 16px;
  }

  .story-copy p {
    font-size: 14px;
  }

  .story-image-container {
    margin: 24px auto;
  }

  .contact-page-section {
    padding: 80px 24px;
  }

  .contact-page-grid {
    gap: 40px;
  }

  .contact-page-info h1.script-title.gold-title {
    margin-bottom: 28px;
    text-align: center;
  }

  .contact-page-image img {
    max-width: 100%;
  }

  .contact-info-block {
    margin-bottom: 28px;
  }
}
