:root {
  --mft-teal: #167f82;
  --mft-teal-dark: #0d5e63;
  --mft-coral: #ef704d;
  --mft-coral-dark: #c94f34;
  --mft-navy: #112f3a;
  --mft-gold: #f2b544;
  --mft-cream: #fff8ec;
  --mft-paper: #fffdf8;
  --mft-ink: #17333d;
  --mft-muted: #5c6f73;
  --mft-border: rgba(17, 47, 58, 0.14);
  --mft-shadow: 0 24px 60px rgba(17, 47, 58, 0.16);
}

html { scroll-behavior: smooth; }
body.mft-full-page { margin: 0; background: var(--mft-paper); }
.mft-site, .mft-site * { box-sizing: border-box; }
.mft-site {
  width: 100%;
  overflow: hidden;
  background: var(--mft-paper);
  color: var(--mft-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.mft-site a { color: inherit; text-decoration: none; }
.mft-site img { display: block; max-width: 100%; }
.mft-site button, .mft-site a { -webkit-tap-highlight-color: transparent; }
.mft-shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.mft-skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.mft-skip-link:focus { transform: translateY(0); }

.mft-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(17, 47, 58, 0.1);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}
.admin-bar .mft-header { top: 32px; }
.mft-header__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.mft-brand { display: inline-flex; align-items: center; gap: 12px; min-width: 220px; }
.mft-brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mft-gold);
  color: var(--mft-navy);
  font-size: 29px;
  font-weight: 900;
  transform: rotate(-15deg);
  box-shadow: inset 0 -3px 0 rgba(17, 47, 58, 0.12);
}
.mft-brand strong, .mft-brand small { display: block; }
.mft-brand strong { color: var(--mft-navy); font-size: 16px; line-height: 1.1; letter-spacing: 0.01em; }
.mft-brand small { margin-top: 3px; color: var(--mft-coral-dark); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.mft-nav { display: flex; align-items: center; justify-content: flex-end; gap: 26px; font-size: 14px; font-weight: 750; }
.mft-nav > a:not(.mft-button) { position: relative; }
.mft-nav > a:not(.mft-button)::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; transform: scaleX(0); background: var(--mft-coral); transition: transform 180ms ease; }
.mft-nav > a:hover::after, .mft-nav > a:focus-visible::after { transform: scaleX(1); }
.mft-nav-toggle { display: none; align-items: center; gap: 9px; padding: 8px 10px; border: 0; border-radius: 8px; background: transparent; color: var(--mft-navy); font: inherit; font-weight: 800; cursor: pointer; }
.mft-nav-toggle__bars { width: 22px; display: grid; gap: 4px; }
.mft-nav-toggle__bars i { width: 100%; height: 2px; display: block; border-radius: 999px; background: currentColor; transition: transform 160ms ease, opacity 160ms ease; }

.mft-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 2px solid var(--mft-coral);
  border-radius: 999px;
  background: var(--mft-coral);
  color: #fff !important;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(239, 112, 77, 0.22);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.mft-button:hover, .mft-button:focus-visible { transform: translateY(-2px); border-color: var(--mft-coral-dark); background: var(--mft-coral-dark); box-shadow: 0 14px 30px rgba(201, 79, 52, 0.28); }
