@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  /* Color */
  --ink:        #0D1117;
  --navy:       #1A1F4E;
  --navy-dim:   #252A60;
  --gold:       #B8883A;
  --gold-pale:  #F6EDD8;
  --gold-mid:   #D4A95A;
  --surface:    #F7F5F2;
  --white:      #FFFFFF;
  --border:     #E4DDD3;
  --muted:      #78726A;
  --muted-dark: #4A4540;

  /* Type */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;

  /* Shadow */
  --s1: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
  --s2: 0 4px 12px rgba(0,0,0,.08), 0 16px 40px rgba(0,0,0,.08);
  --s3: 0 8px 24px rgba(0,0,0,.12), 0 32px 64px rgba(0,0,0,.1);

  /* Radius */
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  20px;
  --r-xl:  28px;
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.site-header {
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 30px;
  height: 30px;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.3px;
}

.logo-name em {
  font-style: italic;
  color: var(--gold);
}

.header-search {
  flex: 1;
  max-width: 440px;
  position: relative;
}

.header-search input {
  width: 100%;
  height: 40px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0 40px 0 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}

.header-search input:focus { border-color: var(--navy); }
.header-search input::placeholder { color: var(--muted); }

.header-search .search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-dark);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: all .15s;
}

.header-nav a:hover { background: var(--surface); color: var(--ink); }

.header-nav .btn-cta {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.header-nav .btn-cta:hover { background: var(--navy-dim); color: var(--white); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 80px 32px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle texture via radial gradient */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(184,136,58,.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 100% at 0% 100%, rgba(42,52,128,.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 100% at 100% 100%, rgba(42,52,128,.5) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 24px;
}

.hero-kicker::before,
.hero-kicker::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero h1 span {
  font-style: normal;
  color: var(--gold-mid);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero search */
.hero-form {
  display: flex;
  max-width: 560px;
  margin: 0 auto 48px;
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--s3);
}

.hero-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 20px;
  height: 56px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--ink);
  outline: none;
}

.hero-form input::placeholder { color: var(--muted); }

.hero-form button {
  background: var(--gold);
  border: none;
  padding: 0 28px;
  height: 56px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--white);
  letter-spacing: .02em;
  transition: background .15s;
  white-space: nowrap;
}

.hero-form button:hover { background: var(--gold-mid); }

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.hero-stat-n {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}

.hero-stat-l {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
  display: block;
}

/* ─────────────────────────────────────────
   CITY STRIP
───────────────────────────────────────── */
.city-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}

.city-strip-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 0;
  max-width: 1120px;
  margin: 0 auto;
}

.city-strip-inner::-webkit-scrollbar { display: none; }

.city-btn {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-dark);
  padding: 7px 16px;
  border-radius: 100px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all .15s;
}

.city-btn:hover {
  background: var(--surface);
  border-color: var(--border);
  color: var(--navy);
}

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.page-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 32px;
}

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .cards-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
}

.card:hover {
  box-shadow: var(--s2);
  transform: translateY(-2px);
  border-color: rgba(184,136,58,.3);
}

.card-denom {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
}

.card-detail {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-detail svg { flex-shrink: 0; margin-top: 1px; }

.card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--surface);
  color: var(--muted-dark);
  border: 1px solid var(--border);
}

.card-tag-online {
  background: #EDF7ED;
  color: #2A7A2A;
  border-color: #C5E8C5;
}

.card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .15s;
  flex-shrink: 0;
}

.card:hover .card-arrow {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Featured card */
.card-featured {
  background: var(--navy);
  border-color: var(--navy);
}

.card-featured .card-denom { color: var(--gold-mid); }
.card-featured h3 { color: var(--white); }
.card-featured .card-detail { color: rgba(255,255,255,.45); }
.card-featured .card-footer { border-top-color: rgba(255,255,255,.1); }
.card-featured .card-tag { background: rgba(255,255,255,.07); color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.1); }
.card-featured .card-arrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
.card-featured:hover .card-arrow { background: var(--gold); border-color: var(--gold); color: var(--white); }
.card-featured:hover { border-color: rgba(184,136,58,.5); }

/* ─────────────────────────────────────────
   PROMO STRIP
───────────────────────────────────────── */
.promo {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 8px 0 64px;
  position: relative;
  overflow: hidden;
}

