:root {
  --sky-1: #f5c98b;
  --sky-2: #df8f54;
  --sand-1: #f3dcb7;
  --sand-2: #ddba88;
  --mesa: #8f4f2f;
  --cactus: #2c5d4f;
  --ink: #2c1f17;
  --paper: #fff8ee;
  --line: #e8cda5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 42%, var(--sand-1) 80%, var(--sand-2) 100%);
  overflow-x: hidden;
}

.desert-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sun {
  position: absolute;
  width: 180px;
  height: 180px;
  left: var(--sun-left, 80vw);
  top: var(--sun-top, 8vh);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff7d8 0%, #ffcf7f 40%, #f2a048 72%, rgba(242, 160, 72, 0) 100%);
  filter: blur(var(--sun-blur, 1px));
  opacity: var(--sun-opacity, 0.9);
  transform: translate(-50%, -50%) scale(var(--sun-scale, 1));
  transform-origin: center;
  transition:
    left 2.2s ease,
    top 2.2s ease,
    opacity 2.2s ease,
    transform 2.2s ease,
    filter 2.2s ease;
  will-change: left, top, opacity, transform;
}

.sun::before,
.sun::after {
  content: "";
  position: absolute;
  inset: -16%;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.sun::before {
  background:
    radial-gradient(circle at center, rgba(255, 250, 214, 0.28) 0%, rgba(255, 250, 214, 0.08) 22%, transparent 52%),
    conic-gradient(
      from 0deg,
      transparent 0 10deg,
      rgba(255, 246, 205, 0.0) 10deg 18deg,
      rgba(255, 250, 214, 0.55) 18deg 20deg,
      rgba(255, 246, 205, 0.0) 20deg 42deg,
      rgba(255, 250, 214, 0.45) 42deg 44deg,
      rgba(255, 246, 205, 0.0) 44deg 78deg,
      rgba(255, 250, 214, 0.52) 78deg 80deg,
      rgba(255, 246, 205, 0.0) 80deg 130deg,
      rgba(255, 250, 214, 0.36) 130deg 132deg,
      rgba(255, 246, 205, 0.0) 132deg 180deg,
      rgba(255, 250, 214, 0.58) 180deg 182deg,
      rgba(255, 246, 205, 0.0) 182deg 230deg,
      rgba(255, 250, 214, 0.46) 230deg 232deg,
      rgba(255, 246, 205, 0.0) 232deg 282deg,
      rgba(255, 250, 214, 0.52) 282deg 284deg,
      rgba(255, 246, 205, 0.0) 284deg 360deg
    );
  filter: blur(1px);
  opacity: var(--sun-halo-opacity, 0.72);
  animation: sunSparkle 6.5s ease-in-out infinite;
}

.sun::after {
  inset: 18%;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.8) 0 4%, transparent 5%),
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.55) 0 1.5%, transparent 2.5%),
    radial-gradient(circle at 65% 62%, rgba(255, 255, 255, 0.3) 0 1.2%, transparent 2.3%);
  opacity: var(--sun-spark-opacity, 0.65);
  filter: blur(0.5px);
  animation: sunGlint 4.8s ease-in-out infinite;
}

.canyon {
  position: absolute;
  bottom: 24vh;
  background:
    linear-gradient(165deg, rgba(223, 152, 97, 0.9) 0%, rgba(170, 96, 58, 0.88) 45%, rgba(103, 52, 36, 0.92) 100%);
  clip-path: polygon(0 100%, 6% 76%, 12% 62%, 18% 74%, 25% 49%, 34% 68%, 42% 40%, 51% 61%, 60% 35%, 71% 66%, 80% 46%, 89% 73%, 96% 60%, 100% 100%);
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.23));
  opacity: 0.88;
}

.canyon::before,
.canyon::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.canyon::before {
  background: repeating-linear-gradient(
    102deg,
    rgba(247, 196, 134, 0.22) 0 10px,
    rgba(153, 83, 49, 0.1) 10px 20px
  );
  mix-blend-mode: multiply;
}

.canyon::after {
  background: linear-gradient(180deg, rgba(255, 216, 165, 0.15), rgba(44, 21, 14, 0.28));
}

.canyon-1 {
  left: 4vw;
  width: 28vw;
  height: 14vh;
  transform: perspective(300px) rotateX(6deg);
  will-change: transform;
  animation: canyonFloatFar 48s linear infinite alternate;
}

.canyon-2 {
  left: 30vw;
  width: 38vw;
  height: 17vh;
  z-index: 1;
  will-change: transform;
  animation: canyonFloatMid 58s linear infinite alternate;
}

.canyon-3 {
  left: 66vw;
  width: 30vw;
  height: 13vh;
  transform: perspective(300px) rotateX(5deg);
  will-change: transform;
  animation: canyonFloatNear 66s linear infinite alternate;
}

.dune {
  position: absolute;
  left: -10vw;
  width: 130vw;
  border-radius: 50%;
  will-change: transform;
}

.dune-back {
  bottom: 14vh;
  height: 22vh;
  background: rgba(165, 102, 58, 0.3);
  animation: duneFloatBack 52s linear infinite alternate;
}

.dune-front {
  bottom: -9vh;
  height: 28vh;
  background: linear-gradient(90deg, rgba(207, 145, 89, 0.6), rgba(163, 105, 66, 0.65));
  animation: duneFloatFront 62s linear infinite alternate;
}

.route-93 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3vh;
  height: 3.2vh;
  background: linear-gradient(180deg, rgba(55, 49, 46, 0.95), rgba(30, 26, 24, 0.98));
  border-radius: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 6px 12px rgba(0, 0, 0, 0.22);
}

.route-93::before,
.route-93::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(249, 233, 205, 0.35), rgba(249, 233, 205, 0.1));
}

.route-93::before { left: 1.6%; }
.route-93::after { right: 1.6%; }

.route-93 .lane {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    #f7d9a7 0,
    #f7d9a7 22px,
    transparent 22px,
    transparent 42px
  );
  opacity: 0.9;
}

.roadside-diner {
  position: absolute;
  left: 2.2vw;
  bottom: 6.2vh;
  width: 184px;
  height: 92px;
  z-index: 3;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.25));
  transform: translateZ(0);
}

