/* ===== SHARED STYLES FOR STATIC PAGES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: hsl(220 25% 5%);
  --fg: hsl(0 0% 98%);
  --card: hsl(220 25% 8%);
  --card-fg: hsl(0 0% 98%);
  --primary: hsl(43 46% 60%);
  --primary-fg: hsl(220 25% 5%);
  --secondary: hsl(220 25% 12%);
  --secondary-fg: hsl(0 0% 98%);
  --muted: hsl(215 15% 20%);
  --muted-fg: hsl(215 15% 60%);
  --accent: hsl(0 72% 51%);
  --border: hsl(220 15% 15%);
  --gold-400: hsl(43 46% 65%);
  --gold-500: hsl(43 46% 60%);
  --gold-600: hsl(43 46% 50%);
  --shadow-casino: 0 0 0 1px rgba(255,255,255,0.05), 0 8px 16px -4px rgba(0,0,0,0.4);
  --shadow-casino-hover: 0 0 0 1px rgba(255,255,255,0.08), 0 16px 32px -8px rgba(0,0,0,0.5);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

body { background: var(--bg); color: var(--fg); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; line-height: 1.6; }
h1, h2, h3, h4 { font-family: var(--font-serif); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.text-gold { color: var(--primary); }
.legal-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-fg); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; border: none; border-radius: 2px; padding: 0.75rem 2rem; transition: all 0.2s; white-space: nowrap; text-decoration: none; }
.btn-gold { background: var(--gold-500); color: var(--primary-fg); }
.btn-gold:hover { background: var(--gold-400); }
.btn-gold-outline { background: transparent; color: var(--gold-500); border: 1px solid var(--gold-500); }
.btn-gold-outline:hover { background: rgba(191,163,96,0.1); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2.5rem; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: hsla(220,25%,5%,0.8); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.navbar-logo { font-family: var(--font-serif); font-size: 1.25rem; color: var(--primary); letter-spacing: -0.02em; }
.navbar-links { display: flex; align-items: center; gap: 2rem; }
.navbar-links a { font-size: 0.875rem; color: var(--muted-fg); transition: color 0.2s; }
.navbar-links a:hover { color: var(--fg); }
.hamburger { display: none; background: none; border: none; color: var(--fg); font-size: 1.5rem; }
.mobile-menu { display: none; background: hsla(220,25%,5%,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1rem 1.5rem; flex-direction: column; gap: 0.75rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.875rem; color: var(--muted-fg); }
@media (max-width: 768px) { .navbar-links { display: none; } .hamburger { display: block; } }

/* LEGAL BANNER */
.legal-banner { background: hsla(220,25%,12%,0.5); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 0; text-align: center; }
.legal-banner p { font-size: 0.875rem; color: var(--muted-fg); }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(1.875rem, 4vw, 3rem); color: var(--primary); }

/* FOOTER */
.site-footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 4rem 0; }
.footer-legal { border-radius: 16px; box-shadow: var(--shadow-casino); background: var(--card); padding: 2rem; margin-bottom: 3rem; }
.footer-legal h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 1rem; font-family: var(--font-sans); font-weight: 600; }
.footer-legal p { font-size: 0.75rem; color: var(--muted-fg); line-height: 1.7; max-width: 56rem; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.footer-grid h4 { font-size: 1.125rem; color: var(--primary); margin-bottom: 1rem; font-family: var(--font-serif); }
.footer-grid .col-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-fg); margin-bottom: 1rem; font-family: var(--font-sans); font-weight: 600; }
.footer-grid p, .footer-grid li { font-size: 0.75rem; color: var(--muted-fg); line-height: 1.7; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { transition: color 0.2s; }
.footer-grid a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(160,160,180,0.6); }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* CONTENT PAGE */
.content-page { padding: 8rem 0 6rem; max-width: 48rem; margin: 0 auto; }
.content-page h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--primary); margin-bottom: 2rem; }
.content-page section { margin-bottom: 1.5rem; }
.content-page h2 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.content-page p, .content-page li { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }
.content-page ul { list-style: disc; padding-left: 1.5rem; }
.content-page li { margin-bottom: 0.25rem; }
.content-page .updated { font-size: 0.75rem; color: rgba(160,160,180,0.6); margin-top: 2rem; }

/* WHY US - ADVANTAGES */
.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.adv-card { border-radius: 16px; box-shadow: var(--shadow-casino); background: var(--card); padding: 1.5rem; text-align: center; }
.adv-icon { font-size: 1.5rem; width: 3rem; height: 3rem; border-radius: 50%; background: var(--secondary); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.adv-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.adv-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }
@media (max-width: 1024px) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .advantages-grid { grid-template-columns: 1fr; } }

/* SERVICE DETAIL */
.service-detail { display: flex; gap: 2rem; align-items: center; margin-bottom: 4rem; }
.service-detail.reverse { flex-direction: row-reverse; }
.sd-img { flex: 1; }
.sd-img img { width: 100%; height: 18rem; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-casino); }
.sd-text { flex: 1; }
.sd-text h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.sd-text p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; margin-bottom: 1.25rem; }
.sd-text ul { list-style: none; padding: 0; }
.sd-text li { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.5rem; }
.sd-disc { font-size: 0.75rem; color: rgba(160,160,180,0.5); font-style: italic; margin-top: 1rem; }
@media (max-width: 768px) { .service-detail, .service-detail.reverse { flex-direction: column; } }

/* CITIES */
.cities-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; max-width: 48rem; margin: 0 auto; }
.city-pill { padding: 0.75rem 1.5rem; border-radius: 9999px; box-shadow: var(--shadow-casino); background: var(--card); font-size: 0.875rem; font-weight: 500; }
