/* ── RESET & ROOT ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0d0d0d;
  --ink-2: #2a2a2a;
  --ink-3: #555;
  --ink-4: #888;
  --surface: #fafafa;
  --surface-2: #f3f3f0;
  --surface-3: #e8e8e4;
  --white: #ffffff;
  --pink: #e8266e;
  --pink-light: #fdedf4;
  --pink-dark: #b8164f;
  --blue: #0a4fd4;
  --blue-light: #eef3fd;
  --blue-dark: #073ba0;
  --gold: #c8960c;
  --gold-light: #fdf6e3;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
p {
  color: var(--ink-3);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 90px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.nav-logo span {
  color: var(--pink);
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink-3);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
}
.nav-links a:hover {
  color: var(--ink);
  background: var(--surface-2);
}
.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  transition:
    background var(--transition),
    transform var(--transition) !important;
  box-shadow: 0 2px 8px rgba(232, 38, 110, 0.3) !important;
}
.nav-cta:hover {
  background: var(--pink-dark) !important;
  transform: translateY(-1px) !important;
}
.nav-active {
  color: var(--pink) !important;
  font-weight: 600 !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(6rem + 68px) 2.5rem 5rem;
  position: relative;
  overflow: hidden;
  background: url("pictures/donutsello_outside_look1.jpg") center top / cover
    no-repeat;
}

.hero-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(255, 255, 255);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.6rem;
  border: 1px solid rgba(232, 38, 110, 0.18);
}
.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.08;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.55),
    0 1px 3px rgba(0, 0, 0, 0.4);
}
.hero-title em {
  color: var(--pink);
  font-style: italic;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero-subtitle {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-2);
  margin-top: 1rem;
  margin-bottom: 2.2rem;
  max-width: 400px;
  background: rgba(255, 255, 255);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-subtitle b {
  color: var(--pink);
  font-style: normal;
}
.hero-actions {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  padding: 0.85rem 1.9rem;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(232, 38, 110, 0.3);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 38, 110, 0.35);
}
.btn-secondary {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: var(--ink-3);
  background: var(--white);
}

/* ── VISUAL SCENE ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.donut-scene {
  position: relative;
  width: 440px;
  height: 440px;
}
.hero-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 38, 110, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.donut-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  animation: floatDonut 4s ease-in-out infinite;
  filter: drop-shadow(0 24px 32px rgba(232, 38, 110, 0.22));
}
.mini-donut {
  position: absolute;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
}
.mini-donut.d1 {
  width: 88px;
  height: 88px;
  top: 30px;
  right: 50px;
  animation: floatMini1 3.8s ease-in-out -1.2s infinite;
}
.mini-donut.d2 {
  width: 70px;
  height: 70px;
  bottom: 50px;
  left: 30px;
  animation: floatMini2 3.8s ease-in-out -2.7s infinite;
}
.mini-donut.d3 {
  width: 58px;
  height: 58px;
  top: 130px;
  left: 18px;
  animation: floatMini3 3.8s ease-in-out -0.5s infinite;
}
@keyframes floatDonut {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-18px) rotate(3deg);
  }
}
@keyframes floatMini1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-8deg);
  }
}
@keyframes floatMini2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(6deg);
  }
}
@keyframes floatMini3 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-5deg);
  }
}
.pill-badge {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-2);
  border: 1px solid var(--surface-3);
}
.pill-badge.b1 {
  top: 60px;
  left: 0;
  animation: floatBadge 3.5s ease-in-out -0.5s infinite;
}
.pill-badge.b2 {
  bottom: 90px;
  right: 0;
  animation: floatBadge 3.5s ease-in-out -1.8s infinite;
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--ink);
  padding: 1.5rem 2.5rem;
}
.stats-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}
.stat-item {
  text-align: center;
  padding: 0.5rem;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-num span {
  color: var(--pink);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── SECTIONS ── */
.section {
  padding: 6rem 2.5rem;
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.9rem;
  display: block;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-title em {
  color: var(--pink);
  font-style: italic;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--ink-4);
  max-width: 480px;
  margin: 0 auto;
}

/* ── MENU ── */
.menu-section {
  background: var(--surface);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-3);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.menu-card-imgwrap {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}
.menu-card-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-card:hover .menu-card-imgwrap img {
  transform: scale(1.06);
}
.menu-card-body {
  padding: 1.4rem;
}
.menu-card-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.menu-card-desc {
  font-size: 0.82rem;
  color: var(--ink-4);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}
.menu-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* ── WHY SECTION ── */
.why-section {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.why-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-3);
  background: var(--white);
  transition: all var(--transition);
  text-align: center;
}
.why-card:hover {
  border-color: rgba(232, 38, 110, 0.25);
  box-shadow: 0 8px 32px rgba(232, 38, 110, 0.08);
  transform: translateY(-3px);
}
.why-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.4rem;
}
.why-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.why-card-desc {
  font-size: 0.82rem;
  color: var(--ink-4);
  line-height: 1.65;
}

/* ── REVIEWS ── */
.reviews-section {
  background: var(--surface);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid var(--surface-3);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-quote {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--pink);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  pointer-events: none;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.review-star {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}
.review-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.review-author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--surface-3);
  padding-top: 1rem;
}
.review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink);
  flex-shrink: 0;
}
.review-author-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-2);
}
.review-author-sub {
  font-size: 0.7rem;
  color: var(--ink-4);
}

