:root {
  --bg: #050608;
  --bg-soft: #14141a;
  --surface: #1d1d24;
  --surface-soft: #25252f;
  --accent-red: #e53935;
  --accent-yellow: #ffca28;
  --accent-white: #f5f5f5;
  --accent-black: #000000;
  --text: #f7f7f7;
  --muted: #afafc3;
  --border-subtle: rgba(255,255,255,0.08);
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.65);

  --radius-lg: 18px;
  --radius-xl: 26px;

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #2a1010 0, #050608 40%, #050608 100%);
  color: var(--text);
}

/* Layout helpers */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-soft {
  padding: 4rem 0;
  background: radial-gradient(circle at top left, rgba(229,57,53,0.15), transparent 55%);
}

.section-highlight {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(229,57,53,0.19), rgba(0,0,0,0.9));
}

.section-grid .grid-3 {
  display: grid;
  gap: 1.75rem;
}

.grid-2 {
  display: grid;
  gap: 1.75rem;
}

.grid-3 {
  display: grid;
  gap: 1.75rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to right, rgba(0,0,0,0.95), rgba(25,0,0,0.97));
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: conic-gradient(from 200deg, #e53935, #ffca28, #ffffff, #111, #e53935);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.5);
}

.brand-symbol {
  font-size: 1.4rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  position: relative;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--muted);
  transition: all 0.18s ease-out;
}

.nav-link:hover {
  color: var(--accent-white);
  background: rgba(255,255,255,0.06);
}

.nav-link.active {
  color: var(--accent-white);
  background: radial-gradient(circle at top left, var(--accent-red), #7b1717);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.65);
}

.nav-cta {
  border: 1px solid rgba(255,202,40,0.8);
  background: radial-gradient(circle at top, rgba(255,202,40,0.15), transparent 60%);
}

/* Mobile nav */

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--accent-white);
  font-size: 1.3rem;
}

@media (max-width: 780px) {
  .main-nav {
    position: absolute;
    inset: 3.25rem 1.25rem auto 1.25rem;
    padding: 0.75rem;
    background: rgba(5,5,8,0.98);
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 0.4rem;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: all 0.16s ease-out;
  }
  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-toggle {
    display: block;
  }
}

/* Hero */

.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(229,57,53,0.65), transparent 58%),
    radial-gradient(circle at bottom right, rgba(255,202,40,0.32), transparent 60%);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 20% 6% 0;
  border-radius: 48%;
  background: radial-gradient(ellipse at top, rgba(0,0,0,0.4), transparent 60%);
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-yellow);
  background: rgba(0,0,0,0.55);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,202,40,0.6);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 2.7rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  text-shadow: 0 18px 40px rgba(0,0,0,0.8);
}

.hero-body {
  max-width: 46rem;
  font-size: 0.98rem;
  color: var(--accent-white);
  opacity: 0.92;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.16s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-red), #8b1212);
  color: var(--accent-white);
  border-color: rgba(0,0,0,0.75);
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn.ghost {
  background: rgba(0,0,0,0.5);
  color: var(--accent-white);
  border-color: rgba(255,255,255,0.25);
}

.btn.ghost:hover {
  background: rgba(0,0,0,0.8);
}

.btn.ghost-light {
  background: transparent;
  color: var(--accent-white);
  border-color: rgba(255,255,255,0.75);
}

.btn.small-btn {
  font-size: 0.82rem;
  padding-inline: 1.1rem;
}

.btn.full-width {
  width: 100%;
}

/* Cards */

.card {
  background: radial-gradient(circle at top left, rgba(229,57,53,0.16), rgba(9,9,12,0.96));
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 22px 55px rgba(0,0,0,0.7);
}

.card h2, .card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card p {
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}

/* Split layout */

.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.7fr);
  align-items: start;
}

