@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #241f1a;
  --espresso: #3a2a22;
  --cream: #f8f2e9;
  --sand: #eadbc7;
  --terracotta: #b96343;
  --olive: #747452;
  --brass: #b28b51;
  --white: #fffdf9;
  --muted: rgba(36, 31, 26, 0.66);
  --border: rgba(36, 31, 26, 0.13);
  --shadow: 0 24px 70px rgba(58, 42, 34, 0.12);
  --radius: 28px;
  --max: 1240px;
  --peace-ivory: #f7f1e8;
  --peace-ivory-light: #fcf9f3;
  --peace-ivory-dark: #eee3d4;
  --peace-espresso: #2a1e18;
  --peace-espresso-soft: #3d2b23;
  --peace-navy: #17354b;
  --peace-gold: #bb8c3e;
  --peace-gold-dark: #9f7129;
  --peace-gold-light: #d8b574;
  --peace-text: #2c241f;
  --peace-muted: #6f675f;
  --peace-border: rgba(76, 54, 37, 0.14);
  --peace-card: rgba(255, 252, 247, 0.92);
  --peace-shadow: 0 24px 70px rgba(62, 41, 23, 0.12), 0 6px 24px rgba(62, 41, 23, 0.07);
  --peace-radius-pill: 999px;
  --peace-container: 1500px;
  --peace-header-height: 156px;
  --peace-font-display: "Cormorant Garamond", Georgia, serif;
  --peace-font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--peace-text);
  background: var(--peace-ivory);
  font-family: var(--peace-font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { position: relative; padding: clamp(64px, 8vw, 120px) 0; }
.tight { padding: clamp(42px, 6vw, 76px) 0; }

.peace-container {
  width: min(calc(100% - 72px), var(--peace-container));
  margin-inline: auto;
}

.peace-announcement {
  min-height: 36px;
  color: #fffaf1;
  background: #1f1511;
}

.peace-announcement__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.peace-announcement p {
  margin: 0;
  color: #fffaf1 !important;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
}

.peace-announcement strong,
.peace-announcement__sparkle {
  color: #f1c875 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.38);
}

.peace-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--peace-header-height);
  background: rgba(250, 246, 239, 0.97);
  border-bottom: 1px solid var(--peace-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.peace-header__inner {
  min-height: var(--peace-header-height);
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(540px, 1fr) auto;
  align-items: center;
  gap: 38px;
}

.peace-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.peace-logo img {
  width: clamp(220px, 17vw, 285px);
  height: auto;
  object-fit: contain;
}

.peace-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.25vw, 44px);
}

.peace-nav__link {
  position: relative;
  padding-block: 13px;
  color: #4d453f;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.peace-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--peace-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.peace-nav__link:hover,
.peace-nav__link:focus-visible,
.peace-nav__link.is-active {
  color: var(--peace-gold-dark);
}

.peace-nav__link:hover::after,
.peace-nav__link:focus-visible::after,
.peace-nav__link.is-active::after {
  transform: scaleX(1);
}

.peace-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.peace-location-switcher {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(159, 113, 41, 0.3);
  border-radius: var(--peace-radius-pill);
  background: rgba(255, 252, 247, 0.75);
}

.peace-location-switcher__item,
.peace-mobile-menu__locations button {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 0;
  border-radius: var(--peace-radius-pill);
  color: #3f3731;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.peace-location-switcher__item:hover,
.peace-location-switcher__item:focus-visible {
  color: var(--peace-gold-dark);
}

.peace-location-switcher__item.is-active,
.peace-mobile-menu__locations button.is-active {
  color: #fff;
  background: var(--peace-gold);
  box-shadow: 0 6px 18px rgba(159, 113, 41, 0.22);
}

.peace-header__divider {
  width: 1px;
  height: 38px;
  background: var(--peace-border);
}

.peace-order-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px 0 26px;
  color: #fff;
  background: var(--peace-espresso);
  border: 1px solid var(--peace-espresso);
  border-radius: var(--peace-radius-pill);
  box-shadow: 0 0 0 4px var(--peace-ivory-light), 0 0 0 5px rgba(42, 30, 24, 0.75);
  font-family: var(--peace-font-display);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.peace-order-button:hover,
.peace-order-button:focus-visible {
  background: var(--peace-espresso-soft);
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px var(--peace-ivory-light), 0 0 0 5px rgba(42, 30, 24, 0.75), 0 12px 30px rgba(42, 30, 24, 0.16);
}

.peace-order-button__icon {
  width: 21px;
  height: 21px;
  color: var(--peace-gold-light);
}

[data-order-paused] {
  position: relative;
}

[data-order-paused].is-order-paused,
.is-order-paused {
  color: rgba(42, 30, 24, 0.66) !important;
  background: rgba(228, 220, 208, 0.92) !important;
  border-color: rgba(76, 54, 37, 0.2) !important;
  box-shadow: none !important;
  filter: grayscale(0.65);
  cursor: help;
}

[data-order-paused].is-order-paused:hover,
[data-order-paused].is-order-paused:focus-visible,
.is-order-paused:hover,
.is-order-paused:focus-visible {
  color: var(--peace-navy) !important;
  background: rgba(255, 252, 247, 0.96) !important;
  transform: translateY(-1px);
}

body:not(.order-popover-enabled) [data-order-paused]::after {
  content: "Online ordering is temporarily unavailable. Click here to browse our full menu.";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 80;
  width: min(275px, 82vw);
  padding: 12px 14px;
  border: 1px solid rgba(187, 140, 62, 0.38);
  border-radius: 16px;
  color: var(--peace-text);
  background: rgba(255, 252, 247, 0.98);
  box-shadow: 0 18px 42px rgba(62, 41, 23, 0.16);
  font-family: var(--peace-font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

body:not(.order-popover-enabled) [data-order-paused]:hover::after,
body:not(.order-popover-enabled) [data-order-paused]:focus-visible::after,
body:not(.order-popover-enabled) [data-order-paused]:active::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.order-paused-popover {
  position: fixed;
  z-index: 1000;
  width: min(315px, calc(100vw - 24px));
  padding: 13px 15px;
  border: 1px solid rgba(187, 140, 62, 0.42);
  border-radius: 16px;
  color: var(--peace-text);
  background: rgba(255, 252, 247, 0.98);
  box-shadow: 0 18px 42px rgba(62, 41, 23, 0.18);
  font-family: var(--peace-font-body);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.order-paused-popover.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.order-paused-popover a {
  color: var(--peace-navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.peace-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--peace-border);
  border-radius: 50%;
  color: var(--peace-espresso);
  background: var(--peace-ivory-light);
  cursor: pointer;
}

.peace-menu-toggle span {
  width: 18px;
  height: 1.5px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.peace-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.peace-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.peace-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.peace-mobile-menu {
  border-top: 1px solid var(--peace-border);
  background: var(--peace-ivory-light);
}

.peace-mobile-menu__nav {
  display: grid;
}

.peace-mobile-menu__nav a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--peace-border);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.peace-mobile-menu__locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px 20px 22px;
}

.peace-hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 77% 40%, rgba(255, 255, 255, 0.72), transparent 34%), var(--peace-ivory);
}

.peace-hero__grid {
  position: relative;
  z-index: 3;
  min-height: 800px;
  display: grid;
  grid-template-columns: minmax(470px, 0.92fr) minmax(620px, 1.08fr);
  align-items: center;
  gap: clamp(55px, 6vw, 110px);
  padding-top: 84px;
  padding-bottom: 88px;
}

.peace-hero__decor,
.peace-hero__decor > * {
  pointer-events: none;
}

.peace-hero__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.peace-hero__pattern {
  position: absolute;
  color: rgba(187, 140, 62, 0.24);
}

.peace-hero__pattern--center {
  top: -82px;
  left: 43%;
  width: 520px;
  height: 520px;
  transform: rotate(11deg);
  opacity: 0.82;
  mask-image: linear-gradient(to bottom right, #000, transparent 76%);
  -webkit-mask-image: linear-gradient(to bottom right, #000, transparent 76%);
}

.peace-hero__pattern--flower {
  top: 28px;
  right: 2.6%;
  width: 150px;
  height: 150px;
  color: rgba(187, 140, 62, 0.34);
}

.peace-hero__pattern--corner {
  bottom: -85px;
  left: -72px;
  width: 300px;
  height: 300px;
  color: rgba(187, 140, 62, 0.32);
}

.peace-hero__background-arch {
  position: absolute;
  top: -150px;
  right: 7%;
  width: 710px;
  height: 960px;
  border: 1px solid rgba(187, 140, 62, 0.26);
  border-radius: 48% 48% 8% 8% / 32% 32% 6% 6%;
  transform: rotate(9deg);
  opacity: 0.9;
}

.peace-hero__background-arch::before,
.peace-hero__background-arch::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(187, 140, 62, 0.16);
  border-radius: inherit;
}

.peace-hero__background-arch::before { inset: 35px; }
.peace-hero__background-arch::after { inset: 72px; }

.peace-hero__content {
  position: relative;
  z-index: 4;
  max-width: 690px;
}

.peace-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--peace-gold-dark);
  font-family: var(--peace-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.peace-eyebrow__line {
  width: 62px;
  height: 1px;
  background: rgba(159, 113, 41, 0.6);
}

.peace-eyebrow__diamond {
  font-family: Georgia, serif;
  font-size: 8px;
}

.peace-hero__heading {
  margin: 0;
  color: var(--peace-espresso);
  font-family: var(--peace-font-display);
  font-size: clamp(64px, 5.15vw, 88px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.01em;
}

.peace-hero__heading span,
.peace-hero__heading em {
  display: block;
}

.peace-hero__heading em {
  margin-top: 9px;
  color: var(--peace-gold);
  font-weight: 500;
  line-height: 0.96;
}

.peace-ornament-divider {
  width: min(430px, 100%);
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  align-items: center;
  gap: 14px;
  margin: 35px 0 24px;
  color: var(--peace-gold);
}

.peace-ornament-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(187, 140, 62, 0.5));
}

.peace-ornament-divider span:last-child {
  background: linear-gradient(90deg, rgba(187, 140, 62, 0.5), transparent);
}

.peace-ornament-divider svg {
  width: 25px;
  height: 25px;
}

.peace-hero__description {
  max-width: 585px;
  margin: 0;
  color: var(--peace-muted);
  font-size: 16px;
  line-height: 1.8;
}

.peace-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.peace-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--peace-radius-pill);
  font-family: var(--peace-font-display);
  font-size: 17px;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.peace-button svg {
  width: 22px;
  height: 22px;
  transition: transform 180ms ease;
}

.peace-button:hover,
.peace-button:focus-visible {
  transform: translateY(-2px);
}

.peace-button:hover svg,
.peace-button:focus-visible svg {
  transform: translateX(4px);
}

.peace-button--primary {
  min-width: 235px;
  color: #fff;
  background: var(--peace-espresso);
  box-shadow: 0 12px 32px rgba(42, 30, 24, 0.14);
}

.peace-button--primary:hover,
.peace-button--primary:focus-visible {
  background: var(--peace-espresso-soft);
  box-shadow: 0 16px 38px rgba(42, 30, 24, 0.19);
}

.peace-button--secondary {
  min-width: 240px;
  color: var(--peace-espresso);
  background: rgba(255, 252, 247, 0.5);
  border-color: var(--peace-gold);
}

.peace-button--secondary:hover,
.peace-button--secondary:focus-visible {
  color: #fff;
  background: var(--peace-gold);
}

.peace-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.peace-feature {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  color: #625950;
  background: rgba(255, 252, 247, 0.62);
  border: 1px solid var(--peace-border);
  border-radius: var(--peace-radius-pill);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(56, 35, 20, 0.025);
}

.peace-feature svg {
  width: 19px;
  height: 19px;
  color: var(--peace-gold);
}

.peace-hero__visual {
  position: relative;
  min-width: 0;
}

.peace-hero__visual::before,
.peace-hero__visual::after {
  position: absolute;
  z-index: 7;
  color: var(--peace-gold);
  pointer-events: none;
}

.peace-hero__visual::before {
  content: "✦";
  top: 86px;
  right: 28px;
  font-size: 30px;
  opacity: 0.85;
}

.peace-hero__visual::after {
  content: "✧";
  top: 150px;
  right: -10px;
  font-size: 22px;
  opacity: 0.75;
}

.peace-arch-stage {
  position: relative;
  width: min(100%, 860px);
  min-height: 700px;
  margin-left: auto;
}

.peace-arch-stage__outline {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(187, 140, 62, 0.42);
  border-radius: 40px;
}

.peace-arch-stage__outline::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(187, 140, 62, 0.2);
  border-radius: inherit;
}

.peace-arch-frame {
  position: absolute;
  top: 36px;
  right: 28px;
  left: 28px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1f1712;
  border: 3px solid rgba(187, 140, 62, 0.86);
  border-radius: 34px;
  box-shadow: var(--peace-shadow);
}

.peace-arch-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255, 246, 226, 0.52);
  border-radius: 24px;
}

.peace-arch-frame::after {
  content: none;
}

.peace-arch-frame__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #17110d;
  transform: none;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.peace-arch-stage:hover .peace-arch-frame__media {
  transform: none;
}

.peace-arch-frame__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(31, 21, 16, 0.16), transparent 42%), linear-gradient(to right, rgba(43, 26, 15, 0.06), transparent 40%);
}

.peace-video-sound-button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 15px 9px 12px;
  border: 1px solid rgba(255, 246, 226, 0.56);
  border-radius: 999px;
  color: #fff8e9;
  background: rgba(38, 25, 16, 0.72);
  box-shadow: 0 14px 30px rgba(25, 16, 10, 0.22);
  cursor: pointer;
  font-family: var(--peace-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.peace-video-sound-button svg {
  width: 18px;
  height: 18px;
  color: var(--peace-gold);
}

.peace-video-sound-button.is-active {
  color: var(--peace-ink);
  background: rgba(255, 248, 235, 0.9);
}

.peace-floating-card {
  position: absolute;
  z-index: 8;
  color: var(--peace-text);
  background: rgba(255, 252, 247, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 24px 65px rgba(50, 34, 21, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  animation: peace-card-enter 800ms 250ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.peace-floating-card--night {
  left: 42px;
  bottom: 34px;
  width: 250px;
  min-height: 148px;
  padding: 21px 23px;
}

.peace-floating-card--coffee {
  right: 42px;
  bottom: 34px;
  width: 285px;
  min-height: 148px;
  padding: 21px 23px;
  overflow: hidden;
  animation-delay: 430ms;
}

.peace-floating-card__icon {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--peace-gold);
}

.peace-floating-card--night .peace-floating-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  color: var(--peace-gold);
}

.peace-floating-card__icon svg {
  width: 34px;
  height: 34px;
}

.peace-floating-card--night .peace-floating-card__icon svg {
  width: 46px;
  height: 46px;
}

.peace-floating-card__icon.is-circle {
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--peace-gold);
  border-radius: 50%;
}

.peace-floating-card__icon.is-circle svg {
  width: 25px;
  height: 25px;
}

.peace-floating-card__label {
  margin: 0 0 3px;
  font-family: var(--peace-font-display);
  font-size: 18px;
  line-height: 1;
}

.peace-floating-card h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--peace-font-display);
  font-size: 31px;
  font-weight: 600;
  line-height: 0.92;
}

.peace-floating-card--coffee h2 {
  font-size: 27px;
  line-height: 1;
}

.peace-floating-card__body {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  color: var(--peace-muted);
  font-size: 13px;
  line-height: 1.65;
}

.peace-floating-card__body strong {
  color: var(--peace-gold-dark);
  font-weight: 700;
}

.peace-floating-card__botanical {
  position: absolute;
  right: -36px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  color: rgba(187, 140, 62, 0.28);
}

@keyframes peace-card-enter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.peace-hero__bottom-curve {
  position: absolute;
  z-index: 2;
  right: -7%;
  bottom: -92px;
  left: -7%;
  height: 170px;
  background: var(--peace-ivory-light);
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
  border-top: 1px solid rgba(159, 113, 41, 0.14);
}

@media (max-width: 1320px) {
  :root { --peace-header-height: 130px; }
  .peace-container { width: min(calc(100% - 48px), var(--peace-container)); }
  .peace-header__inner { grid-template-columns: 220px minmax(470px, 1fr) auto; gap: 22px; }
  .peace-logo img { width: 210px; }
  .peace-nav { gap: 23px; }
  .peace-nav__link { font-size: 13px; }
  .peace-location-switcher__item { padding-inline: 15px; }
  .peace-order-button { min-height: 49px; padding-inline: 20px; }
  .peace-order-button__icon { display: none; }
  .peace-hero__grid { grid-template-columns: minmax(430px, 0.9fr) minmax(570px, 1.1fr); gap: 45px; }
  .peace-arch-stage { min-height: 660px; }
  .peace-floating-card--night { left: 30px; width: 220px; }
  .peace-floating-card--coffee { right: 30px; width: 245px; }
}