.promo::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(184,136,58,.12);
  border-radius: 100%;
  pointer-events: none;
}

.promo::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(184,136,58,.08);
  border-radius: 100%;
  pointer-events: none;
}

.promo-text { flex: 1; position: relative; z-index: 1; }

.promo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 10px;
}

.promo h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.promo p {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  max-width: 380px;
  line-height: 1.6;
}

.promo-cta { flex-shrink: 0; position: relative; z-index: 1; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--r-sm);
  padding: 11px 22px;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover { background: var(--navy-dim); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover { background: var(--gold-mid); color: var(--white); }

.btn-gold-lg {
  background: var(--gold);
  color: var(--white);
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--r);
}

.btn-gold-lg:hover { background: var(--gold-mid); color: var(--white); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.2);
}

.btn-outline:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-outline-dark:hover {
  background: var(--surface);
  color: var(--navy);
}

.btn-w { width: 100%; justify-content: center; }

.btn-lg {
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--r);
}

/* ─────────────────────────────────────────
   SEARCH HERO (buscar.php)
───────────────────────────────────────── */
.search-header {
  background: var(--navy);
  padding: 36px 32px 40px;
}

.search-header-inner { max-width: 1120px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: rgba(255,255,255,.7); }
.breadcrumb-sep { opacity: .25; }

.search-bar-lg {
  display: flex;
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  max-width: 640px;
  box-shadow: var(--s3);
}

.search-bar-lg input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 20px;
  height: 52px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--ink);
  outline: none;
}

.search-bar-lg input::placeholder { color: var(--muted); }

.search-bar-lg button {
  background: var(--gold);
  border: none;
  padding: 0 24px;
  height: 52px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  transition: background .15s;
}

.search-bar-lg button:hover { background: var(--gold-mid); }

/* ─────────────────────────────────────────
   RESULTS
───────────────────────────────────────── */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--muted);
}

.results-bar strong { color: var(--ink); font-weight: 600; }

/* ─────────────────────────────────────────
   EMPTY STATE
───────────────────────────────────────── */
.empty {
  text-align: center;
  padding: 80px 20px;
}

.empty-icon {
  width: 64px;
  height: 64px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--muted);
}

.empty h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}

.empty p { font-size: 14px; color: var(--muted); }
.empty a { color: var(--gold); text-decoration: underline; }

/* ─────────────────────────────────────────
   PROFILE (iglesia.php)
───────────────────────────────────────── */
.profile-band {
  background: var(--navy);
  padding: 40px 32px 44px;
}

.profile-band-inner { max-width: 1120px; margin: 0 auto; }

.profile-band h1 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 16px 0 14px;
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

.badge-verified  { background: rgba(184,136,58,.15); color: #D4A95A; border: 1px solid rgba(184,136,58,.25); }
.badge-unclaimed { background: rgba(255,255,255,.06); color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.1); }
.badge-online    { background: rgba(42,122,42,.15); color: #6BC46B; border: 1px solid rgba(42,122,42,.25); }
.badge-denom     { background: rgba(255,255,255,.07); color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.1); }

/* Profile layout */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  padding: 32px 0 80px;
  align-items: start;
}

@media (max-width: 960px) { .profile-layout { grid-template-columns: 1fr; } }

.info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 20px;
}

.info-block-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.info-block-head h2 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.info-block-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.info-block-body { padding: 0 24px; }

.info-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.info-row:last-child { border-bottom: none; }

.info-key {
  min-width: 110px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  padding-top: 1px;
  flex-shrink: 0;
}

.info-val { color: var(--ink); }
.info-val a { color: var(--gold); text-decoration: underline; }

/* Sidebar */
.side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 16px;
}

.side-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.claim-block {
  background: var(--gold-pale);
  border: 1px solid rgba(184,136,58,.25);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 16px;
  text-align: center;
}

.claim-block h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.claim-block p {
  font-size: 13px;
  color: var(--muted-dark);
  line-height: 1.5;
  margin-bottom: 18px;
}

/* Contact buttons */
.cta-call {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--r);
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}

.cta-call:hover { background: var(--navy-dim); color: var(--white); }

.cta-wa {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1A7C3E;
  color: var(--white);
  border: none;
  border-radius: var(--r);
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}

