:root {
  --red: #aa1218;
  --deep: #1f0d0d;
  --gold: #f0a500;
  --cream: #fff7e6;
  --ink: #241918;
  --muted: #706260;
  --line: rgba(32, 24, 22, 0.14);
  --shadow: 0 24px 70px rgba(66, 18, 13, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf0 0%, #fffdf8 52%, #fff5e2 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.top-contact {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px clamp(16px, 4vw, 54px);
  background: #fff;
  border-bottom: 1px solid rgba(32,24,22,0.08);
  font-size: 13px;
  font-weight: 800;
  color: var(--deep);
}
.top-contact > div { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.top-contact span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
}
.top-social a { color: var(--red); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(16px, 4vw, 54px);
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 26px rgba(31, 13, 13, 0.08);
}
.brand { display: flex; align-items: center; min-width: 260px; }
.brand-logo {
  width: clamp(210px, 19vw, 330px);
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.main-nav { display: flex; gap: 22px; align-items: center; font-size: 15px; }
.main-nav > a,
.nav-dropdown > button {
  color: #2a1a36;
  font-weight: 900;
  position: relative;
  background: transparent;
  border: 0;
  padding: 13px 0;
  box-shadow: none;
  cursor: pointer;
}
.main-nav > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6234);
  transform: scaleX(0);
  transform-origin: left;
  transition: 180ms ease;
}
.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown > button.active::after,
.nav-dropdown:hover > button::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown button span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 5px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}
.nav-dropdown:hover button span,
.nav-dropdown.open button span {
  transform: translateY(2px) rotate(225deg);
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
}
.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 310px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(170,18,24,0.16);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(31, 13, 13, 0.16);
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  transition: 180ms ease;
  overflow-x: hidden;
}
.dropdown-panel a {
  display: block;
  padding: 14px 12px;
  color: #30213d;
  font-weight: 900;
  border-radius: 8px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.dropdown-panel a:hover { color: var(--red); background: #fff4f6; }
.menu-dropdown { columns: 2; width: 420px; }
.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.mobile-menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--deep);
  color: white;
  padding: 11px 13px;
  font-weight: 900;
}
.header-cta, .primary-btn, .secondary-btn, button {
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}
.header-cta, .primary-btn {
  border: 0;
  background: linear-gradient(135deg, #d72b80, #ff6234);
  color: white;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(215, 43, 128, 0.24);
}
.secondary-btn {
  background: white;
  color: var(--red);
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
  min-height: calc(100vh - 124px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: 96px clamp(16px, 5vw, 72px) 62px;
  overflow: hidden;
  color: white;
  background: var(--deep);
}
.hero video, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(31, 13, 13, 0.94), rgba(88, 14, 18, 0.78) 48%, rgba(31, 13, 13, 0.46)),
    linear-gradient(0deg, rgba(31, 13, 13, 0.82), transparent 46%),
    radial-gradient(circle at 15% 25%, rgba(240, 165, 0, 0.18), transparent 28%);
}
.hero-content, .lead-card { position: relative; z-index: 2; }
.hero-content { max-width: 880px; }
.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
.hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(44px, 6.8vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero p {
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.65;
  max-width: 760px;
  color: rgba(255,255,255,0.88);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-proof { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-proof span {
  min-width: 142px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.82);
}
.hero-proof strong { display: block; color: white; font-size: 24px; }

.lead-card, .contact-form, .content-page {
  background: rgba(255, 253, 248, 0.97);
  color: var(--ink);
  padding: clamp(22px, 3vw, 32px);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.5);
}
.lead-card::before {
  content: "Quick quote";
  position: absolute;
  top: -14px;
  right: 22px;
  padding: 7px 12px;
  background: var(--gold);
  color: var(--deep);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.lead-card h2 { margin: 0 0 18px; font-size: 28px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 15px;
  margin-bottom: 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 112px; resize: vertical; }
.menu-picker {
  margin-bottom: 12px;
}
.menu-item-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: 190px;
  overflow: auto;
  padding: 10px;
  margin-top: -4px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.menu-item-options p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.menu-item-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(32,24,22,0.08);
  border-radius: 8px;
  color: #3d302e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}
.menu-item-check input {
  width: auto;
  margin: 2px 0 0;
  accent-color: var(--red);
}
.lead-card button, .contact-form button {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: linear-gradient(135deg, var(--red), #d01920);
  color: white;
}
.notice {
  padding: 10px 12px;
  background: #e9f8ed;
  color: #116331;
  border-radius: 8px;
  font-weight: 800;
}
.form-whatsapp-link {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: -2px 0 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #12a968;
  color: white;
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(90deg, #170909, #381011, #170909);
  color: white;
  border-top: 4px solid var(--gold);
}
.trust-strip span {
  padding: 20px 18px;
  text-align: center;
  font-weight: 900;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.section { padding: 96px clamp(16px, 5vw, 72px); }
.section h2, .content-page h1 {
  margin: 8px 0 20px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.05;
}
.section > p, .split > div > p, .content-page p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.service-card, .menu-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 16px 45px rgba(66, 18, 13, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.service-card:hover, .menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(170, 18, 24, 0.3);
  box-shadow: 0 24px 64px rgba(66, 18, 13, 0.13);
}
.service-card h3, .menu-card h3 { margin: 0 0 10px; color: var(--red); }
.service-card p, .menu-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.process-section { background: #fffdf8; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.process-grid article {
  padding: 30px;
  border-radius: 16px;
  background: var(--deep);
  color: white;
  box-shadow: var(--shadow);
}
.process-grid span { color: var(--gold); font-weight: 900; }
.process-grid h3 { margin: 12px 0 10px; font-size: 24px; }
.process-grid p { margin: 0; color: rgba(255,255,255,0.74); line-height: 1.65; }

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.6fr);
  gap: clamp(32px, 5vw, 70px);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,247,230,0.72));
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.menu-card {
  background: linear-gradient(145deg, rgba(255, 252, 245, 0.96), rgba(255, 243, 213, 0.82));
  padding: 22px;
}
.menu-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.menu-card-head span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--deep);
  color: var(--gold);
  font-weight: 900;
}
.menu-card h3 { margin: 0; }
.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 16px;
}
.menu-card li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 10px;
  break-inside: avoid;
  padding: 8px 0;
  border-top: 1px solid rgba(32, 24, 22, 0.08);
  color: #4c3f3b;
  font-weight: 650;
  line-height: 1.35;
}
.menu-card li img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 8px 16px rgba(66,18,13,0.12);
}