@media (max-width: 1100px) {
  .peace-header__inner { grid-template-columns: 210px 1fr auto; }
  .peace-nav { display: none; }
  .peace-header__actions { grid-column: 3; }
  .peace-menu-toggle { display: block; }
  .peace-header__divider { display: none; }
  .peace-hero { min-height: auto; }
  .peace-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding-top: 70px;
    padding-bottom: 110px;
  }
  .peace-eyebrow { font-size: 11px; }
  .peace-eyebrow__line { width: 35px; }
  .peace-hero__heading { font-size: clamp(52px, 6vw, 68px); }
  .peace-hero__description { font-size: 14px; }
  .peace-arch-stage { min-height: 630px; }
  .peace-arch-frame { top: 40px; right: 18px; left: 18px; }
  .peace-arch-stage__outline { right: 12px; left: 12px; }
  .peace-floating-card--night { left: 28px; bottom: 30px; width: 190px; min-height: 140px; padding: 18px; }
  .peace-floating-card--coffee { right: 28px; bottom: 30px; width: 210px; min-height: 140px; padding: 18px; }
  .peace-floating-card h2 { font-size: 25px; }
  .peace-floating-card--coffee h2 { font-size: 22px; }
}

@media (max-width: 860px) {
  :root { --peace-header-height: 98px; }
  .peace-container { width: min(calc(100% - 36px), var(--peace-container)); }
  .peace-announcement p { font-size: 11px; }
  .peace-header__inner { grid-template-columns: minmax(150px, 1fr) auto; }
  .peace-logo img { width: 190px; }
  .peace-header__actions { grid-column: auto; }
  .peace-location-switcher { display: none; }
  .peace-order-button { min-height: 45px; padding-inline: 18px; font-size: 14px; box-shadow: none; }
  .peace-hero__grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 65px;
    padding-bottom: 145px;
  }
  .peace-hero__content {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }
  .peace-eyebrow,
  .peace-hero__buttons,
  .peace-feature-list { justify-content: center; }
  .peace-hero__heading { font-size: clamp(58px, 10vw, 82px); }
  .peace-ornament-divider,
  .peace-hero__description { margin-inline: auto; }
  .peace-hero__visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }
  .peace-arch-stage { min-height: 640px; }
  .peace-arch-frame { top: 40px; right: 14px; left: 14px; }
  .peace-arch-stage__outline { right: 10px; left: 10px; }
  .peace-floating-card--night { left: 24px; right: auto; }
  .peace-floating-card--coffee { right: 24px; }
  .peace-hero__pattern--center { top: 27%; left: 30%; }
  .peace-hero__pattern--flower { top: 45%; }
}

@media (max-width: 560px) {
  :root { --peace-header-height: 82px; }
  .peace-container { width: min(calc(100% - 28px), var(--peace-container)); }
  .peace-announcement__inner { gap: 6px; }
  .peace-announcement p { max-width: 310px; font-size: 10px; }
  .peace-logo img { width: 145px; }
  .peace-order-button { display: none; }
  .peace-header__actions { gap: 8px; }
  .peace-menu-toggle { display: block; }
  .peace-hero__grid { gap: 45px; padding-top: 46px; padding-bottom: 115px; }
  .peace-eyebrow { gap: 7px; margin-bottom: 21px; font-size: 9px; letter-spacing: 0.11em; }
  .peace-eyebrow__line { width: 22px; }
  .peace-eyebrow__diamond { display: none; }
  .peace-hero__heading { font-size: clamp(48px, 15vw, 65px); line-height: 0.92; }
  .peace-hero__heading em { margin-top: 8px; }
  .peace-ornament-divider { width: 240px; margin-top: 28px; margin-bottom: 20px; }
  .peace-hero__description { max-width: 390px; font-size: 13px; line-height: 1.7; }
  .peace-hero__buttons { width: 100%; display: grid; gap: 12px; margin-top: 25px; }
  .peace-button { width: 100%; min-width: 0; min-height: 54px; }
  .peace-feature-list { gap: 7px; margin-top: 20px; }
  .peace-feature { min-height: 38px; padding-inline: 11px; font-size: 10px; }
  .peace-feature svg { width: 16px; height: 16px; }
  .peace-arch-stage { min-height: 610px; }
  .peace-arch-frame { top: 36px; right: 0; left: 0; }
  .peace-arch-stage__outline { top: 8px; right: -10px; left: -10px; bottom: 22px; }
  .peace-floating-card { border-radius: 18px; }
  .peace-floating-card--night { top: auto; right: auto; bottom: 22px; left: 0; width: calc(50% - 8px); min-height: 132px; padding: 14px; }
  .peace-floating-card--coffee { right: 0; bottom: 22px; width: calc(50% - 8px); min-height: 132px; padding: 15px; }
  .peace-floating-card__icon { width: 28px; height: 28px; margin-bottom: 10px; }
  .peace-floating-card__icon svg { width: 26px; height: 26px; }
  .peace-floating-card--night .peace-floating-card__icon { width: 36px; height: 36px; }
  .peace-floating-card--night .peace-floating-card__icon svg { width: 34px; height: 34px; }
  .peace-floating-card__icon.is-circle { width: 32px; height: 32px; }
  .peace-floating-card__icon.is-circle svg { width: 20px; height: 20px; }
  .peace-floating-card h2 { font-size: 20px; }
  .peace-floating-card--coffee h2 { font-size: 18px; }
  .peace-floating-card__label { font-size: 13px; }
  .peace-floating-card__body { margin-top: 10px; font-size: 10px; line-height: 1.5; }
  .peace-floating-card__botanical { width: 100px; height: 100px; }
  .peace-video-sound-button { right: 14px; bottom: 14px; min-height: 36px; padding: 8px 12px 8px 10px; font-size: 10px; }
  .peace-video-sound-button svg { width: 16px; height: 16px; }
  .peace-hero__pattern--flower { width: 90px; height: 90px; }
  .peace-hero__pattern--center { width: 340px; height: 340px; opacity: 0.46; }
  .peace-hero__background-arch { right: -50%; width: 550px; opacity: 0.62; }
  .peace-hero__visual::before { top: 35px; right: 8px; font-size: 22px; }
  .peace-hero__visual::after { top: 86px; right: -2px; font-size: 17px; }
}

@media (max-width: 390px) {
  .peace-hero__heading { font-size: 45px; }
  .peace-feature-list { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .peace-feature { justify-content: center; }
  .peace-arch-stage { min-height: 585px; }
  .peace-floating-card--night,
  .peace-floating-card--coffee { width: calc(50% - 7px); }
}

.peace-story {
  --peace-story-ivory: #f7f1e8;
  --peace-story-ivory-light: #fcf9f4;
  --peace-story-espresso: #2b211b;
  --peace-story-gold: #b98a42;
  --peace-story-gold-dark: #9b6f30;
  --peace-story-navy: #17344e;
  --peace-story-muted: #675f58;
  --peace-story-border: rgba(75, 52, 35, 0.14);
  --peace-story-font-display: "Cormorant Garamond", Georgia, serif;
  --peace-story-font-body: "Inter", Arial, sans-serif;
  position: relative;
  z-index: 2;
  isolation: isolate;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: clamp(100px, 10vw, 170px) 0 clamp(90px, 9vw, 145px);
  overflow: hidden;
  color: var(--peace-story-espresso);
  background: var(--peace-story-ivory);
  opacity: 1;
  visibility: visible;
  transform: none;
}

@supports (overflow: clip) {
  .peace-story { overflow: clip; }
}

.peace-story *,
.peace-story *::before,
.peace-story *::after {
  box-sizing: border-box;
}

.peace-story img,
.peace-story svg {
  display: block;
}

.peace-story__container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 72px), 1500px);
  margin-inline: auto;
}

.peace-story__main {
  display: grid;
  grid-template-columns: minmax(520px, 0.96fr) minmax(520px, 1.04fr);
  align-items: center;
  gap: clamp(70px, 8vw, 135px);
}

.peace-story__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.peace-story__corner-pattern {
  position: absolute;
  color: rgba(185, 138, 66, 0.12);
}

.peace-story__corner-pattern--left {
  top: -95px;
  left: -98px;
  width: 300px;
  height: 300px;
}

.peace-story__corner-pattern--right {
  right: -70px;
  bottom: -25px;
  width: 340px;
  height: 340px;
}

.peace-story__visual {
  position: relative;
  width: 100%;
  min-height: 690px;
}

.peace-story__photo-outline {
  position: absolute;
  z-index: 0;
  top: 45px;
  left: 46px;
  width: min(70%, 500px);
  height: 590px;
  border: 1px solid rgba(185, 138, 66, 0.65);
  border-radius: 32px;
  transform: translate(32px, 28px);
}

.peace-story__primary-photo {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: min(70%, 500px);
  height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: 36px;
  background: #d6c5ae;
  box-shadow: 0 32px 70px rgba(43, 33, 27, 0.13), 0 8px 24px rgba(43, 33, 27, 0.08);
}

.peace-story__primary-photo img,
.peace-story__secondary-photo img,
.peace-story__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.peace-story__video-card {
  cursor: pointer;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, filter 280ms ease;
}

.peace-story__video-card:not(.is-active) {
  filter: saturate(0.82) brightness(0.92);
}

.peace-story__video-card.is-active {
  border-color: rgba(185, 138, 66, 0.88);
  box-shadow: 0 36px 86px rgba(43, 33, 27, 0.22), 0 10px 30px rgba(185, 138, 66, 0.16);
}

.peace-story__video-card.is-playing {
  transform: translateY(-8px);
}

.peace-story__video {
  display: block;
  background: #211814;
}

.peace-story__video-button {
  position: absolute;
  z-index: 6;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 15px 10px 12px;
  border: 1px solid rgba(255, 248, 235, 0.56);
  border-radius: 999px;
  color: #fff8e9;
  background: rgba(39, 25, 17, 0.76);
  box-shadow: 0 14px 30px rgba(25, 16, 10, 0.22);
  cursor: pointer;
  font-family: var(--peace-story-font-body);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.peace-story__video-button-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--peace-story-espresso);
  background: var(--peace-story-gold);
}

.peace-story__video-button-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.peace-story__video-card.is-playing .peace-story__video-button-icon::before {
  width: 8px;
  height: 10px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(to right, currentColor 0 3px, transparent 3px 5px, currentColor 5px 8px);
}

.peace-story__video-card.is-playing .peace-story__video-button span:last-child {
  font-size: 0;
}

.peace-story__video-card.is-playing .peace-story__video-button span:last-child::after {
  content: "Playing";
  font-size: 11px;
}

.peace-story__pattern-tile {
  position: absolute;
  z-index: 1;
  top: 180px;
  right: 44px;
  width: 210px;
  height: 210px;
  overflow: hidden;
  color: rgba(245, 226, 190, 0.45);
  background: var(--peace-story-navy);
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(23, 52, 78, 0.18);
}

.peace-story__pattern-tile svg {
  width: 100%;
  height: 100%;
}

.peace-story__secondary-photo {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  width: min(43%, 305px);
  height: 385px;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--peace-story-ivory);
  border-radius: 30px;
  background: #493326;
  box-shadow: 0 32px 70px rgba(43, 33, 27, 0.18), 0 8px 24px rgba(43, 33, 27, 0.1);
}

.peace-story__visual:hover .peace-story__primary-photo img,
.peace-story__visual:hover .peace-story__secondary-photo img {
  transform: scale(1.04);
}

.peace-story__visual-star {
  position: absolute;
  z-index: 5;
  color: var(--peace-story-gold);
  font-family: Georgia, serif;
}

.peace-story__visual-star--one {
  left: -20px;
  bottom: 95px;
  font-size: 33px;
}

.peace-story__visual-star--two {
  top: 340px;
  right: 245px;
  font-size: 15px;
}

.peace-story__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.story-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(185, 138, 66, 0.12), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(23, 52, 78, 0.08), transparent 30%),
    var(--peace-ivory);
  color: var(--peace-text);
  overflow: hidden;
}

.story-page-hero {
  position: relative;
  padding: clamp(95px, 10vw, 155px) 0 clamp(70px, 8vw, 120px);
  isolation: isolate;
}

.story-page-hero::before,
.story-page-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  display: none;
}

.story-page-hero::before {
  width: 420px;
  height: 420px;
  top: 70px;
  right: -120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 34px rgba(185, 138, 66, 0.035);
}

.story-page-hero::after {
  width: 270px;
  height: 270px;
  left: -105px;
  bottom: 30px;
  transform: rotate(45deg);
}

.story-page-hero__decor span {
  position: absolute;
  z-index: 0;
  width: 310px;
  height: 310px;
  color: rgba(185, 138, 66, 0.15);
  background:
    linear-gradient(45deg, transparent 47%, currentColor 48% 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, currentColor 48% 52%, transparent 53%);
  background-size: 70px 70px;
  pointer-events: none;
}

.story-page-hero__decor span:first-child {
  top: 130px;
  left: 48%;
  transform: rotate(8deg);
}

.story-page-hero__decor span:last-child {
  right: 7%;
  bottom: 18%;
  width: 190px;
  height: 190px;
  opacity: 0.55;
  transform: rotate(22deg);
}

.story-page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(55px, 7vw, 110px);
}

