/* ============================================
   MS BANH MI — BAKERY & CAFE
   Design tokens
   ============================================ */
:root {
  --mustard: #E8A33D;
  --mustard-deep: #D18A22;
  --maroon: #6B1F1F;
  --maroon-deep: #4E1414;
  --cream: #FBF6EC;
  --cream-warm: #F5EBD8;
  --charcoal: #2B2320;
  --herb: #5C7A4F;
  --herb-light: #EEF3EA;
  --white: #FFFFFF;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-soft: 0 8px 24px rgba(107, 31, 31, 0.08);
  --shadow-lift: 0 16px 40px rgba(107, 31, 31, 0.16);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Karla', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  color: var(--maroon-deep);
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
  background: var(--mustard);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

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

.section-head h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 14px; }
.section-head p { font-size: 1.08rem; color: #5a4d46; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--maroon-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.btn-secondary {
  background: var(--white);
  color: var(--maroon);
  border: 2px solid var(--maroon);
}
.btn-secondary:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-mustard {
  background: var(--mustard);
  color: var(--maroon-deep);
  box-shadow: var(--shadow-soft);
}
.btn-mustard:hover {
  background: var(--mustard-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.btn-sm { padding: 11px 22px; font-size: 0.9rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(251, 246, 236, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(107, 31, 31, 0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(107,31,31,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(107,31,31,0.15);
}
.nav-brand .brand-text {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  color: var(--maroon-deep);
  font-size: 1.15rem;
  line-height: 1.1;
}
.nav-brand .brand-text span {
  display: block;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mustard-deep);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: background 0.25s, color 0.25s;
  position: relative;
}
.nav-links a:hover { background: var(--cream-warm); color: var(--maroon); }
.nav-links a.active { color: var(--maroon); background: var(--mustard); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 6px;
}
.hamburger span {
  height: 3px;
  width: 100%;
  background: var(--maroon-deep);
  border-radius: 3px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(107,31,31,0.1);
  box-shadow: 0 12px 30px rgba(107,31,31,0.12);
  padding: 12px;
  z-index: 999;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--mustard); color: var(--maroon-deep); }
.mobile-menu .btn { width: 100%; margin-top: 8px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
}

/* ============================================
   SCALLOP DIVIDER — signature element
   ============================================ */
.scallop-divider {
  width: 100%;
  height: 34px;
  display: block;
  position: relative;
  z-index: 2;
}
.scallop-mustard { fill: var(--mustard); }
.scallop-cream { fill: var(--cream); }
.scallop-maroon { fill: var(--maroon); }
.scallop-white { fill: var(--white); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 170px 0 90px;
  background: radial-gradient(ellipse 900px 500px at 80% -10%, rgba(232,163,61,0.35), transparent),
              var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .eyebrow { animation: fadeUp 0.7s var(--ease-out) both; }
.hero-copy h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  margin-bottom: 20px;
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}
.hero-copy h1 .accent { color: var(--mustard-deep); position: relative; }
.hero-copy p.lead {
  font-size: 1.15rem;
  color: #5a4d46;
  max-width: 480px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp 0.7s var(--ease-out) 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-out) 0.4s both;
}
.hero-stats .stat strong {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.8rem;
  color: var(--maroon);
}
.hero-stats .stat span {
  font-size: 0.85rem;
  color: #7a6d63;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s var(--ease-out) 0.25s both;
}
.hero-plate {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--mustard);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
  animation: floatSlow 6s ease-in-out infinite;
}
.hero-plate::before {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 3px dashed rgba(107,31,31,0.25);
}
.hero-plate img {
  width: 78%;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.hero-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  background: var(--maroon);
  color: var(--white);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lift);
  transform: rotate(-6deg);
  animation: pulseBadge 3s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes pulseBadge {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50% { transform: rotate(-6deg) scale(1.06); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.34s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.42s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ============================================
   CARDS — services / menu teaser
   ============================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }

.icon-badge {
  width: 58px; height: 58px;
  border-radius: 18px;
  background: var(--herb-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

/* ============================================
   MENU SECTIONS
   ============================================ */
.menu-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.menu-tab {
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: var(--white);
  font-weight: 700;
  color: var(--maroon);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s var(--ease-out);
}
.menu-tab:hover { transform: translateY(-2px); }
.menu-tab.active { background: var(--maroon); color: var(--white); }

.menu-group { display: none; }
.menu-group.active { display: block; animation: fadeUp 0.5s var(--ease-out) both; }

.menu-category {
  margin-bottom: 44px;
}
.menu-category h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-category h3::after {
  content: '';
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--mustard), var(--mustard) 6px, transparent 6px, transparent 12px);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(107,31,31,0.15);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-item-native {
  font-weight: 400;
  color: #8a7c72;
  font-size: 0.9rem;
}
.menu-item-price {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  color: var(--maroon);
  white-space: nowrap;
}
.tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tag-popular { background: var(--mustard); color: var(--maroon-deep); }
.tag-veg { background: var(--herb-light); color: var(--herb); }

.menu-note {
  margin-top: 8px;
  font-size: 0.92rem;
  color: #8a7c72;
  font-style: italic;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.testimonial-card:hover { transform: translateY(-6px) rotate(-0.4deg); box-shadow: var(--shadow-lift); }
.testimonial-stars { color: var(--mustard-deep); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p.quote { font-size: 1.02rem; color: #4a3f38; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.testimonial-author .name { font-weight: 700; color: var(--maroon-deep); font-size: 0.95rem; }
.testimonial-author .meta { font-size: 0.8rem; color: #8a7c72; }

/* ============================================
   ABOUT / CHECKLIST
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mustard);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
}
.about-visual img { width: 60%; }

.checklist { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.check-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--herb);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.checklist strong { display: block; color: var(--maroon-deep); }
.checklist span { color: #5a4d46; font-size: 0.94rem; }

@media (max-width: 880px) {
  .about-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--mustard);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out);
}
.gallery-item:hover { transform: scale(0.97); }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }
.gallery-item span {
  font-family: 'Baloo 2', sans-serif;
  color: var(--maroon-deep);
  font-weight: 700;
  text-align: center;
  padding: 12px;
  font-size: 0.95rem;
}
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 150px); }
  .gallery-item.big { grid-column: span 2; grid-row: span 1; }
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-card .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.info-card h4 { margin-bottom: 4px; }
.info-card p, .info-card a { color: #5a4d46; font-size: 0.95rem; }
.info-card a:hover { color: var(--maroon); text-decoration: underline; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: 20px;
  height: 220px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--maroon-deep);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--cream-warm);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--charcoal);
  transition: border-color 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--mustard);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.field .error-msg {
  display: none;
  color: #B0413E;
  font-size: 0.82rem;
  margin-top: 6px;
  font-weight: 700;
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #B0413E; }
.field.invalid .error-msg { display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease-out) both; }
.form-success .big-check {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--herb);
  color: var(--white);
  font-size: 2.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  animation: popIn 0.5s var(--ease-out) both;
}
@keyframes popIn {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.call-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lift);
  animation: ringPulse 2.6s ease-in-out infinite;
  transition: transform 0.3s var(--ease-out);
}
.call-float:hover { transform: scale(1.1); }
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,31,31,0.4), var(--shadow-lift); }
  50% { box-shadow: 0 0 0 14px rgba(107,31,31,0), var(--shadow-lift); }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--maroon-deep);
  color: #f0ded8;
  padding: 64px 0 28px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 48px; width: 48px; border-radius: 50%; }
.footer-brand .brand-text { font-family: 'Baloo 2', sans-serif; font-weight: 700; color: var(--white); font-size: 1.1rem; }
footer p { color: #d9c3bc; font-size: 0.92rem; }
footer h5 {
  font-family: 'Karla', sans-serif;
  color: var(--mustard);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer ul li { margin-bottom: 10px; }
footer ul a { color: #e8d5cf; font-size: 0.92rem; transition: color 0.25s; }
footer ul a:hover { color: var(--mustard); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.footer-social a:hover { background: var(--mustard); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #b89a92;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
  padding: 150px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse 800px 400px at 50% -20%, rgba(232,163,61,0.35), transparent), var(--cream);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { max-width: 560px; margin: 0 auto; color: #5a4d46; font-size: 1.05rem; }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