.split-text h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.split-card {
  background: radial-gradient(circle at top right, rgba(255,202,40,0.16), rgba(7,7,10,0.98));
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.split-card h3 {
  margin-top: 0;
}

.accent-red {
  background: radial-gradient(circle at top left, rgba(229,57,53,0.6), rgba(6,4,4,0.98));
  border-color: rgba(229,57,53,0.7);
}

/* Lists */

.checklist {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.8rem;
  color: var(--accent-yellow);
}

.bullet-list {
  padding-left: 1.1rem;
  margin-top: 0.4rem;
}

.bullet-list li {
  margin-bottom: 0.35rem;
  font-size: 0.94rem;
}

.bullet-list.numbered {
  list-style: decimal;
  padding-left: 1.3rem;
}

/* Highlight grid */

.highlight-grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 2fr);
  align-items: start;
}

.highlight-cards {
  display: grid;
  gap: 0.85rem;
}

.mini-card {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--accent-white);
  font-size: 0.9rem;
  transition: all 0.16s ease-out;
}

.mini-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
}

.mini-card:hover {
  border-color: rgba(255,202,40,0.7);
  transform: translateY(-1px);
}

/* Page hero */

.page-hero {
  padding: 3.25rem 0 2.5rem;
  background: radial-gradient(circle at top, rgba(229,57,53,0.35), rgba(5,5,8,0.98));
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero .hero-tag {
  margin-bottom: 0.9rem;
}

.page-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.9rem, 4.5vw, 2.2rem);
}

.page-hero .hero-body {
  max-width: 40rem;
}

/* Map layout */

.map-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.4fr);
  align-items: start;
}

.map-placeholder {
  height: 380px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(229,57,53,0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255,202,40,0.2), transparent 55%),
    linear-gradient(145deg, #05070a, #181921);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 1.5rem;
}

/* Accordion */

.accordion {
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: rgba(5,5,9,0.85);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 0.8rem 1rem;
  border: none;
  background: transparent;
  color: var(--accent-white);
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: "+";
  font-size: 1rem;
  color: var(--accent-yellow);
}

.accordion-header.active::after {
  content: "–";
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.18s ease-out;
  padding: 0 1rem;
}

.accordion-panel.open {
  padding-bottom: 0.7rem;
}

/* Budget list */

.budget-card {
  background: radial-gradient(circle at top right, rgba(255,202,40,0.3), #111017);
}

.budget-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem;
}

.budget-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 0.25rem 0;
}

/* Gallery */

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.gallery-item {
  margin: 0;
}

.gallery-placeholder {
  border-radius: 18px;
  height: 190px;
  border: 1px dashed rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  background: rgba(5,5,8,0.9);
}

.gallery-item figcaption {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Languages */

.search-box {
  margin-bottom: 1.4rem;
}

.search-box input {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(5,5,9,0.85);
  color: var(--text);
  font-size: 0.9rem;
}

.search-box input::placeholder {
  color: rgba(255,255,255,0.45);
}

.language-list {
  display: grid;
  gap: 0.6rem;
}

.language-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.11);
  font-size: 0.88rem;
}

.language-item span:nth-child(2) {
  color: var(--muted);
}

/* Contact */

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.9rem;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(5,5,9,0.9);
  padding: 0.55rem 0.7rem;
  color: var(--text);
  font-size: 0.9rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #050508;
  padding-top: 1.8rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 1.3rem;
}

.footer-title {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 0.35rem;
  color: var(--accent-yellow);
}

.footer-text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
}

.footer-links a:hover {
  color: var(--accent-white);
  border-color: rgba(255,202,40,0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 0.75rem 0;
  font-size: 0.78rem;
  text-align: center;
  color: var(--muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
}

/* Misc */

.small {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 900px) {
  .split,
  .highlight-grid,
  .map-layout,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    padding-top: 3.4rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3rem 0;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .header-inner {
    padding-inline: 0.25rem;
  }
  .brand-subtitle {
    display: none;
  }
}


.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: contain;
  background: radial-gradient(circle at center, #111, #000);
  padding: 4px;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.65), 0 16px 40px rgba(0,0,0,0.8);
}

/* Interactive map canvas */
#map,
.map-canvas {
  height: 380px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 55px rgba(0,0,0,0.7);
}
