/*
Theme Name: Astrologer Boston
Theme URI: https://astrologerinboston.com
Author: FSK Digital Marketing
Description: Fully editable cosmic astrologer WordPress theme. Every section editable via Appearance Customize. No page builder needed.
Version: 3.0.0
Requires at least: 5.8
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: astrologer-boston
*/

:root {
  --gold: #d4a017;
  --gold-lt: #f5c518;
  --gold-dk: #b8860b;
  --bg: #0d0b00;
  --bg2: #100e00;
  --bg3: #131000;
  --card: rgba(212,160,23,0.10);
  --card-b: rgba(212,160,23,0.22);
  --glass: rgba(13,11,0,0.75);
  --text: #ffffff;
  --text-dim: rgba(255,255,255,0.72);
  --text-muted: rgba(255,255,255,0.50);
  --grad-gold: linear-gradient(135deg,#d4a017 0%,#f5c518 50%,#d4a017 100%);
  --grad-bg: linear-gradient(135deg,#0d0b00 0%,#1a1400 50%,#0a0800 100%);
  --grad-cel: linear-gradient(135deg,#1a1200 0%,#2d2000 50%,#1a1200 100%);
  --grad-cta: linear-gradient(135deg,#d4a017 0%,#b8860b 50%,#8b6914 100%);
  --shd-gold: 0 0 30px rgba(212,160,23,0.30);
  --shd-neon: 0 0 20px rgba(212,160,23,0.50),0 0 40px rgba(212,160,23,0.18);
  --shd-card: 0 8px 32px rgba(0,0,0,0.45);
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --ease: all 0.3s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }
a { color: var(--gold); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--gold-lt); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 20px rgba(212,160,23,0.4); } 50% { box-shadow: 0 0 40px rgba(212,160,23,0.7); } }
@keyframes grad-flow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(212,160,23,0.4); } 70% { box-shadow: 0 0 0 10px rgba(212,160,23,0); } 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0); } }

.anim-spin { animation: spin-slow 12s linear infinite; }
.anim-float { animation: float 4s ease-in-out infinite; }
.anim-fade { animation: fade-up 0.7s ease both; }
.anim-ring { animation: pulse-ring 2s infinite; }
.anim-glow { animation: pulse-glow 3s ease-in-out infinite; }

.text-grad {
  background: var(--grad-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: grad-flow 4s ease infinite;
}

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--r); font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--ease); text-decoration: none; border: 2px solid transparent; white-space: nowrap; line-height: 1; }
.btn-gold { background: var(--grad-gold); color: #000; box-shadow: 0 4px 15px rgba(212,160,23,0.4); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shd-neon); color: #000; }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--text); }
.btn-outline:hover { background: var(--gold); color: #000; }
.btn-glass { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.25); color: var(--text); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,0.18); color: var(--text); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.w-full { width: 100%; justify-content: center; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(13,11,0,0.88); border-bottom: 1px solid rgba(212,160,23,0.20); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; animation: pulse-glow 3s ease-in-out infinite; }
.logo-text { font-size: 1.35rem; font-weight: 800; background: var(--grad-gold); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: grad-flow 4s ease infinite; }
@media (max-width: 780px) { .logo-text { font-size: 1.05rem; } }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a, .nav-btn { color: rgba(255,255,255,0.80); font-size: 0.88rem; font-weight: 600; padding: 8px 14px; border-radius: var(--r); transition: var(--ease); position: relative; display: inline-flex; align-items: center; gap: 4px; background: none; border: none; cursor: pointer; font-family: inherit; }
.main-nav > a:hover, .nav-btn:hover, .main-nav > a.active { color: var(--gold); background: rgba(212,160,23,0.08); }
.main-nav > a.active::after { content: ''; position: absolute; bottom: -1px; left: 14px; right: 14px; height: 2px; background: var(--grad-gold); border-radius: 2px; }

.dd-wrap { position: relative; }
.dd-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px; background: rgba(16,14,0,0.97); border: 1px solid var(--card-b); border-radius: var(--r); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.2s ease; z-index: 300; backdrop-filter: blur(16px); box-shadow: var(--shd-card); }
.dd-menu.wide { display: grid; grid-template-columns: 1fr 1fr; min-width: 400px; }
.dd-wrap:hover .dd-menu, .dd-wrap:focus-within .dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 0.83rem; color: rgba(255,255,255,0.80); }
.dd-menu a:hover { color: var(--gold); background: rgba(212,160,23,0.10); }
.chevron { width: 13px; height: 13px; transition: transform 0.2s; }
.dd-wrap:hover .chevron { transform: rotate(180deg); }