.premium-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 30px;
  background: linear-gradient(135deg, rgba(31,13,13,0.95), rgba(97,15,18,0.95));
  color: white;
}
.premium-band h2 { color: white; }
.premium-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.premium-points p {
  margin: 0;
  padding: 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.76);
  line-height: 1.65;
}
.premium-points strong { color: white; font-size: 18px; }

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.area-grid span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(66,18,13,0.06);
}
.area-grid strong { color: var(--red); white-space: nowrap; }
.section-intro { max-width: 820px; margin-top: -8px; }
.local-seo-section {
  background: #fffdf8;
  padding-top: 70px;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-height: 360px;
  overflow: auto;
  padding: 6px 4px 10px;
}
.seo-grid span {
  display: block;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: #4c3f3b;
  font-size: 13px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  background:
    radial-gradient(circle at 10% 10%, rgba(240,165,0,0.14), transparent 28%),
    linear-gradient(135deg, #1a0909, #341011);
  color: white;
}
.contact-section p { color: rgba(255,255,255,0.78); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.page-shell { padding: 80px clamp(16px, 5vw, 72px); }
.content-page { max-width: 940px; margin: 0 auto; }
.content-page p { white-space: pre-line; }

.chat-toggle {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 80;
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #d72b80, #ff6234);
  color: white;
  padding: 0;
  font-size: 22px;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.chat-box {
  position: fixed;
  right: 28px;
  bottom: 108px;
  width: min(430px, calc(100vw - 28px));
  max-height: min(720px, calc(100dvh - 132px));
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 81;
  overflow: hidden;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: 180ms ease;
}
.chat-box.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, #c82373, #a81277);
  color: white;
}
.chat-flow {
  max-height: calc(100dvh - 230px);
  overflow-y: auto;
}
.chat-head small { display: block; margin-top: 4px; opacity: 0.85; }
.bot-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.16);
  font-weight: 900;
}
.chat-head button {
  margin-left: auto;
  border: 1px solid rgba(255,255,255,0.24);
  background: transparent;
  color: white;
  width: 34px;
  height: 34px;
}
.chat-services {
  padding: 16px;
  background: #fff8fb;
  border-bottom: 1px solid rgba(200,35,115,0.12);
}
.chat-flow {
  background: #fff8fb;
  padding: 16px;
}
.chat-menu-items {
  grid-template-columns: 1fr;
  max-height: 170px;
}
.chat-step { display: none; }
.chat-step.active { display: block; }
.chat-step label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
  color: #2a1a36;
}
.chat-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.chat-option-grid button,
.chat-next-btn,
.chat-reset-btn,
.chat-lead-form button,
.chat-whatsapp-final {
  border: 0;
  padding: 12px;
  background: white;
  color: #d72b80;
  border: 1px solid rgba(215,43,128,0.2);
  box-shadow: none;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
}
.chat-next-btn,
.chat-lead-form button,
.chat-whatsapp-final {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(135deg, #ec2a8a, #ff6234);
  color: white;
}
.chat-thanks h3 { margin: 0 0 8px; color: #2a1a36; }
.chat-thanks p { color: var(--muted); line-height: 1.6; }
.chat-reset-btn { width: 100%; margin-top: 10px; }

.inner-hero {
  padding: 96px clamp(16px, 5vw, 72px);
  background:
    radial-gradient(circle at 15% 20%, rgba(240,165,0,0.18), transparent 28%),
    linear-gradient(135deg, #1a0909, #4a1012);
  color: white;
}
.inner-hero h1 {
  max-width: 900px;
  margin: 12px 0 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1;
}
.inner-hero p {
  max-width: 900px;
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  line-height: 1.75;
}
.item-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.item-tile {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 16px 45px rgba(66,18,13,0.08);
}
.item-tile img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 14px;
}
.item-tile h3 { margin: 0 0 8px; color: var(--red); }
.item-tile p { margin: 0; color: var(--muted); line-height: 1.55; }

.service-card strong {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
}
.chat-services label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
  color: #2a1a36;
}
.chat-service-select {
  border: 2px solid #ec2a8a;
  border-radius: 14px;
  font-weight: 900;
}
.chat-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.chat-chips button {
  border: 1px solid rgba(215,43,128,0.2);
  padding: 12px;
  background: white;
  color: #d72b80;
  box-shadow: none;
}
.chat-messages { height: 170px; overflow-y: auto; padding: 14px; background: #fff8fb; }
.chat-messages p {
  padding: 10px 12px;
  border-radius: 16px;
  line-height: 1.45;
  max-width: 88%;
}
.chat-messages .bot { background: white; }
.chat-messages .user { background: #dff5e7; margin-left: auto; }
.chat-form {
  display: grid;
  grid-template-columns: 1fr 78px;
  gap: 8px;
  padding: 12px 16px;
  background: #fff8fb;
}
.chat-form input { margin: 0; }
.chat-form button {
  border: 0;
  background: linear-gradient(135deg, #ec2a8a, #ff6234);
  color: white;
  border-radius: 14px;
}
.chat-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 16px;
  background: #fff8fb;
}
.chat-actions a {
  display: block;
  padding: 15px;
  border-radius: 14px;
  background: #12a968;
  color: white;
  font-weight: 800;
}
.chat-actions a:last-child { background: #ff6234; }

footer {
  padding: 44px clamp(16px, 5vw, 72px) 22px;
  background:
    radial-gradient(circle at 15% 30%, rgba(240,165,0,0.12), transparent 24%),
    linear-gradient(135deg, #2b0732, #4a0d47 55%, #250824);
  color: white;
}
footer p { color: rgba(255,255,255,0.78); line-height: 1.7; }
.footer-cta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 42px;
}
.footer-cta-row a {
  display: grid;
  place-items: center;
  min-height: 62px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d72b80, #ff6234);
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 42px;
}
.footer-grid h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 20px;
}
.footer-grid h3 {
  color: #ffd45b;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}
.footer-grid a:not(.footer-whatsapp) {
  display: block;
  margin: 0 0 14px;
  color: white;
}
.footer-contact-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}
.footer-whatsapp {
  display: inline-flex;
  margin: 8px 0 12px;
  padding: 13px 16px;
  border-radius: 999px;
  background: #12a968;
  color: white;
  font-weight: 900;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.75);
}

.admin-body { background: #f6f7fb; }
.admin-shell { display: grid; grid-template-columns: 278px minmax(0, 1fr); min-height: 100vh; }
.admin-side {
  position: sticky;
  top: 0;
  height: 100vh;
  background: linear-gradient(180deg, #1f0d0d, #391012);
  color: white;
  padding: 24px;
  box-shadow: 16px 0 40px rgba(31,13,13,0.12);
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.admin-brand span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #ffd45b;
  color: var(--deep);
  font-weight: 950;
}
.admin-brand h2 { margin: 0; line-height: 1; }
.admin-brand small { display: block; margin-top: 5px; color: rgba(255,255,255,0.64); font-weight: 800; }
.admin-side a {
  display: block;
  padding: 13px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,0.84);
  font-weight: 800;
  margin-bottom: 6px;
}
.admin-side a:hover, .admin-side .active {
  background: rgba(255,255,255,0.13);
  color: white;
}
.admin-main {
  min-width: 0;
  padding: 30px;
  overflow-x: hidden;
}
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.admin-topbar p {
  margin: 0 0 6px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.admin-topbar h1 { margin: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1; }
.admin-site-link {
  display: inline-flex;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--deep);
  color: white;
  font-weight: 900;
}
.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.admin-metrics article {
  padding: 20px;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(32,24,22,0.08);
  box-shadow: 0 14px 34px rgba(31,13,13,0.06);
}
.admin-metrics span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.admin-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--deep);
  font-size: 34px;
  line-height: 1;
}
.admin-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: 0 16px 42px rgba(31,13,13,0.06);
}
.admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.admin-card-head h2 { margin: 0; }
.admin-card-head p { margin: 6px 0 0; color: var(--muted); font-weight: 700; }
.admin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.admin-password-panel {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid rgba(170,18,24,0.14);
  border-radius: 8px;
  background: #fffdf8;
}
.admin-password-panel h2 {
  margin: 0 0 8px;
  font-size: 22px;
}
.password-hint {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}
.show-password-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  margin-top: 4px;
  font-weight: 900;
}
.show-password-row input {
  width: auto;
  margin: 0;
  accent-color: var(--red);
}
.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(32,24,22,0.08);
  border-radius: 8px;
}
.admin-table { width: 100%; border-collapse: collapse; background: white; min-width: 880px; }
.admin-table th, .admin-table td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.45;
}
.admin-table th {
  background: #fff8ea;
  color: #3a2423;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.admin-table small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}
.leads-table td:nth-child(5) {
  max-width: 340px;
  white-space: pre-line;
}
.admin-source-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff1d2;
  color: #7a3308;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}
.small-btn {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 8px;
  border: 0;
  background: var(--red);
  color: white;
  font-weight: 800;
}
.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--deep);
}
.login-card { width: min(420px, 100%); }
.login-card::before { display: none; }

