/* =========================================================
   Luxe Nails Studio — Shared Stylesheet
   Brand: rose / blush / beige · Georgia serif + system sans
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off: #faf9f7;
  --blush: #f2e8e4;
  --blush-2: #e8d5ce;
  --beige: #f5f0eb;
  --beige-2: #ede4d8;
  --rose: #c4796a;
  --rose-dark: #a85f52;
  --rose-light: #f0ded9;
  --black: #1a1a1a;
  --dark: #2d2d2d;
  --muted: #8a7f7a;
  --border: #ece5df;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Georgia', 'Times New Roman', serif; background: var(--white); color: var(--black); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-size: 1.25rem; font-weight: 400; letter-spacing: 0.08em; color: var(--black); text-decoration: none; font-style: italic; }
.nav-logo span { color: var(--rose); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-family: -apple-system, sans-serif; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.nav-links a.active { color: var(--rose); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone { font-family: -apple-system, sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--black); text-decoration: none; white-space: nowrap; }
.nav-book { background: var(--rose); color: var(--white); padding: 0.6rem 1.4rem; border-radius: 100px; font-family: -apple-system, sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.nav-book:hover { background: var(--rose-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding: 120px 5% 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  background: var(--off);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose-light); color: var(--rose-dark);
  font-family: -apple-system, sans-serif; font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 400;
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--black); margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--rose); font-style: italic; }
.hero-sub {
  font-family: -apple-system, sans-serif; font-size: 1rem;
  color: var(--muted); line-height: 1.8; max-width: 460px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-rose { background: var(--rose); color: var(--white); padding: 0.9rem 2rem; border-radius: 100px; font-family: -apple-system, sans-serif; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-block; cursor: pointer; border: none; }
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-outline-rose { background: transparent; color: var(--rose); border: 1.5px solid var(--rose); padding: 0.9rem 2rem; border-radius: 100px; font-family: -apple-system, sans-serif; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: background 0.2s; display: inline-block; cursor: pointer; }
.btn-outline-rose:hover { background: var(--rose-light); }
.hero-right { position: relative; }
.hero-img-wrap { border-radius: var(--radius-xl); overflow: hidden; }
.hero-img-wrap img { width: 100%; height: 540px; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; bottom: 2rem; left: -1.5rem;
  background: var(--white); border-radius: var(--radius);
  padding: 1rem 1.25rem; box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-badge-icon { font-size: 1.5rem; }
.hero-badge-text { font-family: -apple-system, sans-serif; }
.hero-badge-text .num { font-size: 1.1rem; font-weight: 700; color: var(--black); line-height: 1; }
.hero-badge-text .lbl { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 140px 5% 80px; text-align: center;
  background: var(--off); border-bottom: 1px solid var(--border);
}
.page-header .breadcrumb { font-family: -apple-system, sans-serif; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; }
.page-header .breadcrumb a { color: var(--muted); text-decoration: none; }
.page-header .breadcrumb a:hover { color: var(--rose); }
.page-header .breadcrumb span { color: var(--rose); }
.page-header h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 1rem; }
.page-header h1 em { color: var(--rose); font-style: italic; }
.page-header p { font-family: -apple-system, sans-serif; font-size: 1rem; color: var(--muted); line-height: 1.8; max-width: 560px; margin: 0 auto; }

/* ── SHARED ── */
section { padding: 96px 5%; }
.wrap { max-width: 1200px; margin: 0 auto; }
.eyebrow { font-family: -apple-system, sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 1rem; }
.section-sub { font-family: -apple-system, sans-serif; font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 520px; }
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }
.center-cta { text-align: center; margin-top: 3rem; }