.story-page__eyebrow {
  margin: 0 0 22px;
  color: var(--peace-gold-dark);
  font-family: var(--peace-font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-page-hero__copy h1 {
  max-width: 690px;
  margin: 0;
  color: var(--peace-espresso);
  font-family: var(--peace-font-display);
  font-size: clamp(64px, 7vw, 108px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.story-page-hero__copy p:not(.story-page__eyebrow) {
  max-width: 590px;
  margin: 30px 0 34px;
  color: var(--peace-muted);
  font-size: 18px;
  line-height: 1.75;
}

.story-page-gallery {
  display: grid;
  grid-template-columns: minmax(330px, 1.08fr) minmax(300px, 0.92fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(24px, 3vw, 38px);
  min-height: 720px;
}

.story-page-gallery__photo {
  margin: 0;
  overflow: hidden;
  color: rgba(185, 138, 66, 0.76);
  border: 1px solid rgba(185, 138, 66, 0.36);
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 28px 80px rgba(45, 31, 22, 0.12);
}

.story-page-gallery__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: transparent;
}

.story-page-gallery__photo::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(185, 138, 66, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.story-page-gallery__photo--large {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  border-radius: 42px;
}

.story-page-gallery__photo:nth-child(2) {
  width: 100%;
  aspect-ratio: 1 / 1;
  align-self: end;
  border-radius: 34px;
}

.story-page-gallery__photo:nth-child(3) {
  width: 100%;
  aspect-ratio: 1 / 1;
  align-self: start;
  border-radius: 34px;
}

.story-page-content {
  position: relative;
  padding: clamp(80px, 9vw, 135px) 0 clamp(90px, 10vw, 150px);
}

.story-page-content__shell {
  width: min(calc(100% - 72px), 1180px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(45px, 6vw, 85px);
  align-items: start;
}

.story-page-content__intro {
  position: sticky;
  top: calc(var(--peace-header-height) + 34px);
  padding: 34px;
  border: 1px solid rgba(185, 138, 66, 0.34);
  border-radius: 30px;
  background: rgba(255, 252, 247, 0.72);
  box-shadow: 0 24px 70px rgba(45, 31, 22, 0.08);
}

.story-page-content__mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 999px;
  color: #fff8e9;
  background: var(--peace-gold);
  font-size: 22px;
}

.story-page-content__intro p {
  margin: 0 0 10px;
  color: var(--peace-muted);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-page-content__intro blockquote {
  margin: 0;
  color: var(--peace-espresso);
  font-family: var(--peace-font-display);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.02;
}

.story-page-prose {
  position: relative;
  padding: clamp(38px, 5vw, 66px);
  border: 1px solid rgba(185, 138, 66, 0.28);
  border-radius: 38px;
  background: rgba(255, 252, 247, 0.76);
  box-shadow: 0 26px 80px rgba(45, 31, 22, 0.1);
}

.story-page-prose p {
  margin: 0;
  color: #4f4740;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.9;
}

.story-page-prose p + p {
  margin-top: 24px;
}

.story-page-prose__closing {
  color: var(--peace-espresso) !important;
  font-family: var(--peace-font-display);
  font-size: clamp(30px, 3.2vw, 48px) !important;
  line-height: 1.12 !important;
}

@media (max-width: 1180px) {
  .story-page-hero__grid {
    grid-template-columns: 1fr;
  }

  .story-page-gallery {
    width: min(100%, 780px);
    margin-inline: auto;
  }

  .story-page-content__shell {
    grid-template-columns: 1fr;
  }

  .story-page-content__intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .story-page-hero {
    padding-top: 72px;
  }

  .story-page-hero__copy {
    text-align: center;
  }

  .story-page-hero__copy h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .story-page-hero__copy p:not(.story-page__eyebrow),
  .story-page-hero__copy .peace-button {
    margin-inline: auto;
  }

  .story-page-gallery {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .story-page-gallery__photo,
  .story-page-gallery__photo--large,
  .story-page-gallery__photo:nth-child(2),
  .story-page-gallery__photo:nth-child(3) {
    width: 100%;
    border-radius: 24px;
  }

  .story-page-gallery__photo--large {
    grid-column: 1 / -1;
    height: 520px;
  }

  .story-page-gallery__photo:nth-child(2),
  .story-page-gallery__photo:nth-child(3) {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .story-page-content__shell {
    width: min(calc(100% - 28px), 1180px);
  }

  .story-page-content__intro,
  .story-page-prose {
    border-radius: 26px;
    padding: 26px;
  }
}

.peace-story__eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--peace-story-gold-dark);
  font-family: var(--peace-story-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.peace-story__eyebrow-star {
  font-size: 11px;
}

.peace-story__eyebrow-line {
  width: 175px;
  height: 1px;
  display: block;
  margin-top: 22px;
  background: var(--peace-story-gold);
}

.peace-story__heading {
  margin: 28px 0 0;
  color: var(--peace-story-espresso);
  font-family: var(--peace-story-font-display);
  font-size: clamp(54px, 4.55vw, 76px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.018em;
}

.peace-story__heading span {
  color: var(--peace-story-gold);
}

.peace-story__divider {
  width: 245px;
  display: grid;
  grid-template-columns: 1fr 26px 1fr;
  align-items: center;
  gap: 13px;
  margin: 34px 0 27px;
  color: var(--peace-story-gold);
}

.peace-story__divider span {
  height: 1px;
  background: rgba(185, 138, 66, 0.58);
}

.peace-story__divider svg {
  width: 22px;
  height: 22px;
}

.peace-story__description {
  max-width: 650px;
  margin: 0;
  color: var(--peace-story-muted);
  font-family: var(--peace-story-font-body);
  font-size: 16px;
  line-height: 1.78;
}

.peace-story__actions {
  display: flex;
  margin-top: 28px;
}

.peace-story__actions .peace-button {
  min-width: 220px;
}

.peace-story__features {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.peace-story__feature {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  color: #514943;
  background: rgba(252, 249, 244, 0.78);
  border: 1px solid var(--peace-story-border);
  border-radius: 999px;
  font-family: var(--peace-story-font-body);
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 5px 18px rgba(43, 33, 27, 0.025);
}

.peace-story__feature svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--peace-story-gold-dark);
}

.peace-story__stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: stretch;
  margin-top: clamp(75px, 7vw, 112px);
  padding: 15px;
  border: 1px solid rgba(185, 138, 66, 0.4);
  background: rgba(252, 249, 244, 0.72);
  box-shadow: 0 22px 60px rgba(43, 33, 27, 0.06);
}

.peace-story__stats::before,
.peace-story__stats::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--peace-story-gold);
  border-style: solid;
  pointer-events: none;
}

.peace-story__stats::before {
  top: 7px;
  left: 7px;
  border-width: 1px 0 0 1px;
}

.peace-story__stats::after {
  right: 7px;
  bottom: 7px;
  border-width: 0 1px 1px 0;
}

.peace-story__stat {
  min-height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px 28px;
}

.peace-story__stat-icon {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--peace-story-gold);
  background: var(--peace-story-navy);
  border: 3px solid var(--peace-story-ivory-light);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--peace-story-gold), 0 12px 30px rgba(23, 52, 78, 0.14);
}

.peace-story__stat-icon svg {
  width: 34px;
  height: 34px;
}

.peace-story__stat-copy {
  min-width: 0;
}

.peace-story__stat-copy strong {
  display: block;
  color: var(--peace-story-espresso);
  font-family: var(--peace-story-font-display);
  font-size: clamp(44px, 4vw, 62px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.02em;
}

.peace-story__stat-copy span {
  display: block;
  margin-top: 15px;
  color: var(--peace-story-muted);
  font-family: var(--peace-story-font-body);
  font-size: 13px;
  line-height: 1.4;
}

.peace-story__stat-separator {
  position: relative;
  width: 1px;
  display: block;
  align-self: center;
  height: 92px;
  background: rgba(185, 138, 66, 0.35);
}

.peace-story__stat-separator i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  display: block;
  background: var(--peace-story-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 1250px) {
  .peace-story__container { width: min(calc(100% - 48px), 1500px); }
  .peace-story__main { grid-template-columns: minmax(450px, 0.9fr) minmax(470px, 1.1fr); gap: 60px; }
  .peace-story__visual { min-height: 620px; }
  .peace-story__primary-photo { height: 550px; }
  .peace-story__photo-outline { height: 530px; }
  .peace-story__secondary-photo { height: 330px; }
  .peace-story__pattern-tile { width: 175px; height: 175px; }
  .peace-story__heading { font-size: clamp(51px, 4.7vw, 66px); }
  .peace-story__stat { gap: 20px; padding-inline: 18px; }
  .peace-story__stat-icon { width: 65px; height: 65px; }
}

@media (max-width: 960px) {
  .peace-story { padding-top: 105px; }
  .peace-story__main { grid-template-columns: minmax(350px, 0.9fr) minmax(400px, 1.1fr); gap: 42px; }
  .peace-story__visual { min-height: 535px; }
  .peace-story__primary-photo { width: 76%; height: 475px; border-radius: 28px; }
  .peace-story__photo-outline { width: 76%; height: 455px; }
  .peace-story__pattern-tile { top: 150px; right: 10px; width: 145px; height: 145px; }
  .peace-story__secondary-photo { width: 46%; height: 280px; border-width: 6px; border-radius: 24px; }
  .peace-story__heading { font-size: 48px; }
  .peace-story__description { font-size: 14px; }
  .peace-story__stats { grid-template-columns: 1fr; gap: 0; padding: 12px 22px; }
  .peace-story__stat { min-height: 120px; justify-content: flex-start; }
  .peace-story__stat-separator { width: 100%; height: 1px; background: rgba(185, 138, 66, 0.28); }
  .peace-story__stat-separator i { width: 8px; height: 8px; }
}

@media (max-width: 760px) {
  .peace-story { padding: 82px 0 90px; }
  .peace-story__container { width: min(calc(100% - 32px), 1500px); }
  .peace-story__main { display: flex; flex-direction: column; gap: 58px; }
  .peace-story__content { order: 1; width: 100%; text-align: center; }
  .peace-story__visual { order: 2; width: min(100%, 580px); min-height: 620px; margin-inline: auto; }
  .peace-story__eyebrow { justify-content: center; font-size: 11px; }
  .peace-story__eyebrow-line,
  .peace-story__heading,
  .peace-story__divider,
  .peace-story__description { margin-inline: auto; }
  .peace-story__heading { max-width: 630px; font-size: clamp(44px, 11vw, 62px); }
  .peace-story__features { justify-content: center; }
  .peace-story__primary-photo { width: 76%; height: 540px; }
  .peace-story__photo-outline { width: 76%; height: 520px; }
  .peace-story__pattern-tile { top: 150px; right: 26px; width: 180px; height: 180px; }
  .peace-story__secondary-photo { right: 0; width: 47%; height: 320px; }
  .peace-story__stats { margin-top: 75px; }
}

@media (max-width: 520px) {
  .peace-story { padding-top: 68px; }
  .peace-story__container { width: min(calc(100% - 24px), 1500px); }
  .peace-story__eyebrow { gap: 9px; letter-spacing: 0.15em; }
  .peace-story__eyebrow-line { width: 130px; }
  .peace-story__heading { font-size: clamp(39px, 12vw, 52px); line-height: 0.97; }
  .peace-story__description { font-size: 13px; line-height: 1.7; }
  .peace-story__features { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .peace-story__feature { justify-content: center; min-height: 45px; padding-inline: 9px; font-size: 10px; }
  .peace-story__visual { min-height: 500px; }
  .peace-story__primary-photo { left: 0; width: 78%; height: 430px; border-radius: 24px; }
  .peace-story__photo-outline { top: 22px; left: 18px; width: 78%; height: 412px; border-radius: 22px; transform: translate(17px, 17px); }
  .peace-story__pattern-tile { top: 128px; right: 5px; width: 128px; height: 128px; border-radius: 16px; }
  .peace-story__secondary-photo { right: 0; width: 47%; height: 250px; border-width: 5px; border-radius: 20px; }
  .peace-story__visual-star--one { left: -4px; bottom: 54px; font-size: 23px; }
  .peace-story__visual-star--two { display: none; }
  .peace-story__stats { margin-top: 58px; padding-inline: 12px; }
  .peace-story__stat { min-height: 112px; gap: 18px; padding: 18px 12px; }
  .peace-story__stat-icon { width: 58px; height: 58px; }
  .peace-story__stat-icon svg { width: 27px; height: 27px; }
  .peace-story__stat-copy strong { font-size: 43px; }
  .peace-story__stat-copy span { margin-top: 9px; font-size: 11px; }
}

/* =========================================================
   PEACE MENU SHOWCASE
   All selectors are fully namespaced.
   ========================================================= */

.peace-menu-showcase {
  --pms-ivory: #f7f1e8;
  --pms-card: #fcf9f4;
  --pms-espresso: #2a1f19;
  --pms-muted: #71675f;
  --pms-gold: #b88940;
  --pms-gold-dark: #986a2d;
  --pms-navy: #18334b;
  --pms-border: rgba(77, 54, 37, 0.14);
  --pms-gold-border: rgba(184, 137, 64, 0.38);
  --pms-display: "Cormorant Garamond", Georgia, serif;
  --pms-body: "Inter", Arial, sans-serif;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: clamp(95px, 9vw, 155px) 0 clamp(90px, 8vw, 140px);
  overflow: hidden;
  color: var(--pms-espresso);
  background: var(--pms-ivory);
  opacity: 1;
  visibility: visible;
  transform: none;
}

.peace-menu-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 34%, rgba(184, 137, 64, 0.15), transparent 24%),
    radial-gradient(circle at 76% 44%, rgba(184, 137, 64, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.45), transparent 42%);
  opacity: 0.9;
}

.peace-menu-showcase::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: clamp(34px, 5vw, 78px);
  z-index: 0;
  width: min(34vw, 470px);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(184, 137, 64, 0.45), transparent);
}

@supports (overflow: clip) {
  .peace-menu-showcase { overflow: clip; }
}

.peace-menu-showcase *,
.peace-menu-showcase *::before,
.peace-menu-showcase *::after { box-sizing: border-box; }

.peace-menu-showcase img,
.peace-menu-showcase svg { display: block; }

.peace-menu-showcase a {
  color: inherit;
  text-decoration: none;
}

.peace-menu-showcase__container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 72px), 1500px);
  margin-inline: auto;
}

.peace-menu-showcase__decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.peace-menu-showcase__pattern {
  position: absolute;
  color: rgba(184, 137, 64, 0.13);
}

.peace-menu-showcase__pattern--top {
  top: -72px;
  right: -66px;
  width: 330px;
  height: 330px;
}

.peace-menu-showcase__pattern--bottom {
  bottom: -105px;
  left: -90px;
  width: 310px;
  height: 310px;
}

.peace-menu-showcase__motif {
  position: absolute;
  color: var(--pms-gold);
  pointer-events: none;
}

.peace-menu-showcase__motif--arabesque {
  left: max(-88px, -4vw);
  top: clamp(190px, 18vw, 305px);
  width: min(28vw, 390px);
  height: auto;
  opacity: 0.28;
  transform: rotate(-3deg);
}

.peace-menu-showcase__motif--arch {
  left: 50%;
  top: clamp(88px, 9vw, 146px);
  width: min(42vw, 610px);
  height: auto;
  opacity: 0.13;
  transform: translateX(-24%);
}

.peace-menu-showcase__motif--zellige {
  right: max(-78px, -3vw);
  top: clamp(62px, 7vw, 115px);
  width: min(34vw, 500px);
  height: auto;
  color: var(--pms-navy);
  opacity: 0.15;
  transform: rotate(5deg);
  mask-image: radial-gradient(circle at 50% 50%, #000 0 62%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 62%, transparent 88%);
}

.peace-menu-showcase__motif-line {
  stroke-width: 2.4;
}

.peace-menu-showcase__motif-leaf {
  stroke-width: 1.8;
}

.peace-menu-showcase__layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.29fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(45px, 5vw, 80px);
}

.peace-menu-showcase__intro { padding-top: 3px; }

.peace-menu-showcase__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pms-gold-dark);
}

.peace-menu-showcase__eyebrow span {
  width: 25px;
  height: 1px;
  background: var(--pms-gold);
}

.peace-menu-showcase__eyebrow p {
  margin: 0;
  font-family: var(--pms-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.peace-menu-showcase__heading {
  margin: 39px 0 0;
  font-family: var(--pms-display);
  font-size: clamp(58px, 5.2vw, 82px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.peace-menu-showcase__heading span,
.peace-menu-showcase__heading em { display: block; }

.peace-menu-showcase__heading em {
  margin-top: 15px;
  color: var(--pms-gold);
  font-weight: 500;
}

.peace-menu-showcase__description {
  max-width: 400px;
  margin: 36px 0 0;
  color: var(--pms-muted);
  font-family: var(--pms-body);
  font-size: 16px;
  line-height: 1.72;
}

.peace-menu-showcase__intro-action {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.peace-menu-showcase__menu-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 24px 0 30px;
  color: #fffaf1 !important;
  background: var(--pms-espresso);
  border: 1px solid var(--pms-espresso);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(42, 31, 25, 0.14);
  font-family: var(--pms-body);
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.peace-menu-showcase__menu-button span {
  color: #fffaf1 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.36);
}

.peace-menu-showcase__menu-button svg {
  width: 22px;
  height: 22px;
  color: #f1c875 !important;
  transition: transform 180ms ease;
}

.peace-menu-showcase__menu-button:hover,
.peace-menu-showcase__menu-button:focus-visible {
  background: #3b2b22;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(42, 31, 25, 0.2);
}

.peace-menu-showcase__menu-button:hover svg,
.peace-menu-showcase__menu-button:focus-visible svg { transform: translateX(4px); }

.peace-menu-showcase__top-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.peace-menu-showcase__card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--pms-card);
  border: 1px solid var(--pms-border);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(53, 36, 23, 0.08), 0 5px 16px rgba(53, 36, 23, 0.04);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.peace-menu-showcase__card:hover {
  border-color: rgba(184, 137, 64, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(53, 36, 23, 0.13), 0 8px 20px rgba(53, 36, 23, 0.06);
}

.peace-menu-showcase__card-link {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.peace-menu-showcase__card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #d8c8b2;
}

.peace-menu-showcase__card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -22px 32px rgba(36, 24, 16, 0.06);
}

.peace-menu-showcase__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.peace-menu-showcase__card:hover .peace-menu-showcase__card-image img { transform: scale(1.055); }

.peace-menu-showcase__card-icon {
  position: absolute;
  z-index: 3;
  top: 224px;
  left: 30px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--pms-gold);
  background: var(--pms-espresso);
  border: 4px solid var(--pms-card);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--pms-gold), 0 10px 25px rgba(42, 31, 25, 0.18);
  transition: transform 260ms ease, background-color 260ms ease;
}

.peace-menu-showcase__card-icon svg {
  width: 29px;
  height: 29px;
}

.peace-menu-showcase__card:hover .peace-menu-showcase__card-icon {
  background: var(--pms-navy);
  transform: translateY(-3px);
}

.peace-menu-showcase__card-content {
  min-height: 155px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 45px 24px 25px;
}

.peace-menu-showcase__card-content h3 {
  margin: 0;
  font-family: var(--pms-display);
  font-size: clamp(23px, 1.7vw, 29px);
  font-weight: 600;
  line-height: 1.05;
}

.peace-menu-showcase__card-content p {
  max-width: 255px;
  margin: 13px 0 0;
  color: var(--pms-muted);
  font-family: var(--pms-body);
  font-size: 13px;
  line-height: 1.55;
}

.peace-menu-showcase__arrow {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--pms-gold-dark);
  border: 1px solid var(--pms-gold);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.peace-menu-showcase__arrow svg {
  width: 20px;
  height: 20px;
}

.peace-menu-showcase__card:hover .peace-menu-showcase__arrow {
  color: #fff;
  background: var(--pms-gold);
  transform: translateX(3px);
}

.peace-menu-showcase__wide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.peace-menu-showcase__card--wide .peace-menu-showcase__card-image { height: 230px; }
.peace-menu-showcase__card--wide .peace-menu-showcase__card-icon { top: 194px; }
.peace-menu-showcase__card--wide .peace-menu-showcase__card-content {
  min-height: 130px;
  padding-top: 43px;
}
.peace-menu-showcase__card--wide .peace-menu-showcase__card-content h3 { font-size: 28px; }

.peace-menu-showcase__benefits {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0;
  margin-top: 30px;
  padding: 23px 30px;
  background: rgba(252, 249, 244, 0.62);
  border: 1px solid var(--pms-gold-border);
  border-radius: 18px;
}

.peace-menu-showcase__benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
}

.peace-menu-showcase__benefit-icon {
  width: 59px;
  height: 59px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--pms-gold-dark);
  border: 1px solid var(--pms-gold);
  border-radius: 50%;
}