@media (max-width: 1100px) {
  .main-nav { gap: 14px; font-size: 14px; }
  .brand { min-width: 210px; }
  .brand-logo { width: 210px; }
}

@media (max-width: 960px) {
  .top-contact { display: none; }
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px clamp(14px, 4vw, 28px);
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 42px;
    border: 1px solid rgba(170,18,24,0.18);
    border-radius: 8px;
    background: #fff;
    color: var(--deep);
    box-shadow: 0 10px 24px rgba(31,13,13,0.08);
  }
  .main-nav {
    order: 4;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-height: calc(100dvh - 86px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(170,18,24,0.14);
    border-radius: 8px;
    box-shadow: 0 20px 46px rgba(31,13,13,0.12);
  }
  .main-nav.open { display: flex; }
  .main-nav > a,
  .nav-dropdown > button {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 8px;
    text-align: left;
  }
  .main-nav > a.active {
    background: #fff4f6;
    color: var(--red);
  }
  .nav-dropdown > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-nav > a::after,
  .nav-dropdown > button::after {
    bottom: 0;
  }
  .dropdown-panel,
  .menu-dropdown {
    position: static;
    left: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    columns: 1;
    opacity: 0;
    pointer-events: none;
    transform: none !important;
    box-shadow: none;
    display: none !important;
    margin: 0 0 4px;
    padding: 10px;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fffdf8;
    border: 1px solid rgba(170,18,24,0.14);
    border-radius: 8px;
  }
  .nav-dropdown:hover .dropdown-panel {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: none !important;
  }
  .nav-dropdown.open:hover .dropdown-panel,
  .nav-dropdown.open .dropdown-panel {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  .nav-dropdown:hover button span {
    transform: translateY(-2px) rotate(45deg);
  }
  .nav-dropdown.open:hover button span,
  .nav-dropdown.open button span {
    transform: translateY(2px) rotate(225deg);
  }
  .dropdown-panel a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    white-space: normal;
  }
  .nav-dropdown::after { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 86px; }
  .lead-card { max-width: 520px; }
  .service-grid, .area-grid, .menu-grid, .premium-points, .seo-grid, .item-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-section, .premium-band { grid-template-columns: 1fr; }
  .admin-shell { display: block; }
  .admin-side {
    position: static;
    height: auto;
    padding: 18px;
  }
  .admin-main { padding: 18px; }
  .admin-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .brand { min-width: 0; }
  .brand-logo { width: 148px; height: 42px; }
  .header-cta { display: none; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 16px; }
  .trust-strip, .service-grid, .menu-grid, .area-grid, .two-col, .admin-grid, .admin-metrics, .premium-points, .footer-cta-row, .footer-grid, .seo-grid, .item-grid, .chat-option-grid, .menu-item-options { grid-template-columns: 1fr; }
  .menu-card ul { columns: 1; }
  .hero-proof span { min-width: calc(50% - 8px); }
  .chat-box {
    right: 10px;
    bottom: 84px;
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 102px);
  }
  .chat-flow { max-height: calc(100dvh - 190px); }
  .chat-toggle {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    font-size: 18px;
  }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .inner-hero { padding-top: 70px; padding-bottom: 70px; }
  .inner-hero h1 { font-size: 36px; }
  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }
  .admin-site-link { width: 100%; }
  .admin-card { padding: 16px; }
  .menu-card,
  .service-card,
  .item-tile,
  .process-grid article,
  .premium-points p,
  .footer-contact-card {
    border-radius: 8px;
  }
}
