:root {
  --rose: #C45C6A;
  --rose-dark: #7A3540;
  --rose-soft: #FCEEF0;
  --gold: #D4AF37;
  --gold-bright: #F0D060;
  --bg: #FBF7F3;
  --bg-warm: #F7F0E6;
  --text: #2A1F1F;
  --muted: #6B5550;
  --card: #fff;
  --border: rgba(212, 175, 55, 0.28);
  --dark: #2A1F1F;
  --radius: 16px;
  --shadow: 0 8px 28px rgba(122, 53, 64, 0.12), 0 0 18px rgba(212, 175, 55, 0.18);
  --shadow-sm: 0 4px 16px rgba(122, 53, 64, 0.08), 0 0 10px rgba(212, 175, 55, 0.1);
  --glow: 0 0 22px rgba(212, 175, 55, 0.4), 0 0 40px rgba(240, 208, 96, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Sticky nav ── */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem;
  background: rgba(255, 254, 248, 0.94);
  border-bottom: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  flex-wrap: wrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.top-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--rose-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}
.top-nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240, 208, 96, 0.7);
  box-shadow: var(--glow);
  background: #1a1412;
}
.top-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  justify-content: flex-end;
}
.top-nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.top-nav-links a:hover,
.top-nav-links a.active {
  background: var(--rose-soft);
  color: var(--rose-dark);
}
.top-nav-login {
  background: var(--rose) !important;
  color: #fff !important;
  padding: 0.5rem 1.05rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(240, 208, 96, 0.55) !important;
  box-shadow: 0 4px 14px rgba(196, 92, 106, 0.35), 0 0 18px rgba(212, 175, 55, 0.45), 0 0 32px rgba(240, 208, 96, 0.2);
}
.top-nav-login:hover {
  background: var(--rose-dark) !important;
  color: #fff !important;
}

/* ── Page header ── */
header {
  background:
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(240, 208, 96, 0.38), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 90%, rgba(212, 175, 55, 0.22), transparent 50%),
    linear-gradient(145deg, #C45C6A 0%, #7A3540 55%, #5C2A32 100%);
  color: #fff;
  padding: 2.75rem 1.25rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -1px 0 rgba(240, 208, 96, 0.25);
}
.site-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1.15rem;
}
.site-brand img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(240, 208, 96, 0.55), 0 0 48px rgba(212, 175, 55, 0.3), 0 10px 28px rgba(0, 0, 0, 0.22);
  border: 3px solid rgba(240, 208, 96, 0.85);
  background: #1a1412;
}
.site-brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 0 18px rgba(240, 208, 96, 0.45), 0 1px 3px rgba(0, 0, 0, 0.2);
}
.role-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}
header h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
header p {
  margin: 0 auto;
  opacity: 0.92;
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.55;
}

/* ── Main content ── */
main {
  max-width: 820px;
  margin: -1.75rem auto 2.5rem;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.85rem 1.65rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
h2 {
  font-size: 1.15rem;
  color: var(--rose);
  margin: 0 0 0.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  color: var(--text);
}
ul {
  margin: 0.4rem 0 0.85rem;
  padding-left: 0;
  list-style: none;
}
li {
  margin-bottom: 0.65rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.5;
}
li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.85;
}
li strong { color: var(--rose-dark); }
a { color: var(--rose); }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  padding: 0.85rem 1.5rem;
  background: var(--rose);
  color: #fff !important;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(196, 92, 106, 0.3);
  transition: background 0.15s ease, transform 0.15s ease;
}
.cta:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  align-items: center;
}
.links a {
  font-weight: 600;
  text-decoration: none;
}
.links a:hover { text-decoration: underline; }

.role-switch span {
  display: block;
  width: 100%;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Role benefit pages (customers / staff / owners) ── */
main.role-main {
  max-width: 1080px;
}
.problem-banner {
  background: linear-gradient(135deg, #F5E6E8 0%, #FAF7F4 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.problem-banner .eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-dark);
}
.problem-banner p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
}
.benefits-head {
  margin: 1.25rem 0 0.85rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--rose-dark);
  letter-spacing: -0.02em;
}
.benefits-sub {
  margin: -0.35rem 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
@media (min-width: 720px) {
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .benefit-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.benefit-card .num {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.55rem;
  background: var(--rose);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}
.benefit-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--rose-dark);
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.benefit-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}
.teaser-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin: 1rem auto 0;
  max-width: 640px;
}
.teaser-row span {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
}
.role-hero-photo {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: -0.5rem 0 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.cta-row-center {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin: 1.25rem 0 0.5rem;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid rgba(107, 94, 88, 0.12);
}
footer a { margin: 0 0.5rem; }

.site-footer {
  text-align: center;
  padding: 2.25rem 1rem 2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  background: var(--dark);
  margin-top: 1.5rem;
}
.footer-roles-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.footer-roles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}
.footer-roles a {
  margin: 0;
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.footer-roles a:hover,
.footer-roles a.active {
  border-color: var(--rose);
  background: rgba(196, 92, 106, 0.25);
  color: #fff;
}
.footer-meta {
  margin-bottom: 0.85rem;
}
.footer-meta a {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
}
.footer-meta a:hover { color: var(--rose); }
.site-footer p { color: rgba(255, 255, 255, 0.4); margin: 0; font-size: 0.82rem; }

/* Contact panel (privacy / terms) */
.contact-panel { margin-top: 0.5rem; }
.contact-panel h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.25rem 0 0.65rem;
}
.contact-panel h3:first-child { margin-top: 0; }
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact-list li {
  border-bottom: 1px solid var(--border);
  margin: 0;
  padding: 0;
}
.contact-list li::before { display: none; }
.contact-list li:last-child { border-bottom: none; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s ease;
}
.contact-link:hover { background: #faf6f3; }
.contact-icon.whatsapp {
  background: rgba(37, 211, 102, 0.18);
  color: #128C7E;
  font-size: 1.15rem;
}
.contact-link strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
}
.contact-link span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.1rem;
}
.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 42px; height: 42px; display: block; }
.contact-icon.email { background: var(--rose-soft); color: var(--rose); font-size: 1.15rem; }
.contact-chevron { margin-left: auto; color: #b8a8a2; font-size: 1.35rem; line-height: 1; }

@media (min-width: 768px) {
  .top-nav { padding: 0.75rem 2rem; }
  main { padding: 0 1.5rem; }
  .card { padding: 2rem 2rem; }
}

/* ── SEO FAQ ── */
.faq-list { margin: 0.5rem 0 0; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 0.95rem 0;
}
.faq-item:first-child { border-top: none; padding-top: 0.25rem; }
.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.seo-grid {
  display: grid;
  gap: 0.75rem;
  margin: 0.75rem 0 0.25rem;
}
@media (min-width: 640px) {
  .seo-grid.cols-2 { grid-template-columns: 1fr 1fr; }
}
.seo-chip {
  display: inline-block;
  background: var(--rose-soft);
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin: 0.2rem 0.25rem 0.2rem 0;
}
.seo-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.breadcrumb {
  font-size: 0.82rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: inherit; text-decoration: none; opacity: 0.95; }
.breadcrumb a:hover { text-decoration: underline; }
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}
.city-list span {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.4rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