.peace-menu-showcase__benefit-icon svg {
  width: 29px;
  height: 29px;
}

.peace-menu-showcase__benefit h3 {
  margin: 0;
  font-family: var(--pms-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
}

.peace-menu-showcase__benefit p {
  margin: 5px 0 0;
  color: var(--pms-muted);
  font-family: var(--pms-body);
  font-size: 12px;
  line-height: 1.45;
}

.peace-menu-showcase__benefit-divider {
  width: 1px;
  height: 66px;
  background: rgba(184, 137, 64, 0.35);
}

.peace-menu-showcase__benefit-star {
  width: 12px;
  height: 12px;
  display: block;
  background: var(--pms-gold);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.peace-menu-showcase__frisco-message {
  position: relative;
  display: none;
  min-height: 520px;
  margin-top: 0;
  padding: clamp(34px, 6vw, 74px);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 18% 14%, rgba(184, 137, 64, 0.13), transparent 32%),
    radial-gradient(circle at 84% 88%, rgba(11, 45, 82, 0.08), transparent 30%),
    rgba(252, 249, 244, 0.74);
  border: 1px solid var(--pms-gold-border);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(61, 42, 24, 0.1);
}

.peace-menu-showcase__frisco-message::before,
.peace-menu-showcase__frisco-message::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.peace-menu-showcase__frisco-message::before {
  inset: 18px;
  border: 1px solid rgba(184, 137, 64, 0.32);
  border-radius: 20px;
}

.peace-menu-showcase__frisco-message::after {
  width: 360px;
  height: 360px;
  right: -118px;
  bottom: -126px;
  opacity: 0.42;
  background-image:
    linear-gradient(30deg, transparent 44%, rgba(184, 137, 64, 0.26) 45% 55%, transparent 56%),
    linear-gradient(150deg, transparent 44%, rgba(184, 137, 64, 0.26) 45% 55%, transparent 56%),
    radial-gradient(circle, transparent 31%, rgba(184, 137, 64, 0.22) 32% 34%, transparent 35%);
  background-size: 92px 92px;
  transform: rotate(8deg);
}

.peace-menu-showcase__frisco-icon {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--pms-gold-dark);
  background: var(--pms-navy);
  border: 1px solid var(--pms-gold);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(11, 45, 82, 0.18);
}

.peace-menu-showcase__frisco-icon svg {
  width: 64px;
  height: 64px;
}

.peace-menu-showcase__frisco-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--pms-gold-dark);
  font-family: var(--pms-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.peace-menu-showcase__frisco-message h3 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  color: var(--pms-ink);
  font-family: var(--pms-display);
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 500;
  line-height: 0.96;
}

.peace-menu-showcase__frisco-message > p:not(.peace-menu-showcase__frisco-kicker) {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--pms-muted);
  font-family: var(--pms-body);
  font-size: 17px;
  line-height: 1.75;
}

.peace-menu-showcase__frisco-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.peace-menu-showcase__frisco-switch {
  min-height: 56px;
  padding: 0 24px;
  color: var(--pms-navy);
  font: 700 14px/1 var(--pms-body);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--pms-gold-border);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.peace-menu-showcase__frisco-switch:hover {
  transform: translateY(-2px);
  border-color: var(--pms-gold);
  background: rgba(255, 255, 255, 0.72);
}

html[data-location="frisco"] .peace-menu-showcase__top-grid,
html[data-location="frisco"] .peace-menu-showcase__wide-grid,
html[data-location="frisco"] .peace-menu-showcase__benefits {
  display: none;
}

html[data-location="frisco"] .peace-menu-showcase__frisco-message {
  display: block;
}

.peace-menu-showcase a:focus-visible {
  outline: 3px solid rgba(184, 137, 64, 0.5);
  outline-offset: 4px;
}

@media (max-width: 1280px) {
  .peace-menu-showcase__container { width: min(calc(100% - 48px), 1500px); }
  .peace-menu-showcase__layout { grid-template-columns: 280px minmax(0, 1fr); gap: 40px; }
  .peace-menu-showcase__heading { font-size: 62px; }
  .peace-menu-showcase__card-image { height: 225px; }
  .peace-menu-showcase__card-icon { top: 189px; }
  .peace-menu-showcase__card-content { min-height: 165px; padding-inline: 20px; }
  .peace-menu-showcase__card--wide .peace-menu-showcase__card-image { height: 210px; }
  .peace-menu-showcase__card--wide .peace-menu-showcase__card-icon { top: 174px; }
  .peace-menu-showcase__benefit { padding-inline: 17px; }
  .peace-menu-showcase__benefit-icon { width: 52px; height: 52px; }
}

@media (max-width: 1050px) {
  .peace-menu-showcase__layout { grid-template-columns: 1fr; gap: 55px; }
  .peace-menu-showcase__intro {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }
  .peace-menu-showcase__eyebrow,
  .peace-menu-showcase__intro-action { justify-content: center; }
  .peace-menu-showcase__description { margin-inline: auto; }
  .peace-menu-showcase__top-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .peace-menu-showcase__benefits { grid-template-columns: 1fr 1fr; gap: 0; }
  .peace-menu-showcase__benefit { min-height: 120px; }
  .peace-menu-showcase__benefit:nth-of-type(2),
  .peace-menu-showcase__benefit:nth-of-type(4) { border-left: 1px solid rgba(184, 137, 64, 0.3); }
  .peace-menu-showcase__benefit:nth-of-type(n + 3) { border-top: 1px solid rgba(184, 137, 64, 0.3); }
  .peace-menu-showcase__benefit-divider,
  .peace-menu-showcase__benefit-star { display: none; }
  .peace-menu-showcase__frisco-message { min-height: 460px; }
}

@media (max-width: 820px) {
  .peace-menu-showcase__top-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .peace-menu-showcase__top-grid .peace-menu-showcase__card:last-child { grid-column: 1 / -1; }
  .peace-menu-showcase__wide-grid { grid-template-columns: 1fr; }
  .peace-menu-showcase__card--wide .peace-menu-showcase__card-image { height: 260px; }
  .peace-menu-showcase__card--wide .peace-menu-showcase__card-icon { top: 224px; }
}

@media (max-width: 620px) {
  .peace-menu-showcase { padding: 75px 0 85px; }
  .peace-menu-showcase__container { width: min(calc(100% - 28px), 1500px); }
  .peace-menu-showcase__motif--arabesque {
    left: -90px;
    top: 130px;
    width: 260px;
    opacity: 0.2;
  }
  .peace-menu-showcase__motif--arch {
    top: 86px;
    left: 58%;
    width: 330px;
    opacity: 0.1;
  }
  .peace-menu-showcase__motif--zellige {
    right: -120px;
    top: 25px;
    width: 300px;
    opacity: 0.1;
  }
  .peace-menu-showcase__heading { font-size: clamp(48px, 14vw, 64px); }
  .peace-menu-showcase__description {
    margin-top: 25px;
    font-size: 14px;
  }
  .peace-menu-showcase__intro-action {
    display: grid;
    width: 100%;
    margin-top: 30px;
  }
  .peace-menu-showcase__menu-button {
    width: 100%;
    min-height: 56px;
  }
  .peace-menu-showcase__top-grid,
  .peace-menu-showcase__wide-grid { grid-template-columns: 1fr; }
  .peace-menu-showcase__top-grid .peace-menu-showcase__card:last-child { grid-column: auto; }
  .peace-menu-showcase__card-image,
  .peace-menu-showcase__card--wide .peace-menu-showcase__card-image { height: 240px; }
  .peace-menu-showcase__card-icon,
  .peace-menu-showcase__card--wide .peace-menu-showcase__card-icon {
    top: 204px;
    left: 22px;
  }
  .peace-menu-showcase__card-content,
  .peace-menu-showcase__card--wide .peace-menu-showcase__card-content {
    min-height: 150px;
    padding: 44px 20px 22px;
  }
  .peace-menu-showcase__frisco-message {
    min-height: 0;
    padding: 34px 22px;
    border-radius: 20px;
  }
  .peace-menu-showcase__frisco-message::before {
    inset: 10px;
    border-radius: 15px;
  }
  .peace-menu-showcase__frisco-message::after {
    width: 250px;
    height: 250px;
    right: -110px;
    bottom: -100px;
    background-size: 72px 72px;
  }
  .peace-menu-showcase__frisco-icon {
    width: 82px;
    height: 82px;
  }
  .peace-menu-showcase__frisco-icon svg {
    width: 48px;
    height: 48px;
  }
  .peace-menu-showcase__frisco-message h3 {
    font-size: clamp(38px, 12vw, 54px);
  }
  .peace-menu-showcase__frisco-message > p:not(.peace-menu-showcase__frisco-kicker) {
    font-size: 15px;
  }
  .peace-menu-showcase__frisco-actions {
    display: grid;
    justify-items: stretch;
  }
  .peace-menu-showcase__frisco-switch {
    width: 100%;
  }
  .peace-menu-showcase__benefits {
    grid-template-columns: 1fr;
    padding: 10px 20px;
  }
  .peace-menu-showcase__benefit {
    min-height: 105px;
    padding: 18px 4px;
  }
  .peace-menu-showcase__benefit:nth-of-type(2),
  .peace-menu-showcase__benefit:nth-of-type(4) { border-left: 0; }
  .peace-menu-showcase__benefit:nth-of-type(n + 2) { border-top: 1px solid rgba(184, 137, 64, 0.3); }
}

@media (max-width: 420px) {
  .peace-menu-showcase__container { width: min(calc(100% - 22px), 1500px); }
  .peace-menu-showcase__heading { font-size: 48px; }
  .peace-menu-showcase__card-image,
  .peace-menu-showcase__card--wide .peace-menu-showcase__card-image { height: 210px; }
  .peace-menu-showcase__card-icon,
  .peace-menu-showcase__card--wide .peace-menu-showcase__card-icon {
    top: 174px;
    width: 56px;
    height: 56px;
  }
  .peace-menu-showcase__card-content h3,
  .peace-menu-showcase__card--wide .peace-menu-showcase__card-content h3 { font-size: 24px; }
  .peace-menu-showcase__benefit { gap: 14px; }
  .peace-menu-showcase__benefit-icon {
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .peace-menu-showcase *,
  .peace-menu-showcase *::before,
  .peace-menu-showcase *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .peace-menu-showcase__card-image img,
  .peace-menu-showcase__card,
  .peace-menu-showcase__menu-button,
  .peace-menu-showcase__arrow {
    transform: none !important;
  }
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
h1, h2 {
  margin: 0;
  max-width: 940px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}
h1 { font-size: clamp(3.3rem, 7.5vw, 7.4rem); }
h2 { font-size: clamp(2.5rem, 6vw, 5.7rem); }
h3 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 2.5vw, 2.3rem); line-height: 1; font-weight: 500; }
p { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); }
em { color: var(--brass); font-style: italic; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 35px rgba(36, 31, 26, 0.13); }
.btn-dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn-light { background: rgba(255, 253, 249, 0.75); }
.btn span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 999px; background: var(--white); color: var(--ink); }
.button-row, .pill-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.pill-row { margin-top: 24px; }
.pill-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.announcement { min-height: 38px; display: grid; place-items: center; padding: 6px 16px; background: var(--espresso); color: var(--white); text-align: center; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(248, 242, 233, 0.86); border-bottom: 1px solid var(--border); backdrop-filter: blur(18px); }
.nav-wrap { width: min(var(--max), calc(100% - 40px)); min-height: 76px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; }
.brand img { width: min(190px, 45vw); }
.desktop-nav { display: flex; justify-content: center; gap: clamp(12px, 2vw, 28px); }
.desktop-nav a { color: var(--muted); font-weight: 800; text-decoration: none; }
.desktop-nav a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.location-switcher { display: inline-flex; padding: 4px; gap: 4px; border: 1px solid var(--border); border-radius: 999px; background: var(--white); }
.location-switcher button { min-height: 34px; padding: 0 13px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font: inherit; font-weight: 850; cursor: pointer; }
.location-switcher button.active { background: var(--ink); color: var(--white); }
.menu-button { display: none; min-height: 44px; padding: 0 16px; border: 1px solid var(--border); border-radius: 999px; background: var(--white); font-weight: 850; }
.mobile-menu { position: fixed; inset: 12px; z-index: 100; display: none; flex-direction: column; gap: 14px; padding: 24px; border-radius: 28px; background: var(--cream); box-shadow: var(--shadow); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--border); font-family: Georgia, serif; font-size: 2rem; text-decoration: none; }
.mobile-menu__close { align-self: flex-end; min-height: 44px; padding: 0 18px; border: 1px solid var(--border); border-radius: 999px; background: var(--white); }

.pattern { position: absolute; inset: 0; opacity: 0.42; pointer-events: none; background-image: linear-gradient(135deg, rgba(178,139,81,.12) 1px, transparent 1px), radial-gradient(circle at 20% 10%, rgba(185,99,67,.14), transparent 26%); background-size: 44px 44px, auto; }
.hero { min-height: 760px; display: grid; align-items: center; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .96fr) minmax(340px, 1.04fr); gap: clamp(32px, 6vw, 82px); align-items: center; }
.hero-copy p { max-width: 720px; margin: 26px 0; }
.hero-media-wrap { position: relative; }
.arch-media { min-height: clamp(430px, 54vw, 680px); overflow: hidden; border: 1px solid rgba(178,139,81,.45); border-radius: 48% 48% 34px 34px; background: var(--sand); box-shadow: var(--shadow); }
.arch-media video { width: 100%; height: 100%; object-fit: cover; }
.float-card { position: absolute; right: -16px; bottom: 10%; max-width: 230px; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,253,249,.9); box-shadow: var(--shadow); }
.float-card span { color: var(--brass); font-weight: 900; text-transform: uppercase; font-size: .78rem; }
.float-card strong { display: block; font-family: Georgia, serif; font-size: 1.6rem; line-height: 1; }

.marquee { overflow: hidden; border-block: 1px solid var(--border); background: var(--white); }
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-group { display: flex; gap: 14px; padding: 18px 7px; }
.marquee span { white-space: nowrap; border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px; color: var(--espresso); font-weight: 900; letter-spacing: .06em; }
@keyframes marquee { to { transform: translateX(-50%); } }

.atmosphere-video-section {
  overflow: hidden;
  background: var(--cream);
  padding-bottom: clamp(64px, 8vw, 118px);
}
.atmosphere-video-section .container,
.atmosphere-video-section__header {
  position: relative;
  z-index: 2;
}
.atmosphere-video-section__header {
  text-align: center;
}
.atmosphere-video-section__header h2 {
  margin-inline: auto;
  max-width: 760px;
}
.atmosphere-carousel {
  --atmosphere-card-width: clamp(220px, 22vw, 310px);
  --atmosphere-card-gap: 22px;
  position: relative;
  width: 100%;
  margin-top: 42px;
  overflow: hidden;
}
.atmosphere-carousel::before,
.atmosphere-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(34px, 8vw, 130px);
  pointer-events: none;
}
.atmosphere-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream) 12%, rgba(247,241,232,0));
}
.atmosphere-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream) 12%, rgba(247,241,232,0));
}
.atmosphere-carousel__track {
  display: flex;
  width: max-content;
  animation: atmosphere-slide 52s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}