.diner-sign {
  position: absolute;
  left: 50%;
  top: -2px;
  width: 112px;
  text-align: center;
  font: 700 0.72rem/1.1 "Trebuchet MS", "Segoe UI", sans-serif;
  color: #ffeecb;
  letter-spacing: 0.04em;
  background: linear-gradient(160deg, #8b2f28, #60201b);
  border: 1px solid rgba(247, 199, 148, 0.7);
  border-radius: 999px;
  padding: 4px 8px 5px;
  box-shadow: 0 0 0 rgba(255, 209, 145, 0.25);
  animation: signGlow 2.6s ease-in-out infinite;
  transform: translateX(-50%);
}

.diner-sign::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 4px;
  height: 26px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #7b3428, #4b231b);
  border-radius: 0 0 3px 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.diner-building {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 52px;
  border-radius: 6px 6px 2px 2px;
  background:
    linear-gradient(180deg, rgba(36, 25, 20, 0.25), rgba(36, 25, 20, 0.1)),
    linear-gradient(180deg, #e8c79a, #be9968);
  border: 1px solid rgba(113, 78, 45, 0.7);
  overflow: hidden;
}

.diner-building::before {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: -8px;
  height: 10px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #a74735, #7a3024);
  border: 1px solid rgba(86, 29, 21, 0.75);
}

.diner-door {
  position: absolute;
  left: 6px;
  bottom: 0;
  width: 25px;
  height: 34px;
  border-radius: 6px 6px 2px 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #8b5a36, #5f3921);
  border: 1px solid rgba(73, 42, 22, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.diner-door::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 10px;
  height: 13px;
  transform: translateX(-50%);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(181, 226, 245, 0.4), rgba(121, 179, 202, 0.22));
  border: 1px solid rgba(68, 107, 121, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.diner-door::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 16px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e7cf9d;
  box-shadow: 0 0 5px rgba(231, 207, 157, 0.6);
}

.window {
  position: absolute;
  top: 10px;
  width: 28px;
  height: 18px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(184, 229, 245, 0.5), rgba(134, 191, 212, 0.28)),
    linear-gradient(180deg, rgba(23, 31, 35, 0.18), rgba(23, 31, 35, 0.04));
  border: 1px solid rgba(68, 107, 121, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  z-index: 3;
  animation: windowGlow 3.2s ease-in-out infinite;
}

.w1 { left: 40px; }
.w2 { left: 82px; }
.w3 { left: 124px; }


.car {
  position: absolute;
  bottom: 4.35vh;
  width: 96px;
  height: 22px;
  border-radius: 8px 10px 6px 6px;
  background: linear-gradient(140deg, #365d7e, #223a50);
  border: 1px solid rgba(20, 36, 48, 0.72);
  box-shadow:
    0 5px 8px rgba(0, 0, 0, 0.3),
    inset 0 -4px 0 rgba(10, 18, 24, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  overflow: visible;
  will-change: transform, left;
  z-index: 5;
  animation:
    var(--drive-animation, drive93) var(--drive-duration, 32s) cubic-bezier(0.4, 0, 0.6, 1) var(--drive-delay, 0s) infinite,
    carBob var(--bob-duration, 1.2s) ease-in-out infinite;
}

.car::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  box-shadow: inherit;
  z-index: 0;
}

.car > * {
  position: absolute;
  z-index: 1;
}

.car.sedan {
  width: 82px;
  height: 17px;
  border-radius: 10px 12px 6px 6px;
  background: linear-gradient(140deg, #7a2f2f, #4d1d1d);
}

.car.pickup {
  width: 92px;
  background: linear-gradient(140deg, #6a5c30, #3f361d);
}

.dust-trail {
  content: "";
  position: absolute;
  right: 92%;
  bottom: 10px;
  width: 26px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 184, 140, 0.45) 0%, rgba(216, 184, 140, 0) 70%);
  filter: blur(1.2px);
  animation: dustTrail 1.2s ease-out infinite;
  z-index: 0;
}

.pickup-hood,
.pickup-cab,
.pickup-bed,
.pickup-bumper,
.pickup-light {
  display: block;
}

.pickup-cab {
  position: absolute;
  left: 22px;
  top: -12px;
  width: 44px;
  height: 15px;
  border-radius: 9px 9px 3px 3px;
  background: linear-gradient(130deg, #4a789d, #2e4e6a);
  border: 1px solid rgba(20, 36, 48, 0.5);
}

.car.sedan .pickup-cab {
  left: 18px;
  width: 36px;
  height: 12px;
  top: -9px;
}

.car.pickup .pickup-bed {
  width: 26px;
  right: 2px;
}

.pickup-cab::before,
.pickup-cab::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 14px;
  height: 8px;
  border-radius: 3px;
  background: linear-gradient(120deg, #d0ebf8, #9fc6db);
}

.pickup-cab::before { left: 3px; }
.pickup-cab::after { right: 3px; }

.pickup-hood {
  position: absolute;
  left: 3px;
  top: -5px;
  width: 18px;
  height: 7px;
  border-radius: 3px 3px 2px 2px;
  background: linear-gradient(140deg, #4a789d, #2e4e6a);
}

.pickup-bed {
  position: absolute;
  right: 4px;
  top: -5px;
  width: 22px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(140deg, #27435b, #1c3142);
}

.pickup-bumper {
  position: absolute;
  right: -3px;
  bottom: 3px;
  width: 6px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(180deg, #e4d7c5, #a79784);
}

.pickup-light {
  position: absolute;
  left: -2px;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffe08f;
  box-shadow: 0 0 7px rgba(255, 224, 143, 0.85);
}

.wheel {
  position: absolute;
  bottom: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, #5c5c5c 0 25%, #1f1f1f 26% 100%);
  border: 2px solid #151515;
  animation: wheelspin 0.8s linear infinite;
}

.wheel-left { left: 15px; }
.wheel-right { right: 15px; }

.car-upper {
  bottom: 4.75vh;
  --drive-animation: drive93Reverse;
}

.car-lower {
  bottom: 3.55vh;
  --drive-animation: drive93;
}

.car-1 {
  --drive-duration: 34s;
  --drive-delay: -8s;
  --bob-duration: 1.1s;
}

.car-2 {
  --drive-duration: 40s;
  --drive-delay: -20s;
  --bob-duration: 1.35s;
}

.car-3 {
  --drive-duration: 38s;
  --drive-delay: -14s;
  --bob-duration: 1.2s;
}

.car-4 {
  --drive-duration: 36s;
  --drive-delay: -12s;
  --bob-duration: 1.15s;
}

.car-5 {
  --drive-duration: 42s;
  --drive-delay: -24s;
  --bob-duration: 1.4s;
}

.car-6 {
  --drive-duration: 44s;
  --drive-delay: -18s;
  --bob-duration: 1.25s;
}

.tumbleweed {
  position: absolute;
  bottom: 7vh;
  width: 24px;
  height: 24px;
  border: 2px solid #82522f;
  border-radius: 50%;
  opacity: 0.65;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.22));
}

.tumbleweed::before,
.tumbleweed::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid #9c6a3f;
  border-radius: 50%;
}

.tumbleweed::after {
  inset: 7px;
  border-color: #70401f;
}

.tw-1 {
  animation: tumbleA 24s linear infinite;
  will-change: transform, left;
}

.tw-2 {
  animation: tumbleB 31s linear infinite;
  animation-delay: -13s;
  bottom: 10vh;
  will-change: transform, left;
}

.tw-3 {
  animation: tumbleC 19s linear infinite;
  animation-delay: -4s;
  bottom: 5vh;
  will-change: transform, left;
}

@keyframes drive93 {
  0% {
    left: -14vw;
    transform: translateY(0) scaleX(1);
  }
  18% {
    left: 2vw;
    transform: translateY(0) scaleX(1);
  }
  36% {
    left: 26vw;
    transform: translateY(0) scaleX(1);
  }
  56% {
    left: 56vw;
    transform: translateY(0) scaleX(1);
  }
  76% {
    left: 86vw;
    transform: translateY(0) scaleX(1);
  }
  90% {
    left: 100vw;
    transform: translateY(0) scaleX(1);
  }
  100% {
    left: 112vw;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes drive93Reverse {
  0% {
    left: 112vw;
    transform: translateY(0) scaleX(-1);
  }
  18% {
    left: 100vw;
    transform: translateY(0) scaleX(-1);
  }
  36% {
    left: 74vw;
    transform: translateY(0) scaleX(-1);
  }
  56% {
    left: 46vw;
    transform: translateY(0) scaleX(-1);
  }
  76% {
    left: 14vw;
    transform: translateY(0) scaleX(-1);
  }
  90% {
    left: -2vw;
    transform: translateY(0) scaleX(-1);
  }
  100% {
    left: -20vw;
    transform: translateY(0) scaleX(-1);
  }
}

@keyframes wheelspin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes tumbleA {
  0% {
    left: -9vw;
    transform: translateY(0) rotate(0deg) scale(1);
  }
  20% {
    transform: translateY(-4px) rotate(140deg) scale(1.03);
  }
  45% {
    transform: translateY(2px) rotate(320deg) scale(0.98);
  }
  75% {
    transform: translateY(-3px) rotate(560deg) scale(1.05);
  }
  100% {
    left: 108vw;
    transform: translateY(0) rotate(760deg) scale(1);
  }
}

@keyframes tumbleB {
  0% {
    left: -10vw;
    transform: translateY(1px) rotate(0deg) scale(1.15);
  }
  35% {
    transform: translateY(-2px) rotate(260deg) scale(1.22);
  }
  60% {
    transform: translateY(3px) rotate(440deg) scale(1.1);
  }
  100% {
    left: 108vw;
    transform: translateY(0) rotate(780deg) scale(1.2);
  }
}

@keyframes tumbleC {
  0% {
    left: -7vw;
    transform: translateY(0) rotate(0deg) scale(0.82);
  }
  25% {
    transform: translateY(-2px) rotate(180deg) scale(0.86);
  }
  65% {
    transform: translateY(2px) rotate(460deg) scale(0.8);
  }
  100% {
    left: 108vw;
    transform: translateY(0) rotate(720deg) scale(0.84);
  }
}

@keyframes carBob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.8px);
  }
}

@keyframes dinerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.4px); }
}

@keyframes signGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255, 209, 145, 0.2);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 10px rgba(255, 209, 145, 0.45);
    filter: brightness(1.08);
  }
}