/* ── SERVICES (card grid) ── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.service-card {
  background: var(--off); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(196,121,106,0.12); border-color: var(--blush-2); }
.service-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 400; margin-bottom: 0.5rem; letter-spacing: 0.01em; }
.service-card p { font-family: -apple-system, sans-serif; font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; flex-grow: 1; }
.service-price { font-family: -apple-system, sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--rose); letter-spacing: 0.04em; }
.service-card .btn-outline-rose { margin-top: 1.25rem; text-align: center; font-size: 0.82rem; padding: 0.7rem 1.5rem; }

/* ── SERVICE MENU (services page, price list) ── */
.menu { background: var(--off); }
.menu-group { margin-bottom: 3.5rem; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group-title { display: flex; align-items: center; gap: 0.75rem; font-size: 1.4rem; font-weight: 400; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.menu-group-title .mg-icon { font-size: 1.4rem; }
.menu-list { display: grid; gap: 0.25rem; }
.menu-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 1.5rem; align-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.menu-row:hover { border-color: var(--blush-2); box-shadow: 0 8px 28px rgba(196,121,106,0.08); }
.menu-row-info h4 { font-size: 1.05rem; font-weight: 400; margin-bottom: 0.2rem; }
.menu-row-info p { font-family: -apple-system, sans-serif; font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
.menu-row-price { font-family: -apple-system, sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--rose); white-space: nowrap; }
.menu-row .btn-rose { font-size: 0.78rem; padding: 0.6rem 1.4rem; white-space: nowrap; }
.price-note { font-family: -apple-system, sans-serif; font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 3rem; font-style: italic; }

/* ── GALLERY ── */
.gallery { background: var(--beige); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .g-cat {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.7), transparent);
  color: var(--white); font-family: -apple-system, sans-serif; font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2rem 1rem 0.85rem; opacity: 0; transition: opacity 0.25s;
}
.gallery-item:hover .g-cat { opacity: 1; }
/* filter tabs */
.filters { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-top: 2.5rem; }
.filter-btn {
  font-family: -apple-system, sans-serif; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 0.55rem 1.35rem; border-radius: 100px;
  border: 1.5px solid var(--blush-2); background: var(--white); color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--rose); color: var(--rose); }
.filter-btn.active { background: var(--rose); border-color: var(--rose); color: var(--white); }
.gallery-item.hide { display: none; }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { border-radius: var(--radius-xl); overflow: hidden; }
.about-img img { width: 100%; height: 500px; object-fit: cover; display: block; }
.about-text h2 { font-size: clamp(1.8rem, 2.8vw, 2.5rem); font-weight: 400; line-height: 1.2; margin-bottom: 1.25rem; }
.about-text h2 em { color: var(--rose); font-style: italic; }
.about-text p { font-family: -apple-system, sans-serif; font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.about-stats { display: flex; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.about-stat .num { font-size: 2rem; font-weight: 400; color: var(--rose); line-height: 1; }
.about-stat .lbl { font-family: -apple-system, sans-serif; font-size: 0.75rem; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }
.about-inner.reverse .about-img { order: 2; }

/* ── WHY US ── */
.whyus { background: var(--blush); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.why-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; }
.why-icon { font-size: 1.5rem; margin-bottom: 0.85rem; }
.why-card h3 { font-size: 0.95rem; font-weight: 400; margin-bottom: 0.4rem; letter-spacing: 0.01em; }
.why-card p { font-family: -apple-system, sans-serif; font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--off); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); }
.t-stars { color: var(--rose); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 1rem; }
.t-quote { font-size: 0.95rem; color: var(--dark); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.t-name { font-family: -apple-system, sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--black); }
.t-loc { font-family: -apple-system, sans-serif; font-size: 0.75rem; color: var(--muted); }