.atmosphere-carousel:hover .atmosphere-carousel__track {
  animation-play-state: paused;
}
.atmosphere-carousel__group {
  display: flex;
  gap: var(--atmosphere-card-gap);
  padding-inline: calc(var(--atmosphere-card-gap) / 2);
}
.atmosphere-video-card {
  position: relative;
  display: block;
  flex: 0 0 var(--atmosphere-card-width);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(185, 138, 66, .46);
  border-radius: 28px;
  background: #17110d;
  box-shadow: 0 24px 50px rgba(43, 33, 27, .16);
  color: var(--cream);
  text-decoration: none;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.atmosphere-video-card:hover,
.atmosphere-video-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(185, 138, 66, .76);
  box-shadow: 0 30px 62px rgba(43, 33, 27, .22);
}
.atmosphere-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  background: #17110d;
  object-fit: cover;
  transform: scale(1.01);
}
.atmosphere-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 31, 61, 0) 55%, rgba(10, 31, 61, .55) 100%),
    radial-gradient(circle at 18% 88%, rgba(185, 138, 66, .22), transparent 32%);
  pointer-events: none;
}
.atmosphere-insta-button {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  background: rgba(10, 31, 61, .88);
  color: var(--gold);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
  backdrop-filter: blur(8px);
}
.atmosphere-insta-button::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Crect%20width='20'%20height='20'%20x='2'%20y='2'%20rx='5'%20ry='5'/%3E%3Cpath%20d='M16%2011.37A4%204%200%201%201%2012.63%208%204%204%200%200%201%2016%2011.37z'/%3E%3Cpath%20d='M17.5%206.5h.01'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Crect%20width='20'%20height='20'%20x='2'%20y='2'%20rx='5'%20ry='5'/%3E%3Cpath%20d='M16%2011.37A4%204%200%201%201%2012.63%208%204%204%200%200%201%2016%2011.37z'/%3E%3Cpath%20d='M17.5%206.5h.01'/%3E%3C/svg%3E") center / contain no-repeat;
}
@keyframes atmosphere-slide {
  to {
    transform: translate3d(calc(-1 * (var(--atmosphere-card-width) + var(--atmosphere-card-gap)) * 12), 0, 0);
  }
}

/* =========================================================
   PROMOTIONS DISPLAY PAGE
   Hidden standalone TV-display route
   ========================================================= */

.promotions-display-page {
  min-height: 100vh;
  background: var(--peace-ivory);
  color: var(--peace-text);
}

.promotions-display {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--peace-ivory);
  isolation: isolate;
}

.promotions-display__pattern {
  position: absolute;
  inset: -10%;
  z-index: 0;
  opacity: .08;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23d8b574' stroke-width='1.2'%3E%3Cpath d='M90 10 112 68 170 90 112 112 90 170 68 112 10 90 68 68Z'/%3E%3Ccircle cx='90' cy='90' r='31'/%3E%3Cpath d='M90 42 104 76 138 90 104 104 90 138 76 104 42 90 76 76Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 170px 170px;
  transform: rotate(-4deg) scale(1.08);
  pointer-events: none;
}

.promotions-display__glow {
  display: none;
}

.promotions-display__glow--one {
  left: -12vw;
  top: -12vw;
  background: rgba(216, 181, 116, .58);
}

.promotions-display__glow--two {
  right: -14vw;
  bottom: -16vw;
  background: rgba(23, 53, 75, .8);
}

.promotions-atmosphere {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(12px, 1.8vw, 28px);
  padding: clamp(18px, 2vw, 34px) 0 clamp(14px, 1.6vw, 26px);
  background: transparent;
}

.promotions-display__topbar {
  position: relative;
  z-index: 3;
  width: min(1560px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 18px;
  border: 1px solid rgba(216, 181, 116, .28);
  border-radius: 999px;
  background: rgba(255, 252, 247, .78);
  box-shadow: var(--peace-shadow);
  backdrop-filter: blur(16px);
}

.promotions-display__topbar img {
  width: clamp(126px, 10vw, 210px);
  filter: drop-shadow(0 10px 24px rgba(62, 41, 23, .14));
}

.promotions-display__topbar div {
  text-align: right;
}

.promotions-display__topbar span,
.promotions-display__ticker span {
  color: var(--peace-gold-light);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.promotions-display__topbar strong {
  display: block;
  margin-top: 2px;
  color: var(--peace-navy);
  font-family: var(--peace-font-display);
  font-size: clamp(1rem, 1.35vw, 1.55rem);
  font-weight: 700;
}

.promotions-atmosphere__header {
  color: var(--peace-text);
  width: min(1560px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: clamp(18px, 3vw, 52px);
  text-align: left;
}

.promotions-atmosphere__header .eyebrow {
  color: var(--peace-gold-light);
}

.promotions-atmosphere__header h1 {
  max-width: none;
  color: var(--peace-text);
  font-size: clamp(2.75rem, 4.8vw, 6.3rem);
  line-height: .9;
  margin: 0;
  text-shadow: 0 18px 54px rgba(62, 41, 23, .08);
}

.promotions-atmosphere__stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
}

.promotions-atmosphere__arch {
  position: absolute;
  inset: -42px 8vw auto;
  height: clamp(180px, 18vw, 310px);
  border: 1px solid rgba(216, 181, 116, .42);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: .58;
  pointer-events: none;
}

.promotions-carousel {
  --atmosphere-card-width: clamp(330px, 21vw, 470px);
  --atmosphere-card-gap: clamp(20px, 2vw, 42px);
  margin-top: 0;
  padding-block: 10px 18px;
}

.promotions-carousel::before {
  background: linear-gradient(90deg, var(--peace-ivory) 12%, rgba(247, 241, 232, 0));
}

.promotions-carousel::after {
  background: linear-gradient(270deg, var(--peace-ivory) 12%, rgba(247, 241, 232, 0));
}

.promotions-carousel .atmosphere-carousel__track {
  animation-duration: 62s;
}

.promotions-display-page .atmosphere-carousel:hover .atmosphere-carousel__track {
  animation-play-state: running;
}

.promotions-carousel .atmosphere-video-card {
  border: 2px solid rgba(216, 181, 116, .64);
  border-radius: 38px;
  box-shadow: 0 28px 74px rgba(62, 41, 23, .18), 0 0 0 8px rgba(255, 252, 247, .52);
}

.promotions-carousel .atmosphere-insta-button {
  color: var(--peace-gold-light);
}

.promotions-display__footer {
  position: relative;
  z-index: 3;
  width: min(1560px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 20px;
  border-top: 1px solid rgba(216, 181, 116, .28);
  color: var(--peace-text);
}

.promotions-display__ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.promotions-display__ticker span {
  padding: 9px 15px;
  border: 1px solid rgba(216, 181, 116, .34);
  border-radius: 999px;
  background: rgba(255, 252, 247, .74);
  font-size: .72rem;
}

.promotions-display__footer a {
  color: var(--peace-navy);
  font-weight: 800;
}

@media (max-width: 900px) {
  .promotions-display__topbar,
  .promotions-display__footer {
    width: min(100% - 32px, 1560px);
    border-radius: 28px;
  }

  .promotions-display__topbar,
  .promotions-display__footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .promotions-display__topbar div {
    text-align: center;
  }

  .promotions-display__footer {
    display: flex;
  }
}

/* =========================================================
   PEACE LOCATIONS SECTION
   Fully namespaced to prevent style collisions
   ========================================================= */

.peace-locations {
  --pl-ivory: #f7f1e8;
  --pl-card: #fcf9f4;
  --pl-espresso: #2b211b;
  --pl-espresso-soft: #3a2a21;
  --pl-gold: #b88940;
  --pl-gold-dark: #986a2d;
  --pl-gold-light: #d7b273;
  --pl-navy: #18344e;
  --pl-muted: #6c625a;
  --pl-border: rgba(75, 51, 35, 0.14);
  --pl-gold-border: rgba(184, 137, 64, 0.42);
  --pl-display: "Cormorant Garamond", Georgia, serif;
  --pl-body: "Inter", Arial, sans-serif;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: clamp(100px, 9vw, 155px) 0 clamp(95px, 9vw, 145px);
  overflow: hidden;
  color: var(--pl-espresso);
  background: var(--pl-ivory);
  opacity: 1;
  visibility: visible;
  transform: none;
}
@supports (overflow: clip) {
  .peace-locations { overflow: clip; }
}
.peace-locations *,
.peace-locations *::before,
.peace-locations *::after { box-sizing: border-box; }
.peace-locations img,
.peace-locations svg { display: block; }
.peace-locations a {
  color: inherit;
  text-decoration: none;
}
.peace-locations address { font-style: normal; }
.peace-locations__container {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 72px), 1450px);
  margin-inline: auto;
}
.peace-locations__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.peace-locations__pattern {
  position: absolute;
  color: rgba(184, 137, 64, 0.15);
}
.peace-locations__pattern--top {
  top: -120px;
  right: -65px;
  width: 430px;
  height: 430px;
  transform: rotate(8deg);
}
.peace-locations__pattern--left {
  top: 115px;
  left: -80px;
  width: 310px;
  height: 600px;
  color: rgba(111, 93, 68, 0.09);
  filter: blur(0.4px);
}
.peace-locations__lantern {
  position: absolute;
  z-index: 1;
  bottom: -42px;
  left: -40px;
  width: 230px;
  height: 500px;
  color: rgba(72, 45, 24, 0.42);
  filter: drop-shadow(0 28px 30px rgba(55, 34, 18, 0.13));
}
.peace-locations__lantern svg {
  width: 100%;
  height: 100%;
}
.peace-locations__header {
  display: grid;
  grid-template-columns: minmax(620px, 1.15fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(70px, 8vw, 135px);
  margin-bottom: clamp(55px, 5vw, 78px);
}
.peace-locations__eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--pl-gold-dark);
}
.peace-locations__eyebrow span {
  width: 31px;
  height: 1px;
  background: var(--pl-gold);
}
.peace-locations__eyebrow p {
  margin: 0;
  font-family: var(--pl-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.peace-locations__heading {
  max-width: 850px;
  margin: 34px 0 0;
  font-family: var(--pl-display);
  font-size: clamp(72px, 6.6vw, 108px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.047em;
}
.peace-locations__heading span,
.peace-locations__heading em { display: block; }
.peace-locations__heading em {
  margin-top: 12px;
  color: var(--pl-gold);
  font-weight: 500;
}
.peace-locations__intro {
  position: relative;
  max-width: 385px;
  padding-bottom: 26px;
}
.peace-locations__intro p {
  margin: 0;
  color: var(--pl-muted);
  font-family: var(--pl-body);
  font-size: 16px;
  line-height: 1.75;
}
.peace-locations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.peace-locations__card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--pl-card);
  border: 1px solid var(--pl-gold-border);
  border-radius: 28px;
  box-shadow: 0 26px 65px rgba(51, 34, 22, 0.09), 0 8px 22px rgba(51, 34, 22, 0.04);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.peace-locations__card:hover {
  border-color: rgba(184, 137, 64, 0.68);
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(51, 34, 22, 0.14), 0 10px 27px rgba(51, 34, 22, 0.06);
}
.peace-locations__image-wrap {
  position: relative;
  height: 390px;
  overflow: hidden;
  background: #9b7c5d;
  border-radius: 27px 27px 46% 46% / 27px 27px 13% 13%;
}
.peace-locations__image-wrap::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -58px 55px rgba(32, 20, 13, 0.18), inset 0 0 0 1px rgba(184, 137, 64, 0.42);
  border-radius: inherit;
}
.peace-locations__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}
.peace-locations__image--richardson { object-position: center 42%; }
.peace-locations__image--frisco { object-position: center; }
.peace-locations__card:hover .peace-locations__image { transform: scale(1.05); }
.peace-locations__image-pattern {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, transparent 45%, rgba(215, 178, 115, 0.55) 46%, rgba(215, 178, 115, 0.55) 47%, transparent 48%),
    linear-gradient(-30deg, transparent 45%, rgba(215, 178, 115, 0.55) 46%, rgba(215, 178, 115, 0.55) 47%, transparent 48%);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 48%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 48%);
}
.peace-locations__image-border {
  position: absolute;
  z-index: 4;
  inset: 11px;
  pointer-events: none;
  border: 1px solid rgba(215, 178, 115, 0.82);
  border-radius: 22px 22px 44% 44% / 22px 22px 12% 12%;
}
.peace-locations__card-icon {
  position: absolute;
  z-index: 7;
  top: 345px;
  left: 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--pl-gold);
  background: var(--pl-espresso);
  border: 6px solid var(--pl-card);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--pl-gold), 0 15px 32px rgba(43, 33, 27, 0.22);
  transform: translateX(-50%);
  transition: transform 260ms ease, background-color 260ms ease;
}
.peace-locations__card:hover .peace-locations__card-icon {
  background: var(--pl-navy);
  transform: translateX(-50%) translateY(-4px);
}
.peace-locations__card-icon svg {
  width: 39px;
  height: 39px;
}
.peace-locations__content {
  position: relative;
  z-index: 4;
  min-height: 515px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 54px 57px;
  text-align: center;
}
.peace-locations__content h3 {
  margin: 0;
  font-family: var(--pl-display);
  font-size: clamp(42px, 3.5vw, 57px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
.peace-locations__summary {
  max-width: 470px;
  margin: 15px auto 0;
  color: var(--pl-muted);
  font-family: var(--pl-body);
  font-size: 14px;
  line-height: 1.6;
}
.peace-locations__divider {
  width: min(100%, 430px);
  display: grid;
  grid-template-columns: 1fr 12px 1fr;
  align-items: center;
  gap: 13px;
  margin: 26px auto;
}
.peace-locations__divider span {
  height: 1px;
  background: rgba(184, 137, 64, 0.45);
}
.peace-locations__divider i {
  width: 9px;
  height: 9px;
  display: block;
  background: var(--pl-gold);
  transform: rotate(45deg);
}
.peace-locations__details {
  width: min(100%, 470px);
  display: grid;
  gap: 20px;
  margin-inline: auto;
  text-align: left;
}
.peace-locations__detail {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
}
.peace-locations__detail-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--pl-gold-dark);
  border: 1px solid var(--pl-gold);
  border-radius: 50%;
}
.peace-locations__detail-icon svg {
  width: 22px;
  height: 22px;
}
.peace-locations__detail address {
  padding-top: 1px;
  color: var(--pl-espresso);
  font-family: var(--pl-body);
  font-size: 14px;
  line-height: 1.5;
}
.peace-locations__detail address strong,
.peace-locations__detail address span { display: block; }
.peace-locations__detail address strong { font-weight: 700; }
.peace-locations__detail address span { color: var(--pl-muted); }
.peace-locations__hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 0;
  padding: 3px 0 0;
  list-style: none;
}
.peace-locations__hours li {
  position: relative;
  display: flex;
  gap: 6px;
  color: var(--pl-muted);
  font-family: var(--pl-body);
  font-size: 12px;
  line-height: 1.45;
}
.peace-locations__hours li::before {
  content: "";
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  margin-top: 0.65em;
  border-radius: 50%;
  background: var(--pl-gold);
}
.peace-locations__hours span,
.peace-locations__hours strong { font-weight: 500; }
.peace-locations__hours strong { color: var(--pl-espresso); }
.peace-locations__button {
  min-width: 245px;
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: auto;
  padding: 0 22px 0 30px;
  color: #fffaf1 !important;
  background: var(--pl-espresso);
  border: 1px solid var(--pl-espresso);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(43, 33, 27, 0.15);
  font-family: var(--pl-body);
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.peace-locations__button span {
  color: #fffaf1 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.36);
}
.peace-locations__button svg {
  width: 22px;
  height: 22px;
  color: #f1c875 !important;
  transition: transform 180ms ease;
}
.peace-locations__button:hover,
.peace-locations__button:focus-visible {
  background: var(--pl-espresso-soft);
  transform: translateY(-2px);
  box-shadow: 0 19px 40px rgba(43, 33, 27, 0.21);
}
.peace-locations__button:hover svg,
.peace-locations__button:focus-visible svg { transform: translateX(5px); }
.peace-locations__card-pattern {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 33px;
  overflow: hidden;
  border-top: 1px solid rgba(184, 137, 64, 0.36);
  background-color: rgba(184, 137, 64, 0.055);
  background-image:
    linear-gradient(45deg, transparent 40%, rgba(184, 137, 64, 0.55) 41%, rgba(184, 137, 64, 0.55) 43%, transparent 44%),
    linear-gradient(-45deg, transparent 40%, rgba(184, 137, 64, 0.55) 41%, rgba(184, 137, 64, 0.55) 43%, transparent 44%);
  background-position: 0 0, 18px 0;
  background-size: 36px 36px;
}
.peace-locations a:focus-visible {
  outline: 3px solid rgba(184, 137, 64, 0.55);
  outline-offset: 4px;
}

@media (max-width: 1280px) {
  .peace-locations__container { width: min(calc(100% - 48px), 1450px); }
  .peace-locations__header {
    grid-template-columns: minmax(530px, 1.1fr) minmax(280px, 0.6fr);
    gap: 65px;
  }
  .peace-locations__heading { font-size: clamp(70px, 7vw, 92px); }
  .peace-locations__image-wrap { height: 345px; }
  .peace-locations__card-icon { top: 302px; }
  .peace-locations__content {
    min-height: 515px;
    padding-inline: 40px;
  }
}
@media (max-width: 1000px) {
  .peace-locations__header {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .peace-locations__heading-block { max-width: 800px; }
  .peace-locations__intro {
    max-width: 620px;
    padding-bottom: 0;
  }
  .peace-locations__grid { gap: 20px; }
  .peace-locations__image-wrap { height: 290px; }
  .peace-locations__card-icon {
    top: 249px;
    width: 72px;
    height: 72px;
  }
  .peace-locations__content {
    min-height: 545px;
    padding: 58px 26px 54px;
  }
  .peace-locations__content h3 { font-size: 43px; }
  .peace-locations__hours { grid-template-columns: 1fr; }
  .peace-locations__button { min-width: 220px; }
  .peace-locations__lantern { opacity: 0.45; }
}
@media (max-width: 760px) {
  .peace-locations { padding: 78px 0 90px; }
  .peace-locations__container { width: min(calc(100% - 30px), 1450px); }
  .peace-locations__header {
    margin-bottom: 48px;
    text-align: center;
  }
  .peace-locations__eyebrow { justify-content: center; }
  .peace-locations__heading {
    margin-top: 27px;
    font-size: clamp(54px, 14vw, 74px);
    line-height: 0.9;
  }
  .peace-locations__intro { margin-inline: auto; }
  .peace-locations__intro p { font-size: 14px; }
  .peace-locations__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .peace-locations__image-wrap { height: 340px; }
  .peace-locations__card-icon {
    top: 298px;
    width: 76px;
    height: 76px;
  }
  .peace-locations__content {
    min-height: 0;
    padding: 62px 27px 58px;
  }
  .peace-locations__summary { font-size: 13px; }
  .peace-locations__details { max-width: 460px; }
  .peace-locations__button {
    width: min(100%, 360px);
    margin-top: 34px;
  }
  .peace-locations__lantern,
  .peace-locations__pattern--left { display: none; }
  .peace-locations__pattern--top {
    width: 260px;
    height: 260px;
    opacity: 0.6;
  }
}
@media (max-width: 480px) {
  .peace-locations__container { width: min(calc(100% - 22px), 1450px); }
  .peace-locations__heading { font-size: clamp(47px, 14vw, 59px); }
  .peace-locations__image-wrap { height: 260px; }
  .peace-locations__image-border { inset: 8px; }
  .peace-locations__card-icon {
    top: 220px;
    width: 70px;
    height: 70px;
  }
  .peace-locations__card-icon svg {
    width: 33px;
    height: 33px;
  }
  .peace-locations__content {
    padding: 57px 19px 53px;
  }
  .peace-locations__content h3 { font-size: 40px; }
  .peace-locations__details { gap: 18px; }
  .peace-locations__detail {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }
  .peace-locations__detail-icon {
    width: 36px;
    height: 36px;
  }
  .peace-locations__detail address { font-size: 12px; }
  .peace-locations__hours li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 3px;
    font-size: 11px;
  }
  .peace-locations__hours li::before { display: none; }
  .peace-locations__button {
    min-width: 0;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .peace-locations *,
  .peace-locations *::before,
  .peace-locations *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .peace-locations__card,
  .peace-locations__image,
  .peace-locations__card-icon,
  .peace-locations__button,
  .peace-locations__button svg {
    transform: none !important;
  }
  .peace-locations__card-icon { transform: translateX(-50%) !important; }
}

/* =========================================================
   PEACE CATERING SECTION
   Fully namespaced to avoid collisions
   ========================================================= */

.peace-catering {
  --pc-ivory: #f7f1e8;
  --pc-ivory-light: #fcf9f4;
  --pc-card: rgba(252, 249, 244, 0.94);
  --pc-espresso: #2b211b;
  --pc-espresso-soft: #3a2b22;
  --pc-gold: #b88940;
  --pc-gold-dark: #986a2d;
  --pc-gold-light: #d8b779;
  --pc-muted: #736a62;
  --pc-border: rgba(75, 51, 35, 0.16);
  --pc-gold-border: rgba(184, 137, 64, 0.58);
  --pc-display: "Cormorant Garamond", Georgia, serif;
  --pc-body: "Inter", Arial, sans-serif;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 840px;
  margin: 0;
  overflow: hidden;
  color: var(--pc-espresso);
  background:
    radial-gradient(circle at 70% 8%, rgba(216, 183, 121, 0.16), transparent 26%),
    radial-gradient(circle at 40% 56%, rgba(255, 255, 255, 0.52), transparent 28%),
    var(--pc-ivory);
  opacity: 1;
  visibility: visible;
  transform: none;
}
@supports (overflow: clip) {
  .peace-catering { overflow: clip; }
}
.peace-catering *,
.peace-catering *::before,
.peace-catering *::after { box-sizing: border-box; }
.peace-catering img,
.peace-catering svg { display: block; }
.peace-catering a {
  color: inherit;
  text-decoration: none;
}
.peace-catering__scene {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: clamp(250px, 18vw, 390px);
  overflow: hidden;
  background: #8d6f50;
}
.peace-catering__scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.06);
}
.peace-catering__scene-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(43, 33, 27, 0.08) 0%, transparent 54%, rgba(247, 241, 232, 0.46) 78%, var(--pc-ivory) 100%);
}
.peace-catering__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.peace-catering__pattern {
  position: absolute;
  color: rgba(184, 137, 64, 0.15);
}
.peace-catering__pattern--top {
  top: -80px;
  right: -55px;
  width: 360px;
  height: 360px;
  transform: rotate(8deg);
}
.peace-catering__hanging-ornament {
  position: absolute;
  top: 145px;
  right: 20px;
  width: 68px;
  height: 185px;
  color: rgba(184, 137, 64, 0.24);
}
.peace-catering__foliage {
  position: absolute;
  right: -110px;
  bottom: 90px;
  width: 250px;
  height: 440px;
  opacity: 0.13;
  filter: blur(10px);
  transform: rotate(-11deg);
}
.peace-catering__foliage::before,
.peace-catering__foliage::after {
  content: "";
  position: absolute;
  border-radius: 100% 0 100% 0;
  background: #465438;
  transform-origin: bottom center;
}
.peace-catering__foliage::before {
  right: 35px;
  bottom: 20px;
  width: 90px;
  height: 340px;
  transform: rotate(21deg);
}
.peace-catering__foliage::after {
  right: 115px;
  bottom: 0;
  width: 80px;
  height: 300px;
  transform: rotate(-20deg);
}
.peace-catering__container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 80px), 1450px);
  margin-inline: auto;
  padding: 62px 0 62px;
}
.peace-catering__layout {
  display: grid;
  grid-template-columns: minmax(405px, 0.76fr) minmax(690px, 1.24fr);
  align-items: center;
  gap: clamp(58px, 5.8vw, 100px);
  margin-left: clamp(180px, 14vw, 255px);
}
.peace-catering__content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.peace-catering__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pc-gold-dark);
  font-family: var(--pc-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.peace-catering__eyebrow svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}