@keyframes windowGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.16); }
}

@keyframes dustTrail {
  0% {
    opacity: 0.45;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-8px) scale(1.35);
  }
}

@keyframes canyonFloatFar {
  0% { transform: perspective(300px) rotateX(6deg) translateX(0); }
  100% { transform: perspective(300px) rotateX(6deg) translateX(-4vw); }
}

@keyframes canyonFloatMid {
  0% { transform: translateX(0); }
  100% { transform: translateX(-7vw); }
}

@keyframes canyonFloatNear {
  0% { transform: perspective(300px) rotateX(5deg) translateX(0); }
  100% { transform: perspective(300px) rotateX(5deg) translateX(-11vw); }
}

@keyframes duneFloatBack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-3vw); }
}

@keyframes duneFloatFront {
  0% { transform: translateX(0); }
  100% { transform: translateX(-5vw); }
}

@keyframes sunSparkle {
  0%, 100% {
    transform: scale(1);
    opacity: 0.58;
  }
  50% {
    transform: scale(1.06) rotate(5deg);
    opacity: 0.92;
  }
}

@keyframes sunGlint {
  0%, 100% {
    opacity: 0.44;
    transform: rotate(0deg) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: rotate(10deg) scale(1.04);
  }
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  margin: 1rem auto 0;
  width: min(1120px, calc(100% - 1.2rem));
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 239, 215, 0.55);
  background: rgba(35, 25, 20, 0.76);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  position: sticky;
  top: 0.6rem;
  z-index: 20;
}

.brand {
  font-family: "Georgia", serif;
  letter-spacing: 0.08em;
  color: #ffe2bc;
  font-size: 1.28rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 230, 190, 0.65);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.32);
}

.brand span {
  display: inline-block;
  font-size: 1.08em;
}

.site-header nav {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.site-header nav a {
  color: #fff5e3;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(120deg, rgba(255, 246, 235, 0.04), rgba(255, 255, 255, 0.08), rgba(255, 246, 235, 0.04));
  background-size: 220% 220%;
  animation: navShimmer 7s ease-in-out infinite;
}

.site-header nav a:hover {
  border-color: rgba(255, 219, 173, 0.5);
  background: rgba(223, 143, 84, 0.26);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(40, 25, 18, 0.16);
}

main {
  max-width: 1120px;
  margin: 1rem auto 0;
  padding: 0 0.6rem 1.2rem;
}

section,
article {
  margin-bottom: 1rem;
}

.hero,
.card,
.panel {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 26px rgba(80, 45, 20, 0.12);
}

.hero {
  padding: 2rem;
  background: linear-gradient(132deg, rgba(140, 73, 39, 0.87), rgba(44, 93, 79, 0.82));
  color: #fff8ed;
}

.hero h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.hero p {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  max-width: 62ch;
}

.menu-hero {
  background:
    radial-gradient(circle at top right, rgba(255, 219, 166, 0.18), transparent 34%),
    linear-gradient(132deg, rgba(128, 58, 32, 0.92), rgba(55, 87, 75, 0.86));
}

.menu-intro {
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.96), rgba(247, 233, 210, 0.92));
}