.mft-button--small { min-height: 42px; padding: 10px 17px; }
.mft-button--ghost { border-color: rgba(17, 47, 58, 0.24); background: transparent; color: var(--mft-navy) !important; box-shadow: none; }
.mft-button--ghost:hover, .mft-button--ghost:focus-visible { border-color: var(--mft-navy); background: var(--mft-navy); color: #fff !important; }
.mft-button--gold { border-color: var(--mft-gold); background: var(--mft-gold); color: var(--mft-navy) !important; box-shadow: 0 10px 24px rgba(242, 181, 68, 0.2); }
.mft-button--gold:hover, .mft-button--gold:focus-visible { border-color: #ffd06f; background: #ffd06f; }
.mft-button--light { border-color: #fff; background: #fff; color: var(--mft-coral-dark) !important; box-shadow: 0 12px 30px rgba(110, 34, 18, 0.18); }
.mft-button--light:hover, .mft-button--light:focus-visible { border-color: var(--mft-navy); background: var(--mft-navy); color: #fff !important; }

.mft-hero { position: relative; min-height: 740px; display: grid; align-items: center; padding: 68px 0 88px; background: linear-gradient(135deg, #fff8eb 0%, #fffdf8 52%, #edf9f8 100%); }
.mft-hero__texture { position: absolute; inset: 0; opacity: 0.22; pointer-events: none; background-image: radial-gradient(circle at 12% 20%, rgba(239, 112, 77, 0.22) 0 3px, transparent 4px), radial-gradient(circle at 88% 74%, rgba(22, 127, 130, 0.24) 0 3px, transparent 4px); background-size: 46px 46px, 56px 56px; }
.mft-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr); align-items: center; gap: 58px; }
.mft-kicker { margin: 0 0 15px; color: var(--mft-teal-dark); font-size: 12px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.mft-hero h1, .mft-section h2 { margin: 0; color: var(--mft-navy); font-family: "Trebuchet MS", Inter, sans-serif; font-weight: 900; letter-spacing: -0.045em; line-height: 0.98; }
.mft-hero h1 { max-width: 650px; font-size: clamp(54px, 6.7vw, 92px); }
.mft-hero h1 span { color: var(--mft-coral); }
.mft-lede { max-width: 610px; margin: 24px 0 0; color: #496166; font-size: clamp(17px, 1.7vw, 20px); line-height: 1.65; }

.mft-live-card { margin-top: 26px; padding: 18px 20px; border: 1px solid rgba(22, 127, 130, 0.25); border-left: 6px solid var(--mft-teal); border-radius: 16px; background: rgba(255, 255, 255, 0.82); box-shadow: 0 12px 28px rgba(17, 47, 58, 0.08); }
.mft-live-card__label { display: flex; align-items: center; gap: 8px; color: var(--mft-teal-dark); font-size: 11px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.mft-live-card__label span { width: 9px; height: 9px; border-radius: 50%; background: #2db477; box-shadow: 0 0 0 5px rgba(45, 180, 119, 0.14); }
.mft-live-card strong { display: block; margin-top: 8px; color: var(--mft-navy); font-size: 18px; line-height: 1.35; }
.mft-live-card p { margin: 5px 0 0; color: #496166; font-weight: 700; }
.mft-live-card small { display: block; margin-top: 4px; color: var(--mft-muted); line-height: 1.45; }
.mft-live-card__updated { margin-top: 9px !important; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

.mft-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.mft-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 32px 0 0; padding: 0; list-style: none; }
.mft-proof li { padding-top: 14px; border-top: 3px solid var(--mft-gold); }
.mft-proof strong, .mft-proof span { display: block; }
.mft-proof strong { color: var(--mft-navy); font-size: 13px; }
.mft-proof span { margin-top: 4px; color: var(--mft-muted); font-size: 12px; line-height: 1.45; }

.mft-image-card { position: relative; overflow: visible; }
.mft-image-card::before { content: ""; position: absolute; z-index: 0; inset: 6% -3% -4% 4%; border-radius: 36px; background: var(--mft-teal); transform: rotate(2.5deg); }
.mft-image-card img { position: relative; z-index: 1; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border: 8px solid #fff; border-radius: 30px; box-shadow: var(--mft-shadow); }
.mft-image-card__badge { position: absolute; z-index: 3; right: -18px; bottom: -24px; max-width: 245px; display: flex; align-items: center; gap: 10px; padding: 15px 18px; border: 5px solid #fff; border-radius: 18px; background: var(--mft-gold); color: var(--mft-navy); box-shadow: 0 18px 38px rgba(17, 47, 58, 0.22); font-size: 13px; line-height: 1.3; }
.mft-image-card__badge span { font-size: 20px; }

.mft-section { padding: 96px 0; }
.mft-section--cream { background: var(--mft-cream); }
.mft-section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); align-items: end; gap: 60px; }
.mft-section h2 { max-width: 760px; font-size: clamp(40px, 5vw, 64px); line-height: 1.03; }
.mft-section-heading > p, .mft-section-intro { margin: 0; color: var(--mft-muted); font-size: 17px; }

.mft-menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 46px; }
.mft-menu-card { position: relative; min-height: 330px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--mft-border); border-radius: 24px; background: var(--mft-paper); box-shadow: 0 12px 34px rgba(17, 47, 58, 0.07); transition: transform 180ms ease, box-shadow 180ms ease; }
.mft-menu-card:hover { transform: translateY(-5px); box-shadow: 0 22px 42px rgba(17, 47, 58, 0.12); }
.mft-menu-card--featured { border-color: rgba(239, 112, 77, 0.38); background: linear-gradient(160deg, #fff 0%, #fff3ed 100%); }
.mft-menu-card__top { min-height: 58px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.mft-menu-icon { font-size: 40px; line-height: 1; }
.mft-pill { padding: 7px 10px; border-radius: 999px; background: var(--mft-coral); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.mft-menu-card h3 { margin: 20px 0 10px; color: var(--mft-navy); font-size: 24px; line-height: 1.15; }
.mft-menu-card p { margin: 0; color: var(--mft-muted); font-size: 15px; }
.mft-price { margin-top: auto; padding-top: 24px; color: var(--mft-coral-dark); font-size: 28px; line-height: 1; }
.mft-menu-note { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 30px; padding: 17px 20px; border: 1px dashed rgba(22, 127, 130, 0.4); border-radius: 15px; background: rgba(22, 127, 130, 0.06); color: var(--mft-teal-dark); text-align: center; }
.mft-menu-note p { margin: 0; font-size: 14px; }

.mft-section--dark { position: relative; background: var(--mft-navy); color: #fff; }
.mft-section--dark::before { content: ""; position: absolute; inset: 0; opacity: 0.07; background-image: linear-gradient(45deg, transparent 48%, #fff 49%, #fff 51%, transparent 52%); background-size: 34px 34px; }
.mft-schedule-grid { position: relative; display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr); align-items: center; gap: 72px; }
.mft-section--dark .mft-kicker { color: var(--mft-gold); }
.mft-section--dark h2 { color: #fff; }
.mft-section--dark .mft-section-intro { max-width: 520px; margin-top: 24px; color: rgba(255, 255, 255, 0.72); }
.mft-schedule-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.mft-text-link { color: #fff !important; font-weight: 800; text-decoration: underline !important; text-decoration-color: rgba(255, 255, 255, 0.45) !important; text-underline-offset: 5px; }
.mft-schedule-card { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 24px; background: rgba(255, 255, 255, 0.08); box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2); }
.mft-schedule-row { display: grid; grid-template-columns: 105px minmax(0, 1fr) auto; align-items: center; gap: 20px; padding: 20px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.mft-schedule-row:last-child { border-bottom: 0; }
.mft-schedule-row strong { color: var(--mft-gold); font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; }
.mft-schedule-row span { color: #fff; font-weight: 700; }
.mft-schedule-row time { color: rgba(255, 255, 255, 0.68); white-space: nowrap; }

.mft-section--coral { background: var(--mft-coral); color: #fff; }
.mft-catering { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 28px; }
.mft-catering__icon { width: 82px; height: 82px; display: grid; place-items: center; border: 3px solid rgba(255, 255, 255, 0.64); border-radius: 50%; background: rgba(255, 255, 255, 0.12); font-size: 46px; transform: rotate(-15deg); }
.mft-section--coral .mft-kicker { color: #fff2c6; }
.mft-section--coral h2 { max-width: 700px; color: #fff; font-size: clamp(34px, 4.4vw, 54px); }
.mft-catering p:last-child { max-width: 720px; margin: 18px 0 0; color: rgba(255, 255, 255, 0.84); }

.mft-footer { padding: 62px 0 26px; background: #0c252e; color: rgba(255, 255, 255, 0.72); }
.mft-footer__grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(180px, 0.7fr) minmax(140px, 0.5fr); gap: 60px; }
.mft-brand--footer strong { color: #fff; }
.mft-brand--footer small { color: var(--gold, #f2b544); }
.mft-footer__grid > div:first-child > p { max-width: 500px; margin: 22px 0 0; }
.mft-footer h2 { margin: 4px 0 16px; color: #fff; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.mft-footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.mft-footer a:hover, .mft-footer a:focus-visible { color: #fff; }
.mft-footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 12px; }
.mft-footer__bottom a { color: #fff; font-weight: 800; }

@media (max-width: 1040px) {
  .mft-hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .mft-hero__copy { max-width: 760px; }
  .mft-hero__media { max-width: 760px; }
  .mft-schedule-grid { grid-template-columns: 1fr; gap: 48px; }
  .mft-catering { grid-template-columns: auto 1fr; }
  .mft-catering .mft-button { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  .mft-nav-toggle { display: inline-flex; }
  .mft-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 20px; border-bottom: 1px solid var(--mft-border); background: var(--mft-paper); box-shadow: 0 20px 30px rgba(17, 47, 58, 0.12); }
  .mft-nav a { padding: 13px 8px; }
  .mft-nav .mft-button { margin-top: 8px; }
  .mft-menu-open .mft-nav { display: flex; }
  .mft-menu-open .mft-nav-toggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mft-menu-open .mft-nav-toggle__bars i:nth-child(2) { opacity: 0; }
  .mft-menu-open .mft-nav-toggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mft-section-heading { grid-template-columns: 1fr; gap: 20px; }
  .mft-menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mft-footer__grid { grid-template-columns: 1fr 1fr; }
  .mft-footer__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .admin-bar .mft-header { top: 46px; }
  .mft-shell { width: min(100% - 28px, 1160px); }
  .mft-header__inner { min-height: 70px; }
  .mft-brand { min-width: 0; }
  .mft-brand__mark { width: 40px; height: 40px; font-size: 24px; }
  .mft-brand strong { font-size: 14px; }
  .mft-brand small { font-size: 9px; }
  .mft-hero { min-height: 0; padding: 48px 0 70px; }
  .mft-hero__grid { gap: 42px; }
  .mft-hero h1 { font-size: clamp(48px, 17vw, 68px); }
  .mft-lede { font-size: 17px; }
  .mft-actions .mft-button { width: 100%; }
  .mft-proof { grid-template-columns: 1fr; gap: 10px; }
  .mft-image-card::before { inset: 5% -1% -3% 2%; border-radius: 24px; }
  .mft-image-card img { border-width: 5px; border-radius: 22px; }
  .mft-image-card__badge { right: 8px; bottom: -28px; max-width: calc(100% - 16px); border-width: 4px; }
  .mft-section { padding: 72px 0; }
  .mft-menu-grid { grid-template-columns: 1fr; }
  .mft-menu-card { min-height: 0; }
  .mft-schedule-row { grid-template-columns: 1fr; gap: 4px; padding: 18px 20px; }
  .mft-schedule-row time { margin-top: 2px; }
  .mft-catering { grid-template-columns: 1fr; text-align: left; }
  .mft-catering__icon { width: 66px; height: 66px; font-size: 36px; }
  .mft-catering .mft-button { grid-column: auto; width: 100%; }
  .mft-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .mft-footer__grid > div:first-child { grid-column: auto; }
  .mft-footer__bottom { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mft-site *, .mft-site *::before, .mft-site *::after { scroll-behavior: auto !important; transition: none !important; }
}