.peace-catering__eyebrow-line {
  width: 19px;
  height: 1px;
  background: var(--pc-gold);
}
.peace-catering__heading {
  margin: 27px 0 0;
  font-family: var(--pc-display);
  font-size: clamp(70px, 5.8vw, 94px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
}
.peace-catering__heading span,
.peace-catering__heading em { display: block; }
.peace-catering__heading em {
  margin-top: 10px;
  color: var(--pc-gold);
  font-weight: 500;
}
.peace-catering__ornament-divider {
  width: min(100%, 390px);
  display: grid;
  grid-template-columns: 1fr 9px 25px 9px 1fr;
  align-items: center;
  gap: 10px;
  margin: 31px 0 27px;
  color: var(--pc-gold);
}
.peace-catering__ornament-divider > span {
  height: 1px;
  background: rgba(184, 137, 64, 0.5);
}
.peace-catering__ornament-divider i {
  width: 7px;
  height: 7px;
  display: block;
  background: currentColor;
  transform: rotate(45deg);
}
.peace-catering__ornament-divider svg {
  width: 24px;
  height: 24px;
}
.peace-catering__description {
  margin: 0;
  color: var(--pc-muted);
  font-family: var(--pc-body);
  font-size: 16px;
  line-height: 1.8;
}
.peace-catering__service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 17px;
  margin-top: 30px;
}
.peace-catering__service {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 20px;
  background: rgba(252, 249, 244, 0.82);
  border: 1px solid var(--pc-gold-border);
  border-radius: 18px;
  font-family: var(--pc-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.peace-catering__service::before,
.peace-catering__service::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--pc-ivory);
  border-radius: 50%;
}
.peace-catering__service::before {
  top: -7px;
  right: -7px;
}
.peace-catering__service::after {
  bottom: -7px;
  left: -7px;
}
.peace-catering__service:hover {
  background: var(--pc-ivory-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(54, 36, 22, 0.08);
}
.peace-catering__service-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--pc-gold);
}
.peace-catering__service-icon svg {
  width: 32px;
  height: 32px;
}
.peace-catering__phone-card {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 31px;
  padding: 20px 24px;
  overflow: hidden;
  background: rgba(252, 249, 244, 0.76);
  border: 1px solid var(--pc-gold-border);
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 249, 0.52);
}
.peace-catering__phone-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  color: var(--pc-gold);
  background: var(--pc-espresso);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(43, 33, 27, 0.16);
}
.peace-catering__phone-icon svg {
  width: 27px;
  height: 27px;
}
.peace-catering__phone-copy {
  position: relative;
  z-index: 2;
}
.peace-catering__phone-copy > span {
  display: block;
  color: var(--pc-gold-dark);
  font-family: var(--pc-body);
  font-size: 13px;
}
.peace-catering__phone-copy a {
  display: block;
  width: fit-content;
  margin-top: 5px;
  font-family: var(--pc-body);
  font-size: 15px;
  font-weight: 700;
}
.peace-catering__phone-copy p {
  margin: 5px 0 0;
  color: var(--pc-muted);
  font-family: var(--pc-body);
  font-size: 12px;
}
.peace-catering__phone-pattern {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 135px;
  height: 135px;
  color: rgba(184, 137, 64, 0.18);
}
.peace-catering__form-shell {
  position: relative;
  min-width: 0;
  width: min(100%, 760px);
  justify-self: stretch;
  padding-top: 64px;
  filter: drop-shadow(0 24px 38px rgba(54, 36, 22, 0.14));
}
.peace-catering__form-shell::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: min(36%, 250px);
  height: 132px;
  background: transparent;
  border: 2px solid var(--pc-gold);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}
.peace-catering__form-inner {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 93px 48px 36px;
  background: var(--pc-card);
  border: 2px solid var(--pc-gold);
  border-radius: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 253, 249, 0.78);
}
.peace-catering__form-inner::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(184, 137, 64, 0.48);
  border-radius: 22px;
  pointer-events: none;
}
.peace-catering__form-rosette {
  position: absolute;
  z-index: 4;
  top: 32px;
  left: 50%;
  width: 62px;
  height: 62px;
  color: #a97020;
  opacity: 1;
  filter: drop-shadow(0 1px 0 rgba(255, 253, 249, 0.65));
  transform: translateX(-50%);
}
.peace-catering__form-rosette svg {
  width: 100%;
  height: 100%;
}
.peace-catering__form-rosette path,
.peace-catering__form-rosette circle {
  opacity: 1;
  stroke-width: 2;
}
.peace-catering__form {
  position: relative;
  z-index: 3;
}
.peace-catering__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}
.peace-catering__field { min-width: 0; }
.peace-catering__field--message { grid-column: 1 / -1; }
.peace-catering__field label {
  display: block;
  margin-bottom: 11px;
  font-family: var(--pc-body);
  font-size: 15px;
  font-weight: 700;
}
.peace-catering__control {
  position: relative;
}
.peace-catering__control > svg {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 18px;
  width: 20px;
  height: 20px;
  color: #7b746e;
  pointer-events: none;
  transform: translateY(-50%);
}
.peace-catering__control input,
.peace-catering__control textarea {
  width: 100%;
  color: var(--pc-espresso);
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(82, 62, 48, 0.22);
  border-radius: 17px;
  outline: none;
  font-family: var(--pc-body);
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.peace-catering__control input {
  min-height: 58px;
  padding: 0 18px 0 52px;
}
.peace-catering__control textarea {
  min-height: 132px;
  resize: vertical;
  padding: 18px 18px 18px 52px;
  line-height: 1.55;
}
.peace-catering__control--textarea > svg {
  top: 20px;
  transform: none;
}
.peace-catering__control input::placeholder,
.peace-catering__control textarea::placeholder { color: #8a827b; }
.peace-catering__control input:focus,
.peace-catering__control textarea:focus {
  background: #fffdf9;
  border-color: var(--pc-gold);
  box-shadow: 0 0 0 4px rgba(184, 137, 64, 0.11);
}
.peace-catering__submit {
  width: 100%;
  min-height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  margin-top: 18px;
  padding: 0 27px;
  color: var(--pc-gold-light);
  background: var(--pc-espresso);
  border: 1px solid var(--pc-espresso);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--pc-body);
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.peace-catering__submit svg {
  width: 22px;
  height: 22px;
  color: var(--pc-gold);
  transition: transform 180ms ease;
}
.peace-catering__submit:hover,
.peace-catering__submit:focus-visible {
  background: var(--pc-espresso-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(43, 33, 27, 0.16);
}
.peace-catering__submit:hover svg,
.peace-catering__submit:focus-visible svg { transform: translateX(5px); }
.peace-catering__submit:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}
.peace-catering__trust-divider {
  display: grid;
  grid-template-columns: 1fr 10px 1fr;
  align-items: center;
  gap: 18px;
  margin: 26px 0 21px;
}
.peace-catering__trust-divider span {
  height: 1px;
  background: rgba(184, 137, 64, 0.35);
}
.peace-catering__trust-divider i {
  width: 8px;
  height: 8px;
  display: block;
  background: var(--pc-gold);
  transform: rotate(45deg);
}
.peace-catering__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.peace-catering__trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--pc-muted);
  font-family: var(--pc-body);
  font-size: 12px;
  line-height: 1.45;
}
.peace-catering__trust-item svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  color: var(--pc-gold);
}
.peace-catering a:focus-visible,
.peace-catering button:focus-visible {
  outline: 3px solid rgba(184, 137, 64, 0.52);
  outline-offset: 4px;
}