/* ── INFO SECTION ── */
.info-section {
  background: var(--white);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.info-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 2rem;
}
.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.info-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.info-item-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.25rem;
}
.info-item-value {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.6;
  font-weight: 500;
}
.info-item-value a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}
.info-item-value a:hover {
  text-decoration: underline;
}
.hours-table {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 1.5rem;
  font-size: 0.83rem;
  margin-top: 0.35rem;
}
.hours-day {
  color: var(--ink-4);
}
.hours-time {
  color: var(--ink-2);
  font-weight: 600;
}
.hours-closed {
  color: var(--pink);
  font-weight: 600;
}
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--surface-3);
  box-shadow: var(--shadow-md);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* ── FOOTER ── */
footer {
  background: #89cff0;
  color: rgba(0, 0, 0, 0.55);
  padding: 3.5rem 2.5rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.footer-logo span {
  color: var(--pink);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--ink);
}
.footer-links li:nth-last-child(-n + 2) a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  background: rgba(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  color: var(--ink);
}
.footer-links li:nth-last-child(-n + 2) a:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(232, 38, 110, 0.35);
}
.footer-right {
  text-align: right;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.35);
}
.footer-divider {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-right {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    gap: 1rem;
  }
  .footer-links {
    gap: 0.75rem;
  }
  .footer-divider {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav-hamburger:hover {
  background: var(--surface-2);
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--surface-3);
  padding: 1rem 1.2rem 1.4rem;
  gap: 0.2rem;
  z-index: 199;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-links.open li {
  display: block !important;
}
.nav-links.open a:not(.nav-cta) {
  display: block;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--ink-2);
}
.nav-links.open a:not(.nav-cta):hover {
  background: var(--surface-2);
  color: var(--ink);
}
.nav-links.open .nav-cta {
  display: block !important;
  margin-top: 0.6rem;
  text-align: center;
  padding: 0.75rem 1.2rem !important;
  font-size: 0.9rem !important;
}

/* ── TABLET ── */
@media (max-width: 960px) {
  nav {
    padding: 0 1.5rem;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero {
    padding: 5.5rem 1.8rem 4rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .donut-scene {
    width: 320px;
    height: 320px;
  }
  .donut-main {
    width: 210px;
    height: 210px;
  }
  .mini-donut.d1 {
    width: 64px;
    height: 64px;
  }
  .mini-donut.d2 {
    width: 52px;
    height: 52px;
  }
  .mini-donut.d3 {
    width: 44px;
    height: 44px;
  }
  .donut-scene {
    width: 320px;
    height: 320px;
  }
  .donut-main {
    width: 210px;
    height: 210px;
  }
  .mini-donut.d1 {
    width: 64px;
    height: 64px;
  }
  .mini-donut.d2 {
    width: 52px;
    height: 52px;
  }
  .mini-donut.d3 {
    width: 44px;
    height: 44px;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .section {
    padding: 4.5rem 1.8rem;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .map-wrap {
    height: 280px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-right {
    text-align: center;
  }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  nav {
    padding: 0 1rem;
    height: 60px;
  }
  .nav-logo {
    font-size: 1.25rem;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero {
    padding: 5rem 1.2rem 3rem;
    min-height: auto;
  }
  .hero-badge {
    font-size: 0.65rem;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-subtitle {
    font-size: 0.93rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }
  .donut-scene {
    width: 260px;
    height: 260px;
  }
  .donut-main {
    width: 180px;
    height: 180px;
  }
  .mini-donut.d1 {
    width: 52px;
    height: 52px;
    right: 20px;
  }
  .mini-donut.d2 {
    width: 42px;
    height: 42px;
    left: 8px;
  }
  .mini-donut.d3 {
    width: 36px;
    height: 36px;
  }
  .pill-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
  }
  .hero-badge {
    font-size: 0.65rem;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-subtitle {
    font-size: 0.93rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }
  .donut-scene {
    width: 260px;
    height: 260px;
  }
  .donut-main {
    width: 180px;
    height: 180px;
  }
  .mini-donut.d1 {
    width: 52px;
    height: 52px;
    right: 20px;
  }
  .mini-donut.d2 {
    width: 42px;
    height: 42px;
    left: 8px;
  }
  .mini-donut.d3 {
    width: 36px;
    height: 36px;
  }
  .pill-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
  }
  .section {
    padding: 3.5rem 1.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .info-block h3 {
    font-size: 1.6rem;
  }
  .map-wrap {
    height: 240px;
    border-radius: var(--radius-lg);
  }
  .footer-inner {
    gap: 1rem;
  }
  .footer-links {
    gap: 0.75rem;
  }
}
/* ── CONTACT MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.4rem 2.2rem 2rem;
  width: 100%;
  max-width: 380px;
  position: relative;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--surface-2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    color var(--transition);
  line-height: 1;
}
.modal-close:hover {
  background: var(--surface-3);
  color: var(--ink);
}
.modal-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.6rem;
}
.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
  line-height: 1.15;
}
.modal-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
}
.modal-number-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.modal-copy-btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink);
  background: var(--pink-light);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.modal-copy-btn:hover {
  background: #f7c8db;
}
.modal-copy-btn.copied {
  color: #0a7a3e;
  background: #e3f5eb;
}
.modal-hours {
  font-size: 0.78rem;
  color: var(--ink-4);
  margin-bottom: 1.6rem;
  line-height: 1.7;
  padding: 0 0.2rem;
}
.modal-hours strong {
  color: var(--ink-2);
  font-weight: 600;
}
.modal-dial-btn {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 38, 110, 0.3);
  transition:
    background var(--transition),
    transform var(--transition);
}
.modal-dial-btn:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .modal {
    padding: 2rem 1.5rem 1.6rem;
    border-radius: var(--radius-lg);
  }
  .modal-number-text {
    font-size: 1.2rem;
  }
}