.cta-wa:hover { background: #1E9147; color: var(--white); }

.cta-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   CLAIM PAGE
───────────────────────────────────────── */
.claim-hero {
  background: var(--navy);
  padding: 52px 32px 60px;
  position: relative;
}

.claim-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,136,58,.35), transparent);
}

.claim-hero-inner { max-width: 560px; }

.claim-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.claim-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

/* Form */
.form-wrap {
  max-width: 680px;
  padding: 48px 32px 80px;
  margin: 0 auto;
}

.form-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.form-block-head {
  padding: 16px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

.form-block-body { padding: 24px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 16px; }
.field:last-child { margin-bottom: 0; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,31,78,.08);
}

.field textarea { resize: vertical; min-height: 96px; }
.field .req { color: #C0392B; margin-left: 2px; }

/* Benefits row */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 560px) { .benefits { grid-template-columns: 1fr; } }

.benefit {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  text-align: center;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--gold);
}

.benefit h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.benefit p { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ─────────────────────────────────────────
   ALERTS
───────────────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.alert-ok  { background: #EDF7ED; border: 1px solid #C5E8C5; color: #1A5E1A; }
.alert-err { background: #FEF0EF; border: 1px solid #F5C5C2; color: #8B1A1A; }

/* ─────────────────────────────────────────
   ADMIN
───────────────────────────────────────── */
.admin-nav {
  background: var(--navy);
  padding: 0 32px;
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  overflow-x: auto;
  scrollbar-width: none;
}

.admin-nav::-webkit-scrollbar { display: none; }

.admin-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  padding: 14px 16px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all .15s;
}

.admin-nav a:hover, .admin-nav a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.admin-body { max-width: 1200px; margin: 0 auto; padding: 32px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
}

.stat-n {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-n.highlight { color: var(--gold); }
.stat-l { font-size: 12px; color: var(--muted); font-weight: 500; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

td {
  padding: 14px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  vertical-align: middle;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(247,245,242,.7); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}

.pill-green { background: #EDF7ED; color: #1A5E1A; border: 1px solid #C5E8C5; }
.pill-gold  { background: #FBF3E3; color: #8A6520; border: 1px solid #E8D5A8; }
.pill-gray  { background: var(--surface); color: var(--muted); border: 1px solid var(--border); }
.pill-red   { background: #FEF0EF; color: #8B1A1A; border: 1px solid #F5C5C2; }

.tbl-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: all .1s;
}

.tbl-btn:hover { background: var(--surface); }
.tbl-btn-del { color: #8B1A1A; border-color: #F5C5C2; background: #FEF0EF; }
.tbl-btn-del:hover { background: #FDD9D7; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 48px 32px 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand { max-width: 240px; }
.footer-brand .logo-name { font-size: 22px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.35); margin-top: 10px; line-height: 1.5; }

.footer-links h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }

/* ─────────────────────────────────────────
   ADMIN LOGIN
───────────────────────────────────────── */
.login-screen {
  min-height: 100vh;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--s2);
}

/* ─────────────────────────────────────────
   UTILITIES
───────────────────────────────────────── */
.mt-section { margin-top: 56px; }
.mb-section { margin-bottom: 56px; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header { padding: 0 16px; gap: 16px; }
  .header-search { display: none; }
  .hero { padding: 56px 20px 64px; }
  .hero-stats { gap: 28px; }
  .city-strip { padding: 0 16px; }
  .page-wrap { padding: 0 16px; }
  .promo { padding: 40px 28px; flex-direction: column; text-align: center; }
  .promo p { max-width: 100%; margin: 0 0 24px; }
  .promo::before, .promo::after { display: none; }
  .profile-band { padding: 28px 16px 32px; }
  .search-header { padding: 24px 16px 28px; }
  .claim-hero { padding: 36px 16px 44px; }
  .form-wrap { padding: 32px 16px 60px; }
  .admin-body { padding: 20px 16px; }
  .site-footer { padding: 40px 16px 28px; }
  .footer-inner { flex-direction: column; gap: 28px; }
}

/* ─────────────────────────────────────────
   ANIMATIONS (subtle)
───────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim { animation: fadeIn .45s ease both; }
.anim-2 { animation: fadeIn .45s .08s ease both; opacity: 0; }
.anim-3 { animation: fadeIn .45s .16s ease both; opacity: 0; }