.menu-feature {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.2rem;
  align-items: center;
}

.menu-feature-media img {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(159, 115, 72, 0.24);
  box-shadow: 0 10px 24px rgba(84, 45, 19, 0.14);
}

.menu-feature-copy h2 {
  margin-bottom: 0.75rem;
}

.menu-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1rem;
}

.menu-showcase-tile {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(159, 115, 72, 0.24);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(244, 228, 201, 0.94));
  box-shadow:
    0 12px 28px rgba(84, 45, 19, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  min-height: 220px;
}

.menu-showcase-tile img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu-card {
  padding: 1.2rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(159, 115, 72, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.97), rgba(244, 228, 201, 0.94));
  box-shadow:
    0 12px 28px rgba(84, 45, 19, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(173, 122, 74, 0.04) 0 1px,
    transparent 1px 24px
  );
  pointer-events: none;
}

.menu-card > * {
  position: relative;
  z-index: 1;
}

.menu-card h2 {
  margin-bottom: 0.95rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid rgba(166, 96, 58, 0.24);
  color: #7a3f24;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.blog-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  padding: 1.15rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(159, 115, 72, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.97), rgba(244, 228, 201, 0.94));
  box-shadow:
    0 12px 28px rgba(84, 45, 19, 0.12),
  inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.blog-card-image-link {
  display: block;
  margin: -0.2rem 0 0.9rem;
  border-radius: 14px;
  overflow: hidden;
}

.blog-card-image {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(84, 45, 19, 0.12);
}

.blog-card h2 {
  margin: 0 0 0.7rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid rgba(166, 96, 58, 0.24);
  color: #7a3f24;
  font-size: 1.35rem;
  line-height: 1.12;
}

.blog-card h2 a {
  color: inherit;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.menu-list p,
.menu-copy,
.menu-note {
  margin: 0;
}

.menu-list p {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed rgba(148, 102, 62, 0.25);
}

.menu-list p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-list strong {
  color: #33231c;
  font-size: 1rem;
}

.menu-list span,
.menu-copy {
  color: rgba(53, 39, 31, 0.82);
  line-height: 1.45;
}

.menu-note {
  margin-top: 0.9rem;
  font-size: 0.94rem;
  color: #7b4a2e;
  font-style: italic;
}

h1,
h2,
h3 {
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 0.9rem 0 1.2rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(159, 115, 72, 0.18);
  background: linear-gradient(180deg, rgba(255, 247, 235, 0.88), rgba(244, 227, 201, 0.9));
  box-shadow: 0 12px 28px rgba(84, 45, 19, 0.08);
}

.admin-toolbar-form {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
}

.admin-toolbar select {
  min-width: 240px;
  padding: 0.62rem 0.75rem;
  border: 1px solid #dcbf95;
  border-radius: 999px;
  background: #fffefc;
  font: inherit;
}

.admin-toolbar-restore {
  flex-wrap: wrap;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(159, 115, 72, 0.18);
}

.admin-gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.admin-gallery-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.admin-gallery-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 249, 240, 0.92), rgba(242, 225, 198, 0.92));
  border: 1px solid rgba(159, 115, 72, 0.16);
}

.admin-gallery-media img,
.admin-gallery-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.admin-gallery-description {
  margin: 0.2rem 0 0.25rem;
  color: #533728;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  min-height: calc(1.45em * 4);
}

.admin-gallery-card.is-expanded .admin-gallery-description {
  display: block;
  -webkit-line-clamp: unset;
  min-height: 0;
}

.gallery-toggle {
  align-self: flex-start;
  margin-top: 0.15rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
}

.icon-only {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
}

.btn-icon {
  gap: 0.45rem;
}