@media (max-width: 1370px) {
  .peace-catering__container { width: min(calc(100% - 54px), 1450px); }
  .peace-catering__layout {
    grid-template-columns: minmax(390px, 0.82fr) minmax(590px, 1.18fr);
    gap: 55px;
    margin-left: 190px;
  }
  .peace-catering__heading { font-size: 72px; }
  .peace-catering__form-inner { padding-inline: 37px; }
  .peace-catering__service { padding-inline: 15px; }
}
@media (max-width: 1150px) {
  .peace-catering { min-height: 0; }
  .peace-catering__scene { width: 185px; }
  .peace-catering__layout {
    grid-template-columns: minmax(350px, 0.8fr) minmax(520px, 1.2fr);
    gap: 40px;
    margin-left: 130px;
  }
  .peace-catering__heading { font-size: 64px; }
  .peace-catering__description { font-size: 14px; }
  .peace-catering__form-inner { padding: 88px 28px 32px; }
  .peace-catering__form-grid { gap: 18px; }
  .peace-catering__trust-item {
    gap: 8px;
    font-size: 10px;
  }
}
@media (max-width: 900px) {
  .peace-catering { padding: 90px 0; }
  .peace-catering__scene { display: none; }
  .peace-catering__container {
    width: min(calc(100% - 36px), 760px);
    padding: 0;
  }
  .peace-catering__layout {
    grid-template-columns: 1fr;
    gap: 65px;
    margin-left: 0;
  }
  .peace-catering__content {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }
  .peace-catering__eyebrow,
  .peace-catering__ornament-divider {
    margin-inline: auto;
    justify-content: center;
  }
  .peace-catering__description {
    max-width: 600px;
    margin-inline: auto;
  }
  .peace-catering__service-grid {
    max-width: 600px;
    margin-inline: auto;
    margin-top: 30px;
  }
  .peace-catering__service { text-align: left; }
  .peace-catering__phone-card {
    max-width: 600px;
    margin-inline: auto;
    margin-top: 30px;
    text-align: left;
  }
  .peace-catering__form-shell {
    width: min(100%, 730px);
    margin-inline: auto;
  }
  .peace-catering__hanging-ornament { display: none; }
}
@media (max-width: 620px) {
  .peace-catering { padding: 72px 0 80px; }
  .peace-catering__container { width: min(calc(100% - 24px), 760px); }
  .peace-catering__heading { font-size: clamp(51px, 15vw, 68px); }
  .peace-catering__eyebrow {
    font-size: 10px;
    gap: 8px;
  }
  .peace-catering__eyebrow svg {
    width: 20px;
    height: 20px;
  }
  .peace-catering__description {
    font-size: 13px;
    line-height: 1.7;
  }
  .peace-catering__service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .peace-catering__service {
    min-height: 77px;
    gap: 10px;
    padding: 10px 11px;
    font-size: 11px;
  }
  .peace-catering__service-icon {
    width: 30px;
    height: 30px;
  }
  .peace-catering__service-icon svg {
    width: 27px;
    height: 27px;
  }
  .peace-catering__phone-card {
    grid-template-columns: 47px minmax(0, 1fr);
    gap: 14px;
    padding: 17px;
  }
  .peace-catering__phone-icon {
    width: 47px;
    height: 47px;
  }
  .peace-catering__phone-copy a { font-size: 13px; }
  .peace-catering__form-shell { padding-top: 44px; }
  .peace-catering__form-shell::before {
    width: 165px;
    height: 86px;
    border-width: 1.5px;
  }
  .peace-catering__form-inner {
    padding: 62px 18px 27px;
    border-width: 1.5px;
    border-radius: 24px;
  }
  .peace-catering__form-rosette {
    top: 18px;
    width: 43px;
    height: 43px;
  }
  .peace-catering__form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .peace-catering__field--message { grid-column: auto; }
  .peace-catering__control input { min-height: 54px; }
  .peace-catering__control textarea { min-height: 145px; }
  .peace-catering__submit {
    min-height: 55px;
    gap: 24px;
  }
  .peace-catering__trust {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .peace-catering__trust-item {
    justify-content: flex-start;
    max-width: 220px;
    margin-inline: auto;
    font-size: 11px;
  }
  .peace-catering__pattern--top {
    width: 240px;
    height: 240px;
    opacity: 0.55;
  }
}
@media (max-width: 390px) {
  .peace-catering__service-grid { grid-template-columns: 1fr; }
  .peace-catering__service {
    justify-content: flex-start;
    padding-inline: 24px;
  }
  .peace-catering__heading { font-size: 50px; }
  .peace-catering__phone-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .peace-catering__phone-icon { margin-inline: auto; }
  .peace-catering__phone-copy a { margin-inline: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .peace-catering *,
  .peace-catering *::before,
  .peace-catering *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .peace-catering__service,
  .peace-catering__submit,
  .peace-catering__submit svg {
    transform: none !important;
  }
}

.peace-reviews {
  --pr-ivory: #f7f1e8;
  --pr-card: rgba(255, 252, 247, 0.92);
  --pr-espresso: #2b211b;
  --pr-gold: #bd8b40;
  --pr-gold-dark: #98682c;
  --pr-muted: #70675f;
  --pr-border: rgba(189, 139, 64, 0.48);
  --pr-display: "Cormorant Garamond", Georgia, serif;
  --pr-body: "Inter", Arial, sans-serif;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(82px, 8vw, 120px) 0;
  color: var(--pr-espresso);
  background:
    radial-gradient(circle at 18% 18%, rgba(189, 139, 64, 0.13), transparent 28%),
    linear-gradient(180deg, #fcf9f4 0%, var(--pr-ivory) 100%);
}
@supports (overflow: clip) {
  .peace-reviews { overflow: clip; }
}
.peace-reviews *,
.peace-reviews *::before,
.peace-reviews *::after { box-sizing: border-box; }
.peace-reviews__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.peace-reviews__pattern {
  position: absolute;
  color: rgba(189, 139, 64, 0.12);
}
.peace-reviews__pattern--left {
  left: -92px;
  bottom: -72px;
  width: 300px;
  height: 300px;
  transform: rotate(-10deg);
}
.peace-reviews__pattern--right {
  top: -75px;
  right: -55px;
  width: 330px;
  height: 330px;
  transform: rotate(9deg);
}
.peace-reviews__container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 72px), 1480px);
  margin-inline: auto;
}
.peace-reviews__header {
  display: grid;
  gap: 28px;
  margin-bottom: 38px;
}
.peace-reviews__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pr-gold-dark);
  font-family: var(--pr-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.peace-reviews__eyebrow span {
  width: 25px;
  height: 1px;
  background: var(--pr-gold);
}
.peace-reviews__eyebrow svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}
.peace-reviews__eyebrow p { margin: 0; }
.peace-reviews__title-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(28px, 5vw, 80px);
}
.peace-reviews__heading {
  margin: 0;
  font-family: var(--pr-display);
  font-size: clamp(64px, 6vw, 96px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
}
.peace-reviews__heading em {
  color: var(--pr-gold);
  font-style: italic;
}
.peace-reviews__summary {
  max-width: 410px;
  justify-self: end;
  padding: 22px 24px;
  background: rgba(255, 252, 247, 0.65);
  border: 1px solid rgba(189, 139, 64, 0.34);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.peace-reviews__rating {
  color: var(--pr-gold);
  letter-spacing: 0.16em;
  font-size: 16px;
}
.peace-reviews__summary p {
  margin: 8px 0 0;
  color: var(--pr-muted);
  font-size: 14px;
  line-height: 1.7;
}
.peace-reviews__carousel {
  position: relative;
  margin-inline: calc((100vw - min(calc(100vw - 72px), 1480px)) / -2);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.peace-reviews__track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 10px 22px 24px;
  animation: peaceReviewMarquee 38s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}
.peace-reviews__carousel:hover .peace-reviews__track { animation-play-state: paused; }
.peace-review-card {
  position: relative;
  width: min(420px, 82vw);
  min-height: 245px;
  flex: 0 0 auto;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 30px;
  color: var(--pr-espresso);
  background: var(--pr-card);
  border: 1px solid var(--pr-border);
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
  box-shadow: 0 22px 54px rgba(49, 32, 20, 0.1);
}
.peace-review-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(189, 139, 64, 0.26);
  clip-path: inherit;
}
.peace-review-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  opacity: 0.18;
  pointer-events: none;
  background:
    linear-gradient(30deg, transparent 45%, rgba(189, 139, 64, 0.35) 46%, rgba(189, 139, 64, 0.35) 47%, transparent 48%),
    linear-gradient(-30deg, transparent 45%, rgba(189, 139, 64, 0.35) 46%, rgba(189, 139, 64, 0.35) 47%, transparent 48%);
  background-size: 34px 34px;
  mask-image: linear-gradient(to left, #000, transparent);
  -webkit-mask-image: linear-gradient(to left, #000, transparent);
}
.peace-review-card__top,
.peace-review-card__meta {
  position: relative;
  z-index: 2;
}
.peace-review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.peace-review-card__stars {
  color: var(--pr-gold);
  letter-spacing: 0.12em;
  font-size: 14px;
}
.peace-review-card__source {
  color: var(--pr-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.peace-review-card__rosette {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 2;
  color: rgba(189, 139, 64, 0.42);
  font-size: 22px;
}
.peace-review-card__text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--pr-display);
  font-size: 24px;
  line-height: 1.28;
}
.peace-review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(189, 139, 64, 0.28);
}
.peace-review-card__meta strong {
  display: block;
  font-size: 14px;
}
.peace-review-card__meta span {
  color: var(--pr-muted);
  font-size: 12px;
}
.peace-review-card--status {
  width: min(520px, 86vw);
}
@keyframes peaceReviewMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 780px) {
  .peace-reviews__container { width: min(calc(100% - 28px), 1480px); }
  .peace-reviews__title-row { grid-template-columns: 1fr; }
  .peace-reviews__summary { justify-self: stretch; }
  .peace-reviews__heading { font-size: clamp(54px, 14vw, 72px); }
  .peace-reviews__track {
    animation-duration: 30s;
  }
  .peace-review-card {
    width: min(350px, 84vw);
    min-height: 230px;
    padding: 25px;
  }
  .peace-review-card__text { font-size: 21px; }
}
@media (prefers-reduced-motion: reduce) {
  .peace-reviews__track {
    animation: none;
    overflow-x: auto;
    width: auto;
  }
}