.mob-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; border: 1.5px solid rgba(212,160,23,0.30); background: rgba(212,160,23,0.08); width: 44px; height: 44px; align-items: center; justify-content: center; }
.mob-toggle span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--ease); }
.mob-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-toggle.open span:nth-child(2) { opacity: 0; }
.mob-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) { .main-nav, .hdr-cta { display: none; } .mob-toggle { display: flex; } }

.mob-nav { display: none; padding: 16px 0; border-top: 1px solid rgba(212,160,23,0.12); }
.mob-nav.open { display: block; }
.mob-nav a { display: block; padding: 12px 16px; color: rgba(255,255,255,0.85); font-weight: 600; border-radius: 8px; transition: var(--ease); }
.mob-nav a:hover { color: var(--gold); background: rgba(212,160,23,0.08); }
.mob-nav details summary { padding: 12px 16px; color: rgba(255,255,255,0.85); font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; border-radius: 8px; }
.mob-nav details summary:hover { color: var(--gold); background: rgba(212,160,23,0.08); }
.mob-nav details summary::marker, .mob-nav details summary::-webkit-details-marker { display: none; }
.mob-nav details summary::after { content: '▾'; color: var(--gold); transition: transform 0.2s; }
.mob-nav details[open] summary::after { transform: rotate(180deg); }
.mob-nav-sub { padding: 4px 0 4px 20px; }
.mob-nav-sub a { padding: 8px 16px; font-size: 0.85rem; }

/* HERO */
.hero { position: relative; min-height: 700px; display: flex; align-items: center; overflow: hidden; background: var(--grad-bg); padding: 80px 0; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 40%,rgba(212,160,23,0.09) 0%,transparent 60%), radial-gradient(ellipse at 70% 60%,rgba(180,134,11,0.07) 0%,transparent 50%); pointer-events: none; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(212,160,23,0.03) 1px,transparent 1px), linear-gradient(90deg,rgba(212,160,23,0.03) 1px,transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; } .hero-img-col { order: -1; } }

.hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; border-radius: 50px; background: rgba(212,160,23,0.10); border: 1px solid rgba(212,160,23,0.30); font-size: 0.85rem; font-weight: 600; color: var(--gold-lt); margin-bottom: 22px; animation: pulse-ring 2s infinite; }
.hero-h1 { font-size: clamp(2.2rem,4.5vw,3.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.hero-h1 .hl { background: var(--grad-gold); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: grad-flow 4s ease infinite; }
.hero-sub { font-size: 1.05rem; color: var(--text-dim); margin-bottom: 34px; max-width: 520px; }
@media (max-width: 900px) { .hero-sub { margin-inline: auto; } }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 900px) { .hero-btns { justify-content: center; } }
.hero-img-col { position: relative; display: flex; justify-content: center; }
.hero-img-wrap { position: relative; max-width: 440px; width: 100%; }
.hero-chakra { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 210px; height: 210px; animation: spin-slow 12s linear infinite; z-index: 1; }
.hero-astro { position: relative; z-index: 2; width: 100%; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(40px); animation: float 4s ease-in-out infinite; pointer-events: none; }
.orb-a { width: 110px; height: 110px; background: rgba(212,160,23,0.28); top: 25%; left: -28px; }
.orb-b { width: 140px; height: 140px; background: rgba(180,134,11,0.22); bottom: 25%; right: -28px; animation-delay: 1.5s; }
.bg-orb { position: absolute; border-radius: 50%; filter: blur(50px); pointer-events: none; animation: float 5s ease-in-out infinite; }
.bg-orb-1 { width: 90px; height: 90px; background: rgba(212,160,23,0.14); top: 15%; left: 5%; animation-delay: 2s; }
.bg-orb-2 { width: 110px; height: 110px; background: rgba(180,134,11,0.11); bottom: 15%; right: 5%; animation-delay: 1s; }

/* SECTIONS */
.section { padding: 96px 0; position: relative; overflow: hidden; }
.section-sm { padding: 60px 0; position: relative; }
.sec-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px; border-radius: 50px; background: rgba(212,160,23,0.10); border: 1px solid rgba(212,160,23,0.28); font-size: 0.78rem; font-weight: 700; color: var(--gold-lt); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.05em; }
.sec-title { font-size: clamp(1.9rem,3.8vw,2.9rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.sec-sub { font-size: 1.05rem; color: var(--text-dim); max-width: 640px; margin: 0 auto 44px; }
.tc { text-align: center; }
.cel-bg { background: var(--bg2); background-image: radial-gradient(ellipse at top left,rgba(212,160,23,0.06) 0%,transparent 40%), radial-gradient(ellipse at bottom right,rgba(180,134,11,0.05) 0%,transparent 40%); }

/* SERVICE CARDS */
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
@media (max-width: 1080px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--card); border: 1px solid var(--card-b); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: var(--ease); }
.svc-card:hover { border-color: var(--gold); box-shadow: var(--shd-gold); transform: translateY(-5px); }
.svc-img { position: relative; height: 175px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-icon { position: absolute; bottom: -16px; left: 16px; width: 38px; height: 38px; background: var(--grad-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: 0 4px 12px rgba(212,160,23,0.5); }
.svc-body { padding: 26px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.svc-ttl { font-size: 0.95rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid rgba(212,160,23,0.18); }
.svc-desc { font-size: 0.84rem; color: var(--text-dim); flex: 1; margin-bottom: 14px; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.84rem; font-weight: 600; color: var(--gold); transition: var(--ease); }
.svc-link:hover { gap: 9px; color: var(--gold-lt); }

/* ABOUT / STATS */
.about-card { background: rgba(20,16,0,0.72); border: 1px solid rgba(212,160,23,0.28); border-radius: var(--r-xl); padding: 52px; max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
@media (max-width: 700px) { .about-card { padding: 32px 20px; } }
.about-card p { color: var(--text-dim); font-size: 1rem; margin-bottom: 14px; line-height: 1.8; }
.about-card strong { color: var(--gold); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 28px; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; padding: 18px 14px; background: rgba(212,160,23,0.08); border: 1px solid rgba(212,160,23,0.18); border-radius: var(--r); }
.stat-ico { font-size: 1.4rem; margin-bottom: 6px; }
.stat-val { font-size: 1.9rem; font-weight: 800; color: var(--gold); display: block; }
.stat-lbl { font-size: 0.76rem; color: var(--text-muted); margin-top: 3px; }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { background: rgba(20,16,0,0.62); border: 1px solid rgba(212,160,23,0.18); border-radius: var(--r-lg); padding: 26px; transition: var(--ease); }
.testi:hover { border-color: var(--gold); box-shadow: var(--shd-gold); }
.testi-stars { color: var(--gold-lt); font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-txt { color: rgba(255,255,255,0.83); font-style: italic; font-size: 0.93rem; line-height: 1.7; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av { width: 38px; height: 38px; border-radius: 50%; background: var(--grad-gold); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; color: #000; flex-shrink: 0; }
.testi-name { font-weight: 700; color: var(--gold); font-size: 0.88rem; }
.testi-loc { font-size: 0.75rem; color: var(--text-muted); }

/* MAP */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(212,160,23,0.20); box-shadow: var(--shd-gold); max-width: 900px; margin: 0 auto; }

/* CTA */
.cta-sec { background: var(--grad-cta); position: relative; overflow: hidden; }
.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; background: rgba(0,0,0,0.20); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-xl); padding: 56px 40px; backdrop-filter: blur(8px); }
@media (max-width: 580px) { .cta-inner { padding: 36px 20px; } }
.cta-badge { display: inline-flex; gap: 6px; align-items: center; padding: 6px 16px; border-radius: 50px; background: rgba(0,0,0,0.20); color: #fff; font-size: 0.78rem; font-weight: 700; margin-bottom: 18px; }
.cta-sec .sec-title { color: #fff; }
.cta-sec .sec-sub { color: rgba(255,255,255,0.85); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* PAGE HERO */
.pg-hero { background: var(--grad-cel); padding: 76px 0; text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid rgba(212,160,23,0.13); }
.pg-hero h1 { font-size: clamp(1.7rem,3.8vw,3rem); font-weight: 800; margin-bottom: 14px; }
.pg-hero h1 span { background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pg-hero p { font-size: 1rem; color: var(--text-dim); max-width: 580px; margin: 0 auto; }
.pg-hero-ico { font-size: 3.8rem; margin-bottom: 18px; display: block; }

/* BREADCRUMBS */
.breadcrumbs { padding: 12px 0; font-size: 0.78rem; color: var(--text-muted); border-bottom: 1px solid rgba(212,160,23,0.08); background: rgba(0,0,0,0.18); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 7px; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col img { border-radius: var(--r-lg); box-shadow: var(--shd-gold); width: 100%; }
.col-txt h2 { font-size: 1.75rem; font-weight: 800; color: var(--gold); margin-bottom: 18px; }
.col-txt p { color: var(--text-dim); margin-bottom: 14px; line-height: 1.8; }
.col-txt strong { color: var(--gold); }
.col-txt ul { padding-left: 20px; color: var(--text-dim); margin-bottom: 14px; }
.col-txt ul li { list-style: disc; margin-bottom: 7px; }

/* EXPERTISE */
.expertise-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.exp-item { padding: 22px 24px; background: var(--card); border: 1px solid var(--card-b); border-left: 4px solid var(--gold); border-radius: var(--r); }
.exp-item h3 { color: var(--gold); font-weight: 700; margin-bottom: 7px; }
.exp-item p { color: var(--text-dim); font-size: 0.93rem; }

/* FEATURES */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 44px; }
@media (max-width: 760px) { .feat-grid { grid-template-columns: 1fr; } }
.feat { background: var(--card); border: 1px solid var(--card-b); border-radius: var(--r); padding: 22px; text-align: center; }
.feat-ico { font-size: 2.3rem; margin-bottom: 10px; display: block; }
.feat h3 { font-weight: 700; color: var(--gold); margin-bottom: 7px; font-size: 0.95rem; }
.feat p { font-size: 0.83rem; color: var(--text-dim); }

/* LOCATION */
.loc-svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (max-width: 580px) { .loc-svc-grid { grid-template-columns: 1fr; } }
.loc-svc { background: var(--card); border: 1px solid var(--card-b); border-radius: var(--r); padding: 18px; transition: var(--ease); }
.loc-svc:hover { border-color: var(--gold); }
.loc-svc h3 { color: var(--gold); font-weight: 700; margin-bottom: 5px; font-size: 0.95rem; }
.loc-svc p { font-size: 0.83rem; color: var(--text-dim); }

/* PROSE */
.prose h3 { font-size: 1.25rem; font-weight: 700; color: var(--gold); margin: 30px 0 11px; }
.prose p { color: var(--text-dim); margin-bottom: 13px; line-height: 1.8; }
.prose ul { padding-left: 20px; color: var(--text-dim); margin-bottom: 13px; }
.prose ul li { list-style: disc; margin-bottom: 7px; }
.prose strong { color: var(--gold); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 860px; margin: 20px auto 0; }
.faq-item { background: var(--card); border: 1px solid var(--card-b); border-radius: var(--r); padding: 18px 22px; }
.faq-item h4 { color: var(--gold); font-weight: 700; margin-bottom: 7px; }
.faq-item p { color: var(--text-dim); font-size: 0.92rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1020px; margin: 0 auto; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.ci-card { background: var(--card); border: 1px solid var(--card-b); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shd-gold); display: flex; flex-direction: column; gap: 22px; }
.ci-card h2 { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.ci-card > p { color: var(--text-dim); }
.ci-row { display: flex; gap: 14px; align-items: flex-start; }
.ci-ico { width: 40px; height: 40px; border-radius: 50%; background: rgba(212,160,23,0.13); border: 1px solid rgba(212,160,23,0.28); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ci-row h4 { font-weight: 700; color: var(--gold); font-size: 0.88rem; margin-bottom: 3px; }
.ci-row p, .ci-row a { color: var(--text-dim); font-size: 0.88rem; }
.ci-row a:hover { color: var(--gold); }
.cf-card { background: rgba(18,15,0,0.72); border: 1px solid rgba(212,160,23,0.18); border-radius: var(--r-lg); padding: 34px; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.cf-card h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 22px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 12px 15px; background: rgba(255,255,255,0.06); border: 1px solid rgba(212,160,23,0.23); border-radius: var(--r); color: #fff; font-size: 0.93rem; font-family: inherit; transition: var(--ease); -webkit-appearance: none; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.33); }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,0.14); background: rgba(255,255,255,0.09); }
.fg select option { background: #1a1400; color: #fff; }
.fg textarea { resize: vertical; min-height: 115px; }
.form-ok { display: none; padding: 14px; background: rgba(40,200,80,0.14); border: 1px solid rgba(40,200,80,0.28); border-radius: var(--r); color: #4ade80; text-align: center; font-weight: 600; margin-top: 14px; }
.form-err { display: none; padding: 14px; background: rgba(200,40,40,0.14); border: 1px solid rgba(200,40,40,0.28); border-radius: var(--r); color: #f87171; text-align: center; margin-top: 14px; }

/* FOOTER */
.site-footer { background: var(--grad-cel); border-top: 1px solid rgba(212,160,23,0.13); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 44px; padding: 60px 0 36px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }
.ft-brand h3 { font-size: 1.05rem; font-weight: 800; color: var(--gold-lt); margin-bottom: 10px; }
.ft-brand p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 13px; }
.ft-stars { color: var(--gold-lt); letter-spacing: 3px; }
.ft-col h4 { font-size: 0.92rem; font-weight: 700; color: var(--gold-lt); margin-bottom: 14px; }
.ft-col ul li { margin-bottom: 9px; }
.ft-col ul a { font-size: 0.83rem; color: var(--text-muted); transition: var(--ease); }
.ft-col ul a:hover { color: var(--gold-lt); }
.ft-contacts { display: flex; flex-direction: column; gap: 12px; }
.ft-ci { display: flex; gap: 9px; align-items: flex-start; font-size: 0.83rem; color: var(--text-muted); }
.ft-ci-ico { flex-shrink: 0; color: var(--gold-lt); margin-top: 2px; }
.ft-ci a { color: var(--text-muted); }
.ft-ci a:hover { color: var(--gold-lt); }
.footer-map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(212,160,23,0.13); margin-top: 20px; }
.footer-bot { border-top: 1px solid rgba(212,160,23,0.10); padding: 22px 0; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.40); }
.footer-bot a { color: rgba(255,255,255,0.40); }
.footer-bot a:hover { color: var(--gold-lt); }

/* CITY STRIP */
.city-strip { background: rgba(212,160,23,0.05); border-top: 1px solid rgba(212,160,23,0.13); border-bottom: 1px solid rgba(212,160,23,0.13); padding: 22px 0; }
.city-strip .lbl { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 9px; }
.city-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.city-tag { padding: 5px 13px; background: rgba(212,160,23,0.07); border: 1px solid rgba(212,160,23,0.18); border-radius: 50px; font-size: 0.76rem; color: var(--text-dim); transition: var(--ease); text-decoration: none; display: inline-block; }
.city-tag:hover { background: rgba(212,160,23,0.17); border-color: var(--gold); color: var(--gold); }

/* BLOG */
.blog-list { display: flex; flex-direction: column; gap: 28px; max-width: 820px; margin: 0 auto; }
.blog-card { background: var(--card); border: 1px solid var(--card-b); border-radius: var(--r-lg); padding: 28px; transition: var(--ease); }
.blog-card:hover { border-color: var(--gold); }
.blog-thumb { height: 200px; overflow: hidden; border-radius: var(--r); margin-bottom: 18px; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-meta { font-size: 0.78rem; color: var(--gold); margin-bottom: 8px; font-weight: 600; }
.blog-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.blog-title a { color: #fff; }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { color: var(--text-dim); }

.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