/* ── FAQ ── */
.faq { background: var(--beige); }
.faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.faq-left h2 { font-size: clamp(1.8rem, 2.8vw, 2.5rem); font-weight: 400; line-height: 1.2; margin-bottom: 1rem; }
.faq-left p { font-family: -apple-system, sans-serif; font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 0; cursor: pointer; font-family: -apple-system, sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--black); }
.faq-toggle { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--blush-2); display: flex; align-items: center; justify-content: center; color: var(--rose); font-size: 1rem; flex-shrink: 0; transition: transform 0.25s, border-color 0.2s; font-weight: 300; background: var(--white); }
.faq-item.open .faq-toggle { transform: rotate(45deg); border-color: var(--rose); }
.faq-answer { font-family: -apple-system, sans-serif; font-size: 0.88rem; color: var(--muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 240px; padding-bottom: 1.25rem; }

/* ── CTA ── */
.cta-section { background: var(--rose); padding: 96px 5%; text-align: center; }
.cta-section h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400; color: var(--white); letter-spacing: -0.01em; margin-bottom: 1rem; }
.cta-section p { font-family: -apple-system, sans-serif; font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--rose); padding: 1rem 2.5rem; border-radius: 100px; font-family: -apple-system, sans-serif; font-size: 0.95rem; font-weight: 700; text-decoration: none; transition: transform 0.15s, box-shadow 0.2s; display: inline-block; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); padding: 1rem 2.5rem; border-radius: 100px; font-family: -apple-system, sans-serif; font-size: 0.95rem; font-weight: 700; text-decoration: none; transition: background 0.2s; display: inline-block; }
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3.5rem; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { background: var(--off); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.contact-card-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-card h4 { font-family: -apple-system, sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.35rem; }
.contact-card p { font-family: -apple-system, sans-serif; font-size: 0.95rem; color: var(--black); line-height: 1.6; }
.contact-card a { color: var(--rose); text-decoration: none; font-weight: 600; }
.contact-card p.sub { font-size: 0.82rem; color: var(--muted); font-weight: 400; }
.contact-form-wrap { background: var(--off); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; }
.contact-form-wrap h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.1rem; }
.form-group label { font-family: -apple-system, sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  font-family: -apple-system, sans-serif; font-size: 0.95rem;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.85rem 1rem; color: var(--black); outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; margin-top: 0.5rem; border: none; cursor: pointer; }
.form-note { font-family: -apple-system, sans-serif; font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 0.85rem; }
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success .fs-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-success h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: 0.5rem; }
.form-success p { font-family: -apple-system, sans-serif; color: var(--muted); font-size: 0.92rem; }
.map-wrap { margin-top: 3rem; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; filter: saturate(0.9); }

/* ── FOOTER ── */
footer { background: var(--black); color: var(--white); padding: 4rem 5% 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-size: 1.2rem; font-weight: 400; letter-spacing: 0.08em; color: var(--white); font-style: italic; margin-bottom: 0.75rem; }
.footer-logo span { color: var(--rose); }
.footer-brand p { font-family: -apple-system, sans-serif; font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 220px; }
.footer-col h4 { font-family: -apple-system, sans-serif; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-family: -apple-system, sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--rose); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-family: -apple-system, sans-serif; font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom span { color: var(--rose); }

/* ── STICKY MOBILE CTA ── */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; }
.mobile-cta a { flex: 1; text-align: center; padding: 0.9rem; font-family: -apple-system, sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em; text-decoration: none; }
.mobile-cta .mc-call { background: var(--black); color: var(--white); }
.mobile-cta .mc-book { background: var(--rose); color: var(--white); }

/* ── FADE UP ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .hero-badge { left: 1rem; }
  .about-inner, .faq-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner.reverse .about-img { order: 0; }
  .services-grid, .why-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 0.5rem 5% 1rem; box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-150%); transition: transform 0.3s ease; display: flex;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.9rem 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
  .nav-links .nav-book { text-align: center; margin-top: 0.75rem; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .services-grid, .why-grid, .testimonials-grid, .gallery-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns, .cta-btns { flex-direction: column; }
  .about-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .menu-row { grid-template-columns: 1fr; gap: 0.85rem; }
  .menu-row-price { justify-self: start; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 52px; }
}
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; } }
