/* ============================================================
   Ma's Crepes & Cakes — Design System
   Palette drawn from the brand logo: blush pink, chocolate
   brown, cream, strawberry red, with an aqua accent from the
   shop interior.
   ============================================================ */

:root {
  --cream: #FFF9F4;
  --cream-2: #FBF0E7;
  --blush: #F5C3C2;
  --blush-soft: #FADDDC;
  --blush-deep: #E89B9B;
  --choc: #4A2C26;
  --choc-deep: #331D19;
  --berry: #D64550;
  --berry-deep: #B93540;
  --aqua: #7ECFCB;
  --aqua-deep: #4FB3AE;
  --gold: #E9B949;
  --ink-soft: #7A5F58;
  --radius: 22px;
  --shadow: 0 12px 34px rgba(74, 44, 38, 0.10);
  --shadow-lg: 0 24px 60px rgba(74, 44, 38, 0.16);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Caveat", cursive;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--choc);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--choc);
  color: var(--cream);
  text-align: center;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  padding: 9px 16px;
}
.announce strong { color: var(--blush); font-weight: 600; }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 249, 244, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(74, 44, 38, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
}
.brand img { width: 52px; height: 52px; border-radius: 50%; }
.brand span em {
  display: block;
  font-family: var(--font-script);
  font-size: 0.95rem;
  font-style: normal;
  color: var(--berry);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links .close-x { display: none; }
.nav-links a {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--choc);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%; height: 2px;
  background: var(--berry);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.nav-cta {
  display: inline-block;
  background: var(--berry);
  color: #fff !important;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(214, 69, 80, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-links a.nav-cta:hover { background: var(--berry-deep); transform: translateY(-2px); }
.nav-links a.nav-cta::after { display: none; }

/* Mobile nav */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-btn span {
  display: block;
  width: 26px; height: 3px;
  background: var(--choc);
  border-radius: 3px;
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 880px) {
  header.site {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .menu-btn { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    font-size: 1.3rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s;
    z-index: 70;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links .close-x {
    display: block;
    position: absolute;
    top: 26px; right: 30px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--choc);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
}
.btn-primary {
  background: var(--berry);
  color: #fff;
  box-shadow: 0 10px 26px rgba(214, 69, 80, 0.35);
}
.btn-primary:hover { background: var(--berry-deep); transform: translateY(-3px); }
.btn-ghost {
  background: transparent;
  color: var(--choc);
  border: 2px solid var(--choc);
}
.btn-ghost:hover { background: var(--choc); color: var(--cream); transform: translateY(-3px); }
.btn-light {
  background: #fff;
  color: var(--choc);
  box-shadow: var(--shadow);
}
.btn-light:hover { transform: translateY(-3px); }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--berry);
  display: block;
  margin-bottom: 6px;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; }
.h-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -0.01em; }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.h-md { font-size: clamp(1.4rem, 2.6vw, 1.85rem); }
.lede { font-size: 1.13rem; color: var(--ink-soft); max-width: 56ch; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 84px 0 110px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero .lede { margin: 22px 0 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 26px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-badges div { font-size: 0.92rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.hero-badges b { color: var(--choc); }

.hero-art { position: relative; }
.hero-art .plate {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 10px solid #fff;
  position: relative;
  z-index: 2;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: -8% -6% auto auto;
  width: 78%; aspect-ratio: 1;
  background: var(--blush-soft);
  border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%;
  z-index: 1;
  animation: blob 12s ease-in-out infinite alternate;
}
.hero-art::after {
  content: "";
  position: absolute;
  left: -10%; bottom: -12%;
  width: 46%; aspect-ratio: 1;
  background: var(--aqua);
  opacity: 0.5;
  border-radius: 55% 45% 48% 52% / 45% 55% 45% 55%;
  z-index: 0;
  animation: blob 14s ease-in-out infinite alternate-reverse;
}
@keyframes blob {
  0% { border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%; }
  100% { border-radius: 54% 46% 44% 56% / 55% 50% 50% 45%; }
}
.hero-chip {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-chip small { display: block; font-weight: 400; color: var(--ink-soft); }
.chip-1 { top: 6%; left: -4%; animation: floaty 5s ease-in-out infinite; }
.chip-2 { bottom: 4%; right: -2%; animation: floaty 6s ease-in-out 0.8s infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 880px) {
  .hero { padding: 56px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  /* Show the full hero photo on mobile — no circular crop */
  .hero-art .plate { border-radius: 28px; border-width: 6px; }
  .hero-art::before { inset: -5% -4% auto auto; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--choc);
  color: var(--cream);
  overflow: hidden;
  padding: 16px 0;
  transform: rotate(-1.2deg) scale(1.03);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.marquee-track span { display: flex; align-items: center; gap: 48px; }
.marquee i { color: var(--blush); font-style: normal; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
section.block { padding: 96px 0; }
section.block.tight { padding: 70px 0; }
.block-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.block-head .lede { margin: 14px auto 0; }

.bg-blush { background: linear-gradient(180deg, var(--cream) 0%, var(--blush-soft) 50%, var(--cream) 100%); }
.bg-cream2 { background: var(--cream-2); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.card-body { padding: 22px 24px 26px; }
.card-body h3 { font-size: 1.28rem; margin-bottom: 6px; display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.card-body .price { color: var(--berry); font-family: var(--font-display); font-size: 1.15rem; white-space: nowrap; }
.card-body p { font-size: 0.94rem; color: var(--ink-soft); }

@media (max-width: 880px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ---------- Menu list page ---------- */
.menu-section { margin-bottom: 72px; }
.menu-section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--blush);
  padding-bottom: 12px;
}
.menu-section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.menu-section-head span { font-family: var(--font-script); font-size: 1.35rem; color: var(--berry); }
.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 48px;
}
.menu-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  transition: background 0.25s ease;
}
.menu-item:hover { background: #fff; box-shadow: var(--shadow); }
.menu-item img {
  width: 86px; height: 86px;
  border-radius: 16px;
  object-fit: cover;
}
.menu-item.no-photo { grid-template-columns: 1fr; }
.mi-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.mi-head h3 { font-size: 1.12rem; }
.mi-head .dots {
  flex: 1;
  border-bottom: 2px dotted rgba(74, 44, 38, 0.25);
  transform: translateY(-4px);
}
.mi-head .price { font-family: var(--font-display); color: var(--berry); font-size: 1.08rem; white-space: nowrap; }
.menu-item p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.menu-note {
  background: #fff;
  border-left: 5px solid var(--aqua);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 26px;
}
.pill-list { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  background: #fff;
  border: 1.5px solid var(--blush);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 780px) {
  .menu-items { grid-template-columns: 1fr; }
}

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.rev > .split-art { order: 2; }
.split-art { position: relative; }
.split-art img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}
.split-art .tape {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--aqua);
  opacity: 0.85;
  width: 130px; height: 34px;
  border-radius: 4px;
}
.split-body .lede { margin: 18px 0 26px; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.rev > .split-art { order: 0; }
}

/* ---------- Hours ---------- */
.hours-card {
  background: var(--choc);
  color: var(--cream);
  border-radius: 28px;
  padding: 46px 50px;
  box-shadow: var(--shadow-lg);
}
.hours-card h2 { color: #fff; margin-bottom: 8px; }
.hours-card .sub { color: var(--blush); font-family: var(--font-script); font-size: 1.4rem; }
.hours-rows { margin: 28px 0 30px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 249, 244, 0.15);
  font-size: 1.02rem;
}
.hours-row b { font-weight: 600; }
.hours-row span { color: var(--blush-soft); }
.hours-row.closed span { color: rgba(255,249,244,0.4); }
.hours-row.today { }
.hours-row .badge-open {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--aqua-deep);
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  vertical-align: middle;
}
.hours-foot { font-size: 0.9rem; color: rgba(255,249,244,0.65); }

/* ---------- Special / holiday hours callout ---------- */
.special-hours {
  margin-top: 22px;
  background: var(--cream-2);
  border: 1px solid var(--blush);
  border-left: 5px solid var(--berry);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.special-hours h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--berry-deep);
  margin-bottom: 12px;
}
.special-hours .srow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 9px 0;
  font-size: 1rem;
  border-bottom: 1px dashed rgba(74, 44, 38, 0.14);
  color: var(--choc);
}
.special-hours .srow:last-child { border-bottom: none; padding-bottom: 0; }
.special-hours .srow b { font-weight: 600; }
.special-hours .srow .tag-closed { color: var(--berry-deep); font-weight: 600; white-space: nowrap; }
.special-hours .srow .tag-open { color: var(--aqua-deep); font-weight: 600; white-space: nowrap; }
.special-hours .sh-foot { margin-top: 12px; font-size: 0.85rem; color: var(--ink-soft); }

/* Centered hours page layout */
.hours-stack { max-width: 540px; margin: 0 auto; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery a {
  border-radius: 18px;
  overflow: hidden;
  display: block;
  position: relative;
}
.gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
}
.gallery a:hover img { transform: scale(1.06); }
@media (max-width: 780px) {
  .gallery { grid-template-columns: 1fr 1fr; }
}

/* ---------- Catering ---------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.pkg {
  background: #fff;
  border-radius: 26px;
  padding: 38px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pkg:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg.feature { border: 2.5px solid var(--berry); }
.pkg .tag {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--berry);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pkg h3 { font-size: 1.4rem; }
.pkg .pkg-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--berry);
  margin: 10px 0 2px;
}
.pkg .pkg-price small { font-size: 1rem; color: var(--ink-soft); font-family: var(--font-body); }
.pkg .per { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 22px; }
.pkg ul { list-style: none; margin-bottom: 28px; }
.pkg li {
  padding: 9px 0 9px 30px;
  position: relative;
  font-size: 0.96rem;
  border-bottom: 1px dashed rgba(74,44,38,0.12);
}
.pkg li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aqua-deep);
  font-weight: 700;
}
.pkg .btn { margin-top: auto; justify-content: center; }
@media (max-width: 880px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card { text-align: center; }
.team-card .ph {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
  background: #fff;
}
.team-card img {
  aspect-ratio: 0.9;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
}
.team-card:hover img { transform: scale(1.05); }
.team-card h3 { font-size: 1.2rem; }
.team-card .role {
  font-family: var(--font-script);
  color: var(--berry);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}
.team-card p { font-size: 0.9rem; color: var(--ink-soft); }
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

/* ---------- Big CTA ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--berry) 0%, var(--berry-deep) 100%);
  border-radius: 34px;
  color: #fff;
  text-align: center;
  padding: 74px 40px;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-band::before { width: 340px; height: 340px; top: -140px; left: -100px; }
.cta-band::after { width: 260px; height: 260px; bottom: -110px; right: -70px; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 46ch; margin: 0 auto 32px; }
.cta-band .btn-light { position: relative; z-index: 2; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--choc-deep);
  color: rgba(255, 249, 244, 0.8);
  padding: 70px 0 30px;
  margin-top: 96px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 50px;
}
.foot-brand img { width: 74px; border-radius: 50%; margin-bottom: 16px; }
.foot-brand p { font-size: 0.93rem; max-width: 30ch; }
footer h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; font-size: 0.94rem; }
footer a:hover { color: var(--blush); }
.foot-bottom {
  border-top: 1px solid rgba(255,249,244,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,249,244,0.45);
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Mobile polish ---------- */
@media (max-width: 640px) {
  section.block { padding: 60px 0; }
  section.block.tight { padding: 48px 0; }
  .block-head { margin-bottom: 38px; }
  .page-hero { padding: 48px 0 42px; }
  .hero { padding: 44px 0 64px; }
  .hero .lede { margin: 18px 0 26px; }
  .hero-badges { gap: 14px; margin-top: 32px; }
  .announce { font-size: 0.78rem; letter-spacing: 0.03em; padding: 8px 14px; }
  .marquee-track { font-size: 0.88rem; }
  .hours-card { padding: 32px 26px; border-radius: 22px; }
  .cta-band { padding: 52px 26px; border-radius: 26px; }
  .pkg { padding: 30px 24px; }
  .menu-item { grid-template-columns: 68px 1fr; gap: 14px; padding: 12px 10px; }
  .menu-item img { width: 68px; height: 68px; border-radius: 12px; }
  .menu-items { gap: 8px; }
  .menu-section { margin-bottom: 52px; }
  .split { gap: 30px; }
  .btn { padding: 14px 24px; font-size: 0.95rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 36px; }
  footer.site { padding: 52px 0 26px; margin-top: 60px; }
  .foot-bottom { flex-direction: column; gap: 6px; }
  .gallery { gap: 10px; }
  .card-grid { gap: 20px; }
  .team-grid { gap: 20px; }
  .brand span { font-size: 1.02rem; }
  .brand img { width: 44px; height: 44px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-art::before, .hero-art::after, .chip-1, .chip-2 { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Inquiry form ---------- */
.inq-card {
  background: #fff;
  border-radius: 26px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin: 0 auto;
}
.inq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inq-f { margin-bottom: 18px; }
.inq-f label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.inq-f input, .inq-f textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 15px;
  border: 1.5px solid var(--blush);
  border-radius: 12px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--choc);
  transition: border-color 0.2s ease;
}
.inq-f input:focus, .inq-f textarea:focus { outline: none; border-color: var(--berry); }
.inq-f textarea { min-height: 100px; resize: vertical; }
.inq-req { color: var(--berry); }
.inq-btn { width: 100%; justify-content: center; }
.inq-ok { display: none; text-align: center; padding: 30px 10px; }
.inq-ok h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 8px; }
.inq-ok p { color: var(--ink-soft); }
.inq-err { display: none; color: var(--berry); text-align: center; margin-top: 12px; font-size: 0.95rem; }
@media (max-width: 640px) {
  .inq-card { padding: 30px 22px; }
  .inq-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.on { opacity: 1; transform: translateY(0); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 72px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--blush-soft) 0%, var(--cream) 100%);
}
.page-hero .lede { margin: 14px auto 0; }