.action-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.action-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.admin-gallery-action-stack {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.admin-gallery-actions {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  align-items: center;
}

.admin-gallery-actions .btn,
.admin-gallery-actions button {
  min-width: 0;
}

.inline-form {
  display: inline-flex;
  margin: 0;
}

.btn-danger {
  background: linear-gradient(120deg, #6c2d23, #914028);
}

.btn-danger:hover {
  filter: brightness(1.05);
}

.admin-shell {
  --admin-surface: #f5f7f9;
  --admin-surface-2: #eef2f5;
  --admin-surface-3: #e2e7ec;
  --admin-border: #ccd3da;
  --admin-ink: #28343c;
  --admin-muted: #60707c;
}

.admin-shell .card,
.admin-shell .panel {
  background: linear-gradient(180deg, var(--admin-surface) 0%, var(--admin-surface-2) 100%);
  border-color: var(--admin-border);
  color: var(--admin-ink);
  box-shadow: 0 10px 24px rgba(44, 58, 68, 0.08);
}

.admin-shell .btn,
.admin-shell button {
  background: linear-gradient(180deg, #f1f4f7 0%, #dfe5ea 100%);
  color: var(--admin-ink);
  border: 1px solid var(--admin-border);
  box-shadow: 0 4px 10px rgba(44, 58, 68, 0.06);
  animation: none;
}

.admin-shell .btn::after,
.admin-shell button::after {
  display: none;
}

.admin-shell .btn:hover,
.admin-shell button:hover {
  filter: brightness(0.99);
  box-shadow: 0 6px 14px rgba(44, 58, 68, 0.09);
}

.admin-shell .btn-secondary {
  background: linear-gradient(180deg, #e8edf1 0%, #d7dee4 100%);
}

.admin-shell .btn-danger {
  background: linear-gradient(180deg, #edf0f2 0%, #d9e0e5 100%);
  color: #7a5252;
}

.admin-shell .btn-danger:hover {
  filter: brightness(1.01);
}

.admin-shell .btn-icon,
.admin-shell .icon-only {
  min-width: 42px;
}

.admin-shell .admin-toolbar,
.admin-shell .admin-toolbar--compact {
  gap: 0.65rem;
}

.admin-shell .admin-toolbar a.btn,
.admin-shell .admin-toolbar button,
.admin-shell .admin-toolbar select,
.admin-shell .admin-tab-button {
  border-color: var(--admin-border);
}

.admin-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0.95rem 0 1.15rem;
}

.admin-tab-button {
  border-radius: 999px;
  padding: 0.62rem 1rem;
  background: linear-gradient(180deg, #edf1f4 0%, #dce2e8 100%);
  color: var(--admin-ink);
}

.admin-tab-button.is-active {
  background: linear-gradient(180deg, #55606a 0%, #38414a 100%);
  color: #fff;
}

.admin-tab-panels {
  display: grid;
  gap: 1rem;
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.is-active {
  display: block;
}

.admin-config-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.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;
}

.admin-gallery-page .card,
.admin-gallery-page .panel {
  background: linear-gradient(180deg, #f6f8fa 0%, #eef2f5 100%);
  border-color: #d0d7de;
  box-shadow: 0 10px 24px rgba(44, 58, 68, 0.08);
}

.admin-gallery-page .btn,
.admin-gallery-page button {
  background: linear-gradient(180deg, #f1f4f7 0%, #dfe5ea 100%);
  color: #28343c;
  border: 1px solid #ccd3da;
  box-shadow: 0 4px 10px rgba(44, 58, 68, 0.06);
  animation: none;
}

.admin-gallery-page .btn::after,
.admin-gallery-page button::after {
  display: none;
}

.admin-gallery-page .btn:hover,
.admin-gallery-page button:hover {
  filter: brightness(0.99);
  box-shadow: 0 6px 14px rgba(44, 58, 68, 0.09);
}

.admin-gallery-page .btn-secondary {
  background: linear-gradient(180deg, #e8edf1 0%, #d7dee4 100%);
}

.admin-gallery-page .btn-danger {
  background: linear-gradient(180deg, #edf0f2 0%, #d9e0e5 100%);
  color: #7a5252;
}

.admin-gallery-page .admin-gallery-card {
  background: linear-gradient(180deg, #f9fafb 0%, #edf1f4 100%);
  border-color: #d5dce3;
}

.admin-gallery-page .admin-gallery-media {
  background: linear-gradient(180deg, #f4f6f8 0%, #e4e9ee 100%);
  border-color: #d1d8df;
}

.admin-gallery-page .gallery-toggle {
  background: linear-gradient(180deg, #e6ebef 0%, #d7dfe5 100%);
  color: #35424b;
}

.admin-gallery-page .gallery-toggle .action-icon svg {
  transition: transform 180ms ease;
}

.admin-gallery-page .gallery-toggle.is-expanded .action-icon svg {
  transform: rotate(180deg);
}

.admin-gallery-page .admin-gallery-actions .btn,
.admin-gallery-page .admin-gallery-actions button,
.admin-gallery-page .gallery-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
}

.admin-gallery-page .admin-gallery-actions .btn {
  width: 42px;
  height: 42px;
}

.admin-gallery-page .admin-gallery-actions {
  gap: 0.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.admin-gallery-page .icon-only,
.admin-gallery-page .gallery-toggle {
  justify-content: center;
}

.btn-secondary {
  background: linear-gradient(120deg, #5d6e59, #8a6a33);
}

/* ── Review cards ───────────────────────────────────────────────────────── */

.reviews-summary-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  margin: 0 0 1.1rem;
  flex-wrap: wrap;
}

.reviews-overall-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

a.card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

a.card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(80, 45, 20, 0.18);
}

a.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

a.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(80, 45, 20, 0.18);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  flex: 0 0 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #b65f28, #8a4528);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-author {
  display: block;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-stars {
  font-size: 0.85rem;
  line-height: 1;
  margin-top: 0.15rem;
}

.review-stars-full {
  color: #f5a623;
}

.review-stars-empty {
  color: #d4b896;
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
}

.review-date {
  font-size: 0.78rem;
  opacity: 0.55;
}

.review-google-badge {
  flex: 0 0 1.3rem;
  width: 1.3rem;
  height: 1.3rem;
  margin-left: auto;
  opacity: 0.75;
}

.review-google-badge svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── /Review cards ──────────────────────────────────────────────────────── */

.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.56rem 0.95rem;
  background: linear-gradient(120deg, #b65f28, #8a4528);
  border: 1px solid rgba(255, 248, 238, 0.18);
  box-shadow: 0 8px 16px rgba(111, 57, 26, 0.16);
  white-space: nowrap;
  animation: buttonFloat 4.8s ease-in-out infinite, buttonGlow 7.5s ease-in-out infinite;
}

.btn-review span {
  display: inline-flex;
  align-items: center;
}

.review-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 0.95rem;
}

.review-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.btn-review:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 20px rgba(111, 57, 26, 0.22);
  filter: none;
}

.cta-row {
  margin: 1.25rem 0 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.hero .cta-row,
.menu-hero .cta-row {
  margin-top: 1.8rem;
}

.menu-hero .cta-row .btn-review,
.hero .cta-row .btn-review {
  margin-top: 0.2rem;
}

.story-link-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.story-link-row .btn {
  align-self: flex-start;
}

#a-new-love-story blockquote {
  margin: 1rem 0;
  padding: 0.95rem 1rem;
  border-left: 4px solid #b86a35;
  background: rgba(255, 248, 238, 0.72);
  border-radius: 12px;
  color: #5a3928;
  font-style: italic;
}

.love-story-media {
  position: relative;
  width: min(100%, 360px);
  margin: 1rem auto;
}

.love-story-media--center {
  display: block;
}

.love-story-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(159, 115, 72, 0.24);
  box-shadow: 0 12px 28px rgba(84, 45, 19, 0.14);
  object-fit: contain;
}

.love-story-copy {
  min-width: 0;
}

.story-layout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.story-media-shell {
  flex: 0 0 260px;
  max-width: 320px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #dcbf95;
  background: #000;
}

.story-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.story-copy {
  flex: 1;
  min-width: 260px;
}

.admin-note-spaced {
  margin-top: 0.6rem;
}

.admin-gallery-copy {
  margin-top: 0.75rem;
}

.gallery-current-preview {
  margin: 0.75rem 0 1rem;
}

.gallery-current-preview-label {
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: rgba(53, 39, 31, 0.82);
}

.gallery-current-preview-image {
  max-width: 220px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(159, 115, 72, 0.24);
  box-shadow: 0 10px 24px rgba(84, 45, 19, 0.12);
  display: block;
}

#home-gallery-rotator {
  margin-top: 0.35rem;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-gallery-tile {
  position: relative;
  padding: 0;
  border: 1px solid rgba(159, 115, 72, 0.2);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(244, 228, 201, 0.94));
  box-shadow:
    0 12px 28px rgba(84, 45, 19, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
  animation: galleryTileIn 420ms ease both;
}

.home-gallery-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.home-gallery-tile:hover img {
  transform: scale(1.03);
  filter: saturate(1.03);
}

.home-gallery-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(17, 10, 7, 0.12) 100%);
  pointer-events: none;
}

@keyframes galleryTileIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.admin-review-status {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.admin-toolbar--compact {
  margin: 0 0 0.9rem;
  padding: 0.8rem;
}

.google-settings-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.google-settings-form--stacked {
  margin-top: 0.9rem;
}

.google-settings-form--compact {
  margin-top: 0.4rem;
}

.google-settings-form select {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid #dcbf95;
  border-radius: 10px;
  background: #fffefc;
  font: inherit;
}

.google-settings-form button {
  align-self: flex-start;
}

.google-settings-form input {
  margin-top: 0.45rem;
}

.google-settings-form--stacked input,
.google-settings-form--stacked select,
.google-settings-form--compact input,
.google-settings-form--compact select {
  width: 100%;
}

.gallery-media-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.gallery-media-trigger img,
.gallery-media-trigger video {
  width: 100%;
  display: block;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  object-fit: cover;
}

.gallery-media-trigger img {
  height: 240px;
}

.gallery-video-thumb {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff6e8;
  font-weight: 800;
  letter-spacing: 0.04em;
  background:
    radial-gradient(circle at center, rgba(255, 247, 232, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(54, 38, 30, 0.88), rgba(121, 66, 37, 0.94));
  border: 1px solid rgba(159, 115, 72, 0.24);
  box-shadow: 0 10px 24px rgba(84, 45, 19, 0.14);
}

.gallery-video-thumb::before {
  content: '▶';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  margin-right: 0.8rem;
  background: rgba(255, 235, 209, 0.15);
  border: 1px solid rgba(255, 235, 209, 0.28);
  font-size: 1.15rem;
}

.gallery-video-thumb--compact {
  height: 180px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 10, 7, 0.78);
  backdrop-filter: blur(8px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1000px, calc(100vw - 1.25rem));
  max-height: 92vh;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 226, 191, 0.22);
  background: linear-gradient(180deg, rgba(255, 247, 235, 0.98), rgba(244, 227, 201, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-title {
  margin: 0;
  font-size: 1.15rem;
  color: #5c311d;
}

.lightbox-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 2.5rem 0.8rem 0;
}

.lightbox-counter {
  flex: 0 0 auto;
  color: rgba(92, 49, 29, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(84, 45, 19, 0.18);
}

.lightbox-media video,
.lightbox-media img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
}

.lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(159, 115, 72, 0.2);
  background: rgba(255, 255, 255, 0.85);
  color: #5c311d;
  font-size: 1.35rem;
  line-height: 1;
  padding: 0;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(159, 115, 72, 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: #5c311d;
  font-size: 1.9rem;
  line-height: 1;
  padding: 0;
  display: grid;
  place-items: center;
}

.lightbox-nav-prev {
  left: 0.7rem;
}

.lightbox-nav-next {
  right: 0.7rem;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(255, 247, 237, 0.98);
}

body.lightbox-open {
  overflow: hidden;
}

.card,
.panel {
  padding: 1rem;
}

.post-editor-panel,
.post-body {
  max-width: 920px;
  margin: 0 auto 1rem;
}

.post-editor-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.editor-shell {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(159, 115, 72, 0.2);
  background: linear-gradient(180deg, rgba(255, 247, 235, 0.98), rgba(244, 227, 201, 0.94));
  box-shadow: 0 10px 20px rgba(84, 45, 19, 0.08);
}

.editor-toolbar button {
  min-width: 2.8rem;
  padding: 0.55rem 0.8rem;
  background: linear-gradient(120deg, #5f6c53, #7f462b);
}

.editor-canvas {
  min-height: 360px;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid #dcbf95;
  background: #fffefc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.editor-canvas:focus {
  outline: 2px solid rgba(127, 70, 43, 0.28);
  outline-offset: 2px;
}

.editor-canvas img {
  max-width: 100%;
  height: auto;
}

.editor-image-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 0.75rem 0;
}

.editor-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(84, 45, 19, 0.12);
}

.editor-image-resize {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff7eb;
  border: 2px solid #7f462b;
  box-shadow: 0 4px 10px rgba(84, 45, 19, 0.2);
  cursor: nwse-resize;
}

.editor-image-resize::after {
  content: '';
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #7f462b;
  border-bottom: 2px solid #7f462b;
}

body.is-resizing-image,
body.is-resizing-image * {
  cursor: nwse-resize !important;
  user-select: none !important;
}

.editor-help {
  margin: 0;
  color: #7b4a2e;
  font-size: 0.94rem;
}

.post-content {
  line-height: 1.7;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  margin: 1rem 0;
  box-shadow: 0 10px 24px rgba(84, 45, 19, 0.12);
}

.post-content .editor-image-wrap {
  display: block;
  margin: 1rem 0;
}

.post-content .editor-image-resize {
  display: none !important;
}

.post-content h2,
.post-content h3 {
  color: #7a3f24;
  margin-top: 1.15rem;
}

.post-content blockquote {
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid #7f462b;
  background: rgba(255, 243, 226, 0.75);
  border-radius: 0 12px 12px 0;
}

.post-content ul,
.post-content ol {
  padding-left: 1.35rem;
}

.post-content a {
  text-decoration: underline;
}

.contact-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(126, 83, 48, 0.2);
  background: linear-gradient(135deg, rgba(46, 31, 24, 0.92), rgba(87, 49, 30, 0.88));
  color: #fff4e2;
  box-shadow: 0 10px 26px rgba(80, 45, 20, 0.16);
}

.contact-bar--page {
  margin-bottom: 0;
}

.contact-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-bar-item strong {
  color: #ffd8a6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
}

.contact-bar a {
  color: #fff4e2;
  text-decoration: none;
}

.contact-bar a:hover {
  text-decoration: underline;
}

.contact-socials {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.map-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(159, 115, 72, 0.24);
  box-shadow: 0 12px 28px rgba(84, 45, 19, 0.12);
  background: rgba(255, 255, 255, 0.35);
}

.map-frame iframe {
  border: 0;
  display: block;
}

.social-icon {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 216, 166, 0.18);
  border: 1px solid rgba(255, 216, 166, 0.35);
  color: #ffd8a6;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.social-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
  fill: currentColor;
}

.panel.narrow {
  max-width: 500px;
  margin: 0 auto;
}

label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid #dcbf95;
  border-radius: 10px;
  background: #fffefc;
  font: inherit;
}

a {
  color: var(--mesa);
  text-decoration: none;
}

button,
.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font: inherit;
  font-weight: 700;
  color: #fffaf2;
  background: linear-gradient(120deg, #275145, #7f462b);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  will-change: transform, box-shadow;
  transform: translateY(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background 180ms ease;
  background-size: 220% 220%;
  animation: buttonShimmer 6.4s ease-in-out infinite, buttonGlow 7.5s ease-in-out infinite;
}

button::after,
.btn::after,
.site-header nav a::after {
  content: '';
  position: absolute;
  inset: -45%;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.28) 50%, transparent 62%);
  transform: translateX(-55%) rotate(8deg);
  opacity: 0.35;
  animation: shimmerSweep 8s ease-in-out infinite;
}

button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(70, 44, 20, 0.18);
  filter: brightness(1.03);
}

button:active,
.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(70, 44, 20, 0.14);
}

button:focus-visible,
.btn:focus-visible {
  outline: 2px solid rgba(255, 248, 238, 0.75);
  outline-offset: 2px;
}

@keyframes buttonFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes buttonShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes buttonGlow {
  0%, 100% {
    box-shadow: 0 8px 16px rgba(70, 44, 20, 0.14);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 12px 24px rgba(70, 44, 20, 0.2);
    filter: brightness(1.02);
  }
}

@keyframes navShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes shimmerSweep {
  0%, 70% {
    transform: translateX(-60%) rotate(8deg);
    opacity: 0;
  }
  80% {
    opacity: 0.45;
  }
  100% {
    transform: translateX(60%) rotate(8deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  button,
  .btn {
    animation: none;
    transition: box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
  }

  .site-header nav a {
    animation: none;
  }

  button:hover,
  .btn:hover,
  .site-header nav a:hover,
  button:active,
  .btn:active {
    transform: none;
  }

  button::after,
  .btn::after,
  .site-header nav a::after {
    animation: none;
  }
}

.error {
  color: #8e1000;
  font-weight: 700;
}

.success {
  color: #2f6d45;
  font-weight: 700;
}

.feedback-form {
  max-width: 720px;
  margin: 0 auto;
}

.inline-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.inline-toggle input {
  width: auto;
  margin-top: 0;
}

.robot-check {
  margin: 0.2rem 0 0.95rem;
}

.robot-check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.4rem;
}

.robot-check-question {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(159, 115, 72, 0.22);
  color: #5c341f;
  font-weight: 700;
}

.robot-check-row input {
  max-width: 160px;
  margin-top: 0;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  margin: 0 auto 1rem;
  width: min(1120px, calc(100% - 1.2rem));
  border-radius: 14px;
  border: 1px solid rgba(255, 235, 210, 0.5);
  background: rgba(32, 22, 18, 0.78);
  color: #ffe8ca;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.site-footer-credit {
  text-align: right;
}

.site-footer-credit a {
  color: #ffd29f;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer-credit a:hover {
  color: #fff3df;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .site-header nav {
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-feature {
    grid-template-columns: 1fr;
  }

  .home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-review-status {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    margin-top: 0.6rem;
    width: calc(100% - 0.8rem);
    padding: 0.7rem;
    flex-wrap: wrap;
  }

  .brand span {
    font-size: 0.95em;
  }

  .site-header nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    width: 100%;
  }

  .site-header nav a {
    text-align: center;
    padding: 0.42rem 0.3rem;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  main {
    padding: 0 0.4rem 1rem;
  }

  .hero {
    padding: 1.25rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .home-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-showcase {
    grid-template-columns: 1fr;
  }

  .contact-bar {
    grid-template-columns: 1fr;
  }

  .sun {
    width: 120px;
    height: 120px;
    right: 4vw;
  }

  .dune-back {
    height: 18vh;
  }

  .dune-front {
    height: 22vh;
  }

  .canyon {
    bottom: 23vh;
  }

  .route-93 {
    left: 0;
    right: 0;
    height: 2.8vh;
  }

  .roadside-diner {
    left: 1vw;
    bottom: 6.4vh;
    width: 106px;
  }


  .diner-building {
    height: 34px;
  }

  .window {
    top: 11px;
    width: 16px;
    height: 10px;
  }

  .w1 { left: 7px; }
  .w2 { left: 30px; }
  .w3 { left: 53px; }

  .car {
    bottom: 4.3vh;
    width: 78px;
    height: 18px;
  }
  .pickup-cab {
    left: 17px;
    top: -9px;
    width: 34px;
    height: 11px;
  }
  .pickup-cab::before,
  .pickup-cab::after {
    top: 2px;
    width: 11px;
    height: 6px;
  }

  .tumbleweed {
    width: 26px;
    height: 26px;
  }

  .lightbox-panel {
    padding: 0.85rem;
  }

  .lightbox-header {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 0;
    padding-right: 2rem;
  }

  .lightbox-nav {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.55rem;
  }

  .lightbox-nav-prev {
    left: 0.45rem;
  }

  .lightbox-nav-next {
    right: 0.45rem;
  }

  .lightbox-close {
    top: 0.45rem;
    right: 0.45rem;
  }
}

.hours-table {
  width: 100%;
  max-width: 480px;
  border-collapse: collapse;
  font-size: 1rem;
}

.hours-table th,
.hours-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(126, 83, 48, 0.18);
}

.hours-table th {
  font-weight: 600;
  color: #7e5330;
  width: 55%;
}

.hours-table td {
  color: #3b2510;
}

.hours-table tbody tr:last-child th,
.hours-table tbody tr:last-child td {
  border-bottom: none;
}

/* ── Ordering / Pies ─────────────────────────────────────────────────────── */

.order-welcome { font-size: 0.9rem; margin: 0.5rem 0 0; opacity: 0.85; }
.order-welcome a { color: inherit; text-decoration: underline; }

.order-flash {
  margin: 0.75rem 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
}
.order-flash--error   { background: #fde8e8; color: #8b1a1a; border: 1px solid #f5c6c6; }
.order-flash--success { background: #e8f5e9; color: #1b5e20; border: 1px solid #c8e6c9; }
.order-flash--warning { background: #fff8e1; color: #5f4400; border: 1px solid #ffe082; }

.pie-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.pie-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.pie-card--sold-out { opacity: 0.6; }

.pie-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.pie-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: #f5ede0;
  height: 120px;
}

.pie-card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.pie-card-body h3 { margin: 0; font-size: 1.05rem; }
.pie-card-body p { margin: 0; font-size: 0.88rem; opacity: 0.8; flex: 1; }

.pie-card-footer { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.5rem; }
.pie-price { font-size: 1.1rem; }

.pie-badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
}
.pie-badge--out   { background: #fde8e8; color: #8b1a1a; }
.pie-badge--stock { background: #e8f5e9; color: #1b5e20; }

.pie-add-form { display: flex; align-items: center; gap: 0.4rem; margin-left: auto; }
.pie-qty-input { width: 3.5rem; padding: 0.3rem 0.4rem; border: 1px solid #dcbf95; border-radius: 8px; font: inherit; text-align: center; }

.order-cart-panel { margin-top: 1rem; }
.order-cart-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.order-cart-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(159,115,72,0.15); flex-wrap: wrap; }
.cart-item-name { flex: 1; min-width: 120px; font-weight: 600; }
.cart-item-price { min-width: 60px; text-align: right; }
.cart-qty-form { display: flex; align-items: center; gap: 0.3rem; }
.btn-icon { background: none; border: none; cursor: pointer; font-size: 0.9rem; opacity: 0.5; padding: 0.2rem 0.4rem; }
.btn-icon:hover { opacity: 1; }
.order-cart-total { text-align: right; display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.9rem; margin-bottom: 1rem; }

/* ── Checkout ────────────────────────────────────────────────────────────── */

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1rem;
  align-items: start;
}

.checkout-form-panel, .checkout-summary { padding: 1.5rem; }

.checkout-form fieldset { border: 1px solid rgba(159,115,72,0.2); border-radius: 12px; padding: 1rem; margin-bottom: 1rem; }
.checkout-form legend { font-weight: 700; padding: 0 0.5rem; }
.checkout-form label { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.75rem; }
.checkout-form input:not([type=checkbox]):not([type=radio]),
.checkout-form textarea,
.checkout-form select { padding: 0.55rem 0.75rem; border: 1px solid #dcbf95; border-radius: 8px; font: inherit; width: 100%; box-sizing: border-box; }
.checkout-form input[readonly] { background: #f5f0e8; opacity: 0.7; }
.checkout-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 0.5rem; }
.checkout-checkbox { flex-direction: row !important; align-items: center !important; gap: 0.5rem !important; font-weight: 400 !important; cursor: pointer; }
.checkout-checkbox input { width: auto !important; }
.btn-checkout { width: 100%; margin-top: 0.5rem; font-size: 1rem; padding: 0.8rem; }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.5rem; }
.slot-option { border: 2px solid rgba(159,115,72,0.25); border-radius: 10px; padding: 0.75rem; cursor: pointer; display: flex; flex-direction: column; gap: 0.2rem; transition: border-color 0.15s; }
.slot-option:has(input:checked) { border-color: #b65f28; background: rgba(182,95,40,0.06); }
.slot-option--full { opacity: 0.45; cursor: not-allowed; }
.slot-option input { display: none; }
.slot-date { font-weight: 700; font-size: 0.9rem; }
.slot-time { font-size: 0.82rem; }
.slot-avail { font-size: 0.78rem; opacity: 0.65; }

.checkout-items { list-style: none; padding: 0; margin: 0 0 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.checkout-items li { display: flex; justify-content: space-between; font-size: 0.9rem; }
.checkout-totals { border-top: 1px solid rgba(159,115,72,0.2); padding-top: 0.6rem; display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.9rem; margin-bottom: 1rem; }
.checkout-totals > div { display: flex; justify-content: space-between; }
.checkout-total-row { font-size: 1rem; }

/* ── Order success ───────────────────────────────────────────────────────── */

.order-success-panel { max-width: 600px; margin: 2rem auto; text-align: center; padding: 2.5rem; }
.order-success-icon { font-size: 3rem; width: 4rem; height: 4rem; background: #e8f5e9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: #2a7a2a; font-weight: 700; }
.order-success-summary { text-align: left; background: rgba(159,115,72,0.07); border-radius: 12px; padding: 1rem 1.25rem; margin: 1.5rem 0; }
.order-success-summary ul { padding-left: 1.25rem; margin: 0.5rem 0; }

/* ── Account pages ───────────────────────────────────────────────────────── */

.account-panel { max-width: 480px; margin: 2rem auto; padding: 2rem; }
.account-form { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.account-form label { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.9rem; font-weight: 600; }
.account-form input { padding: 0.55rem 0.75rem; border: 1px solid #dcbf95; border-radius: 8px; font: inherit; }

.orders-list, .orders-admin-list { display: flex; flex-direction: column; gap: 0.75rem; }
.order-row, .order-admin-card { padding: 1rem 1.25rem; }
.order-row-header { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.order-date { font-size: 0.82rem; opacity: 0.6; margin-left: auto; }
.order-items-list { list-style: none; padding: 0; margin: 0.4rem 0; font-size: 0.88rem; display: flex; flex-direction: column; gap: 0.15rem; }
.order-row-footer { font-size: 0.85rem; opacity: 0.75; display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

.order-status { font-size: 0.75rem; padding: 0.2rem 0.6rem; border-radius: 999px; font-weight: 600; text-transform: capitalize; }
.order-status--pending          { background: #fff8e1; color: #5f4400; }
.order-status--paid             { background: #e3f2fd; color: #0d47a1; }
.order-status--preparing        { background: #e8f5e9; color: #1b5e20; }
.order-status--out_for_delivery { background: #f3e5f5; color: #4a148c; }
.order-status--delivered        { background: #e8f5e9; color: #1b5e20; }
.order-status--cancelled        { background: #fde8e8; color: #8b1a1a; }

/* ── Admin ordering extras ───────────────────────────────────────────────── */

.admin-badge { display: inline-flex; align-items: center; justify-content: center; background: #c0392b; color: #fff; border-radius: 999px; font-size: 0.7rem; font-weight: 700; min-width: 1.2rem; height: 1.2rem; padding: 0 0.3rem; margin-left: 0.3rem; }
.admin-select-sm { padding: 0.3rem 0.5rem; border: 1px solid #dcbf95; border-radius: 8px; font: inherit; font-size: 0.85rem; }
.btn-sm { padding: 0.3rem 0.65rem; font-size: 0.82rem; }
.btn-danger { background: linear-gradient(120deg, #c0392b, #922b21); }

@media (max-width: 768px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-row { grid-template-columns: 1fr 1fr; }
  .admin-pies-grid { grid-template-columns: 1fr; }
}