.peace-faq {
  --pf-ivory: #f7f1e8;
  --pf-ivory-light: #fcf9f4;
  --pf-card: rgba(252, 249, 244, 0.94);
  --pf-espresso: #2b211b;
  --pf-gold: #bd8b40;
  --pf-gold-dark: #98682c;
  --pf-muted: #70675f;
  --pf-border: rgba(189, 139, 64, 0.62);
  --pf-shadow: 0 18px 46px rgba(49, 32, 20, 0.08), 0 5px 15px rgba(49, 32, 20, 0.04);
  --pf-display: "Cormorant Garamond", Georgia, serif;
  --pf-body: "Inter", Arial, sans-serif;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 820px;
  margin: 0;
  padding: clamp(100px, 9vw, 145px) 0;
  overflow: hidden;
  color: var(--pf-espresso);
  background: var(--pf-ivory);
}
@supports (overflow: clip) {
  .peace-faq { overflow: clip; }
}
.peace-faq *,
.peace-faq *::before,
.peace-faq *::after { box-sizing: border-box; }
.peace-faq img,
.peace-faq svg { display: block; }
.peace-faq__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.peace-faq__background-pattern {
  position: absolute;
  top: -110px;
  right: -75px;
  width: 400px;
  height: 400px;
  color: rgba(189, 139, 64, 0.1);
  transform: rotate(8deg);
}
.peace-faq__container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 78px), 1480px);
  margin-inline: auto;
}
.peace-faq__layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.76fr) minmax(680px, 1.24fr);
  align-items: center;
  gap: clamp(70px, 7vw, 120px);
  margin-left: 0;
}
.peace-faq__intro { max-width: 525px; }
.peace-faq__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pf-gold-dark);
  font-family: var(--pf-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.peace-faq__eyebrow-line {
  width: 20px;
  height: 1px;
  background: var(--pf-gold);
}
.peace-faq__eyebrow svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}
.peace-faq__heading {
  margin: 35px 0 0;
  font-family: var(--pf-display);
  font-size: clamp(72px, 6.3vw, 101px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.048em;
}
.peace-faq__heading span,
.peace-faq__heading em { display: block; }
.peace-faq__heading em {
  margin-top: 11px;
  color: var(--pf-gold);
  font-weight: 500;
}
.peace-faq__divider {
  width: min(100%, 385px);
  display: grid;
  grid-template-columns: 1fr 8px 32px 8px 1fr;
  align-items: center;
  gap: 10px;
  margin: 42px 0 30px;
  color: var(--pf-gold);
}
.peace-faq__divider > span {
  height: 1px;
  background: rgba(189, 139, 64, 0.52);
}
.peace-faq__divider > i {
  width: 7px;
  height: 7px;
  display: block;
  background: currentColor;
  transform: rotate(45deg);
}
.peace-faq__divider svg {
  width: 31px;
  height: 31px;
}
.peace-faq__description {
  max-width: 370px;
  margin: 0;
  color: var(--pf-muted);
  font-family: var(--pf-body);
  font-size: 16px;
  line-height: 1.75;
}
.peace-faq__accordion {
  min-width: 0;
  display: grid;
  gap: 18px;
}
.peace-faq__item {
  position: relative;
  overflow: hidden;
  color: var(--pf-espresso);
  background: var(--pf-card);
  border: 1px solid var(--pf-border);
  clip-path: polygon(17px 0, calc(100% - 17px) 0, calc(100% - 12px) 8px, 100% 14px, 100% calc(100% - 14px), calc(100% - 12px) calc(100% - 8px), calc(100% - 17px) 100%, 17px 100%, 12px calc(100% - 8px), 0 calc(100% - 14px), 0 14px, 12px 8px);
  box-shadow: var(--pf-shadow);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.peace-faq__item::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(189, 139, 64, 0.36);
  clip-path: polygon(13px 0, calc(100% - 13px) 0, calc(100% - 9px) 6px, 100% 11px, 100% calc(100% - 11px), calc(100% - 9px) calc(100% - 6px), calc(100% - 13px) 100%, 13px 100%, 9px calc(100% - 6px), 0 calc(100% - 11px), 0 11px, 9px 6px);
}
.peace-faq__item::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 235px;
  height: 100%;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(30deg, transparent 45%, rgba(189, 139, 64, 0.2) 46%, rgba(189, 139, 64, 0.2) 47%, transparent 48%),
    linear-gradient(-30deg, transparent 45%, rgba(189, 139, 64, 0.2) 46%, rgba(189, 139, 64, 0.2) 47%, transparent 48%);
  background-size: 38px 38px;
  mask-image: linear-gradient(to left, #000, transparent);
  -webkit-mask-image: linear-gradient(to left, #000, transparent);
}
.peace-faq__item:hover {
  border-color: rgba(189, 139, 64, 0.88);
  box-shadow: 0 23px 55px rgba(49, 32, 20, 0.11), 0 7px 20px rgba(49, 32, 20, 0.05);
  transform: translateY(-2px);
}
.peace-faq__item[open] { border-color: rgba(189, 139, 64, 0.84); }
.peace-faq__summary {
  position: relative;
  z-index: 2;
  min-height: 96px;
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 22px;
  padding: 24px 39px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.peace-faq__summary::-webkit-details-marker { display: none; }
.peace-faq__summary::marker {
  display: none;
  content: "";
}
.peace-faq__question-icon {
  width: 31px;
  height: 31px;
  color: var(--pf-gold);
}
.peace-faq__question-icon svg {
  width: 100%;
  height: 100%;
}
.peace-faq__question {
  padding-right: 10px;
  font-family: var(--pf-display);
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 600;
  line-height: 1.15;
}
.peace-faq__toggle {
  position: relative;
  width: 38px;
  height: 38px;
  display: block;
  color: #fff;
  background: var(--pf-gold);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(152, 104, 44, 0.18);
  transition: transform 200ms ease, background-color 200ms ease;
}
.peace-faq__toggle-horizontal,
.peace-faq__toggle-vertical {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}
.peace-faq__toggle-horizontal {
  width: 14px;
  height: 2px;
}
.peace-faq__toggle-vertical {
  width: 2px;
  height: 14px;
}
.peace-faq__item[open] .peace-faq__toggle-vertical {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.peace-faq__item[open] .peace-faq__toggle { background: var(--pf-gold-dark); }
.peace-faq__item:hover .peace-faq__toggle { transform: scale(1.06); }
.peace-faq__answer {
  position: relative;
  z-index: 2;
  margin: 0 39px;
  border-top: 1px solid rgba(189, 139, 64, 0.32);
}
.peace-faq__answer p {
  margin: 0;
  padding: 20px 0 31px;
  color: var(--pf-muted);
  font-family: var(--pf-body);
  font-size: 16px;
  line-height: 1.7;
}
.peace-faq__summary:focus-visible {
  outline: 3px solid rgba(189, 139, 64, 0.5);
  outline-offset: -7px;
}
@media (max-width: 1300px) {
  .peace-faq__container { width: min(calc(100% - 52px), 1480px); }
  .peace-faq__layout {
    grid-template-columns: minmax(360px, 0.73fr) minmax(590px, 1.27fr);
    gap: 60px;
    margin-left: 0;
  }
  .peace-faq__heading { font-size: 80px; }
  .peace-faq__summary {
    min-height: 88px;
    padding-inline: 31px;
  }
  .peace-faq__answer { margin-inline: 31px; }
}
@media (max-width: 1080px) {
  .peace-faq__layout {
    grid-template-columns: minmax(315px, 0.7fr) minmax(500px, 1.3fr);
    gap: 40px;
    margin-left: 0;
  }
  .peace-faq__heading { font-size: 68px; }
  .peace-faq__summary {
    grid-template-columns: 29px minmax(0, 1fr) 38px;
    gap: 16px;
    padding: 22px 25px;
  }
  .peace-faq__question-icon {
    width: 27px;
    height: 27px;
  }
  .peace-faq__question { font-size: 25px; }
  .peace-faq__answer { margin-inline: 25px; }
  .peace-faq__answer p { font-size: 14px; }
}
@media (max-width: 900px) {
  .peace-faq {
    min-height: 0;
    padding: 88px 0 95px;
  }
  .peace-faq__container { width: min(calc(100% - 36px), 780px); }
  .peace-faq__layout {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-left: 0;
  }
  .peace-faq__intro {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }
  .peace-faq__eyebrow,
  .peace-faq__divider {
    justify-content: center;
    margin-inline: auto;
  }
  .peace-faq__description { margin-inline: auto; }
  .peace-faq__accordion { width: 100%; }
}
@media (max-width: 600px) {
  .peace-faq { padding: 70px 0 80px; }
  .peace-faq__container { width: min(calc(100% - 24px), 780px); }
  .peace-faq__eyebrow {
    gap: 8px;
    font-size: 10px;
  }
  .peace-faq__eyebrow-line { width: 15px; }
  .peace-faq__eyebrow svg {
    width: 21px;
    height: 21px;
  }
  .peace-faq__heading {
    margin-top: 27px;
    font-size: clamp(53px, 15vw, 70px);
  }
  .peace-faq__divider {
    margin-top: 31px;
    margin-bottom: 23px;
  }
  .peace-faq__description {
    max-width: 320px;
    font-size: 13px;
  }
  .peace-faq__accordion { gap: 13px; }
  .peace-faq__summary {
    min-height: 78px;
    grid-template-columns: 24px minmax(0, 1fr) 34px;
    gap: 12px;
    padding: 18px;
  }
  .peace-faq__question-icon {
    width: 23px;
    height: 23px;
  }
  .peace-faq__question {
    padding-right: 3px;
    font-size: 21px;
    line-height: 1.15;
  }
  .peace-faq__toggle {
    width: 33px;
    height: 33px;
  }
  .peace-faq__toggle-horizontal { width: 12px; }
  .peace-faq__toggle-vertical { height: 12px; }
  .peace-faq__answer { margin-inline: 18px; }
  .peace-faq__answer p {
    padding: 17px 0 24px;
    font-size: 13px;
    line-height: 1.65;
  }
  .peace-faq__background-pattern {
    width: 240px;
    height: 240px;
    opacity: 0.5;
  }
}
@media (max-width: 390px) {
  .peace-faq__heading { font-size: 50px; }
  .peace-faq__summary { grid-template-columns: minmax(0, 1fr) 32px; }
  .peace-faq__question-icon { display: none; }
  .peace-faq__question { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .peace-faq *,
  .peace-faq *::before,
  .peace-faq *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .peace-faq__item,
  .peace-faq__toggle {
    transform: none !important;
  }
}

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.newsletter-card { padding: clamp(20px, 2.5vw, 30px); border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,253,249,.76); box-shadow: var(--shadow); }
label { display: grid; gap: 7px; font-weight: 800; }
input, textarea, select { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 14px; background: var(--white); color: var(--ink); font: inherit; }
textarea { min-height: 120px; resize: vertical; }
.newsletter-form { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; }
.footer { padding: 64px 0 96px; background: #1f1511; color: #fffaf1; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr .8fr; gap: 30px; }
.footer img { width: 190px; margin-bottom: 18px; }
.footer p,
.footer strong {
  color: #fffaf1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.34);
}
.footer a { display: block; margin-top: 8px; color: rgba(255, 250, 241, 0.88); text-decoration: none; }
.footer a:hover,
.footer a:focus-visible { color: #f1c875; }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,250,241,.2); color: rgba(255,250,241,.72); }
.mobile-actions { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70; display: none; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 8px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,253,249,.92); box-shadow: var(--shadow); }
.mobile-actions a { min-height: 42px; display: grid; place-items: center; border-radius: 999px; background: var(--ink); color: var(--white); text-decoration: none; font-size: .85rem; font-weight: 850; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .marquee-track,
  .atmosphere-carousel__track { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere-carousel__track {
    width: max-content;
    animation: atmosphere-slide 52s linear infinite !important;
  }

  .peace-reviews__track {
    width: max-content !important;
    overflow: visible !important;
    animation: peaceReviewMarquee 52s linear infinite !important;
  }
}
@media (max-width: 980px) {
  .nav-wrap { grid-template-columns: auto auto; justify-content: space-between; }
  .desktop-nav, .nav-actions > .btn { display: none; }
  .menu-button { display: inline-flex; align-items: center; }
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { grid-template-columns: 1fr; }
  .mobile-actions { display: grid; }
  body { padding-bottom: 78px; }
}
@media (max-width: 620px) {
  .container, .nav-wrap { width: min(100% - 28px, var(--max)); }
  .atmosphere-carousel {
    --atmosphere-card-width: min(72vw, 285px);
    --atmosphere-card-gap: 16px;
    margin-top: 28px;
  }
  .atmosphere-carousel__track {
    animation-duration: 42s;
    animation-play-state: running !important;
  }
  .atmosphere-carousel__group { gap: var(--atmosphere-card-gap); padding-inline: 8px; }
  .atmosphere-video-card { border-radius: 22px; }
  .atmosphere-insta-button {
    left: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }
  .hero { min-height: auto; }
  .arch-media { min-height: 380px; border-radius: 44% 44% 24px 24px; }
  .float-card { position: static; margin-top: 14px; max-width: none; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.peace-menu-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(187, 140, 62, 0.12), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(23, 53, 75, 0.08), transparent 24%),
    var(--peace-ivory);
}

.full-menu-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 8vw, 130px) 0 clamp(54px, 7vw, 96px);
  border-bottom: 1px solid rgba(159, 113, 41, 0.16);
}

.full-menu-hero__pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  background-image:
    linear-gradient(135deg, rgba(187, 140, 62, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 75% 45%, rgba(187, 140, 62, 0.18), transparent 22%);
  background-size: 48px 48px, auto;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.full-menu-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.full-menu-hero__showcase {
  position: relative;
  display: grid;
  gap: 18px;
}

.full-menu-hero__content h1 {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--peace-espresso);
  font-family: var(--peace-font-display);
  font-size: clamp(64px, 8vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.035em;
}

.full-menu-hero__content p {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--peace-muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.75;
}

.full-menu-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.full-menu-hero__panel {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 52px 34px 44px;
  color: var(--peace-espresso);
  text-align: center;
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid rgba(187, 140, 62, 0.48);
  border-radius: 42% 42% 28px 28px;
  box-shadow: var(--peace-shadow);
}

.full-menu-hero__panel::before,
.full-menu-hero__panel::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(187, 140, 62, 0.32);
  border-radius: inherit;
  pointer-events: none;
}

.full-menu-hero__panel::after {
  inset: auto auto 25px 50%;
  width: 62px;
  height: 62px;
  border: 0;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(187, 140, 62, 0.28) 0 3px, transparent 4px),
    conic-gradient(from 45deg, transparent 0 12.5%, rgba(187, 140, 62, 0.9) 0 18%, transparent 0 100%);
  opacity: 0.68;
}

.full-menu-hero__label {
  margin: 0;
  color: var(--peace-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.full-menu-hero__panel strong {
  color: var(--peace-navy);
  font-family: var(--peace-font-display);
  font-size: clamp(86px, 9vw, 132px);
  line-height: 0.85;
}

.full-menu-hero__panel span {
  max-width: 230px;
  color: var(--peace-text);
  font-weight: 800;
}

.full-menu-hero__panel small {
  max-width: 250px;
  color: var(--peace-muted);
  font-size: 13px;
}

.full-menu-hero__video-card {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  margin: -82px auto 0;
  overflow: hidden;
  border: 1px solid rgba(187, 140, 62, 0.48);
  border-radius: 28px;
  background: #1f1511;
  box-shadow: 0 24px 55px rgba(56, 40, 23, 0.18);
  isolation: isolate;
}

.full-menu-hero__video-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 241, 0.38);
  border-radius: 22px;
  pointer-events: none;
}

.full-menu-hero__video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #1f1511;
}

.full-menu-hero__video-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  padding: 8px 12px;
  color: var(--peace-navy);
  background: rgba(255, 250, 241, 0.86);
  border: 1px solid rgba(187, 140, 62, 0.42);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 21, 17, 0.12);
  backdrop-filter: blur(7px);
}

.full-menu-hero__video-card figcaption span {
  color: var(--peace-navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

[data-location="frisco"] .full-menu-hero__video-card {
  display: none;
}

.full-menu-browser {
  position: relative;
  padding: clamp(52px, 7vw, 96px) 0 clamp(92px, 10vw, 150px);
}

.full-menu-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.full-menu-toolbar__kicker {
  margin: 0 0 8px;
  color: var(--peace-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.full-menu-toolbar h2 {
  margin: 0;
  color: var(--peace-espresso);
  font-family: var(--peace-font-display);
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.95;
}

.full-menu-search {
  min-height: 58px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(187, 140, 62, 0.32);
  border-radius: var(--peace-radius-pill);
  background: rgba(255, 252, 247, 0.86);
  box-shadow: 0 14px 34px rgba(62, 41, 23, 0.07);
}

.full-menu-search svg {
  width: 22px;
  height: 22px;
  color: var(--peace-gold-dark);
}

.full-menu-search input {
  min-height: 56px;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--peace-text);
  font-weight: 700;
}

.full-menu-search input::placeholder {
  color: rgba(111, 103, 95, 0.72);
}

.full-menu-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  margin-bottom: 24px;
  overflow: visible;
  border: 1px solid rgba(187, 140, 62, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.86), rgba(246, 238, 225, 0.72)),
    var(--peace-ivory-light);
  box-shadow: 0 18px 45px rgba(62, 41, 23, 0.07);
}

.full-menu-category-chip {
  flex: 0 1 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(187, 140, 62, 0.32);
  border-radius: var(--peace-radius-pill);
  color: var(--peace-text);
  background: rgba(255, 252, 247, 0.88);
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.full-menu-category-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.28;
}

.full-menu-category-chip:hover,
.full-menu-category-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(187, 140, 62, 0.68);
}

.full-menu-category-chip.is-active {
  color: #fffaf1;
  background: var(--peace-espresso);
  border-color: var(--peace-espresso);
  box-shadow: 0 10px 22px rgba(42, 30, 24, 0.16);
}

.full-menu-category-chip span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
}

.full-menu-category-chip small {
  min-width: 28px;
  padding: 3px 8px;
  border-radius: var(--peace-radius-pill);
  color: inherit;
  background: rgba(187, 140, 62, 0.18);
  font-size: 11px;
  font-weight: 900;
}

.full-menu-status {
  min-height: 24px;
  margin-bottom: 26px;
  color: var(--peace-muted);
  font-size: 14px;
  font-weight: 700;
}

.full-menu-sections {
  display: grid;
  gap: clamp(44px, 6vw, 72px);
}

.full-menu-coming-soon {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: clamp(42px, 7vw, 86px);
  border: 1px solid rgba(187, 140, 62, 0.42);
  border-radius: 38px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(187, 140, 62, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(187, 140, 62, 0.08) 1px, transparent 1px),
    rgba(255, 252, 247, 0.9);
  background-size: auto, 48px 48px, auto;
  box-shadow: var(--peace-shadow);
}

.full-menu-coming-soon::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(187, 140, 62, 0.2);
  border-radius: 28px;
}

.full-menu-coming-soon__ornament {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(187, 140, 62, 0.38);
  border-radius: 50%;
  color: var(--peace-gold-dark);
  background: rgba(255, 252, 247, 0.82);
}

.full-menu-coming-soon__ornament svg {
  width: 52px;
  height: 52px;
}

.full-menu-coming-soon__eyebrow {
  margin: 0;
  color: var(--peace-gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.full-menu-coming-soon h2 {
  max-width: 760px;
  margin: 0;
  color: var(--peace-espresso);
  font-family: var(--peace-font-display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.9;
}

.full-menu-coming-soon p:not(.full-menu-coming-soon__eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--peace-muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
}

.full-menu-coming-soon__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.full-menu-category-section {
  scroll-margin-top: calc(var(--peace-header-height) + 90px);
}

.full-menu-category-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(187, 140, 62, 0.3);
}

.full-menu-category-section__header p {
  margin: 0 0 4px;
  color: var(--peace-gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.full-menu-category-section__header h2 {
  margin: 0;
  color: var(--peace-espresso);
  font-family: var(--peace-font-display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
}

.full-menu-category-section__header span {
  flex: 0 0 auto;
  color: var(--peace-muted);
  font-size: 13px;
  font-weight: 800;
}

.full-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.full-menu-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 180px minmax(142px, auto);
  border: 1px solid rgba(76, 54, 37, 0.13);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.92);
  box-shadow: 0 18px 48px rgba(62, 41, 23, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.full-menu-item:hover {
  transform: translateY(-4px);
  border-color: rgba(187, 140, 62, 0.42);
  box-shadow: 0 24px 60px rgba(62, 41, 23, 0.14);
}

.full-menu-item__media {
  position: relative;
  overflow: hidden;
  background: var(--peace-ivory-dark);
}

.full-menu-item__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(36, 31, 26, 0.2));
  pointer-events: none;
}

.full-menu-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.full-menu-item:hover .full-menu-item__media img {
  transform: scale(1.045);
}

.full-menu-item.has-fallback-image .full-menu-item__media img {
  filter: saturate(0.94) contrast(0.96);
}

.full-menu-item__image-note {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 9px;
  border: 1px solid rgba(255, 250, 241, 0.52);
  border-radius: var(--peace-radius-pill);
  color: #fffaf1;
  background: rgba(42, 30, 24, 0.72);
  box-shadow: 0 10px 22px rgba(42, 30, 24, 0.2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.full-menu-item__media--empty {
  display: grid;
  place-items: center;
  color: rgba(187, 140, 62, 0.62);
  background:
    linear-gradient(135deg, rgba(187, 140, 62, 0.08) 1px, transparent 1px),
    rgba(255, 252, 247, 0.72);
  background-size: 34px 34px;
}

.full-menu-item__media--empty svg {
  width: 92px;
  height: 92px;
}

.full-menu-item__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
}

.full-menu-item__category {
  margin: 0 0 8px;
  color: var(--peace-gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.full-menu-item h3 {
  margin: 0;
  color: var(--peace-espresso);
  font-family: var(--peace-font-display);
  font-size: 23px;
  line-height: 1.02;
}

.full-menu-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.full-menu-item__meta strong {
  color: var(--peace-navy);
  font-size: 18px;
  font-weight: 900;
}

.full-menu-item__order {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--peace-espresso);
  border-radius: var(--peace-radius-pill);
  color: #fffaf1;
  background: var(--peace-espresso);
  box-shadow: 0 8px 18px rgba(42, 30, 24, 0.14);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.full-menu-item__order:hover,
.full-menu-item__order:focus-visible {
  transform: translateY(-2px);
  background: var(--peace-navy);
  box-shadow: 0 12px 24px rgba(23, 53, 75, 0.18);
}

.full-menu-item__sold-out {
  display: none;
  padding: 5px 9px;
  border-radius: var(--peace-radius-pill);
  color: #7c332a;
  background: rgba(185, 99, 67, 0.12);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.full-menu-item.is-sold-out {
  opacity: 0.72;
}

.full-menu-item.is-sold-out .full-menu-item__sold-out {
  display: inline-flex;
}

@media (max-width: 1180px) {
  .full-menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .full-menu-hero__grid,
  .full-menu-toolbar {
    grid-template-columns: 1fr;
  }
  .full-menu-hero__panel {
    min-height: 300px;
    border-radius: 34px;
  }
  .full-menu-hero__showcase {
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
  .full-menu-hero__video-card {
    width: min(100%, 440px);
    margin-top: -54px;
  }
  .full-menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .full-menu-hero {
    padding-top: 48px;
  }
  .full-menu-hero__content h1 {
    font-size: clamp(54px, 18vw, 76px);
  }
  .full-menu-hero__video-card {
    margin-top: -28px;
    border-radius: 22px;
  }
  .full-menu-hero__video-card::before {
    inset: 9px;
    border-radius: 17px;
  }
  .full-menu-hero__video-card figcaption {
    left: 12px;
    bottom: 12px;
    padding: 7px 10px;
  }
  .full-menu-categories {
    gap: 8px;
    padding: 12px;
    border-radius: 22px;
  }
  .full-menu-category-chip {
    min-height: 38px;
    padding-inline: 12px;
  }
  .full-menu-category-chip span { font-size: 12px; }
  .full-menu-category-chip small {
    min-width: 24px;
    padding-inline: 7px;
  }
  .full-menu-grid { grid-template-columns: 1fr; }
  .full-menu-item {
    grid-template-rows: 220px auto;
  }
  .full-menu-category-section__header {
    align-items: start;
    flex-direction: column;
  }
}
