:root {
  --navy: #0e1b3d;
  --navy2: #16244d;
  --gold: #f2c14e;
  --gold-dark: #d9a62f;
  --bg: #f7f8fa;
  --card: #ffffff;
  --border: #e2e5eb;
  --text: #1b2338;
  --muted: #64708a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.muted { color: var(--muted); }

/* Topbar */
.topbar {
  border-bottom: 1px solid var(--border);
  background: var(--card);
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo { height: 44px; width: 44px; }
.brand-text {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-text .accent { color: var(--gold-dark); }

.main-nav {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.main-nav a:hover { color: var(--gold-dark); }

.lang-toggle {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-toggle:hover { background: var(--navy); color: #fff; }

/* Hero */
.hero {
  padding: 72px 0 56px;
  text-align: center;
  background: linear-gradient(180deg, #fdf6e3 0%, var(--bg) 100%);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin: 0 0 12px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.2rem);
  margin: 0 0 16px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.subtitle {
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}
.cta-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 28px;
}
.cta-outline:hover { box-shadow: none; background: var(--navy); color: #fff; }

/* Services */
.services { padding: 64px 0; }
.services h2, .prices h2, .visit h2, .contact h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 0 8px;
}
.prices > .wrap > p.muted { text-align: center; margin: 0 0 32px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}
.service-icon { font-size: 1.8rem; margin-bottom: 10px; }
.service-card h3 { margin: 0 0 6px; font-size: 0.98rem; color: var(--navy); }
.service-card p { margin: 0; font-size: 0.85rem; color: var(--muted); }

/* Price list */
.prices { padding: 64px 0; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-category { margin-bottom: 28px; }
.price-category h3 {
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-row .name { color: var(--text); }
.price-row .amount { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* Visit */
.visit { padding: 64px 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.visit h2 { text-align: left; }
.visit-line { margin: 0 0 16px; }
.visit-line strong { color: var(--navy); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.visit-line a { color: var(--text); text-decoration: none; }
.visit-line a:hover { color: var(--gold-dark); }
.visit-badge { display: flex; justify-content: center; }
.visit-badge img { width: 220px; max-width: 100%; }

/* Contact */
.contact {
  padding: 56px 0 72px;
  background: var(--navy);
  color: #fff;
}
.contact h2 { color: #fff; }
.contact-inner { text-align: center; }
.contact > .wrap > p {
  color: #b9c2dc;
  margin: 0 0 32px;
}
#contactForm {
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
  background: var(--navy2);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #2b3a68;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #b9c2dc;
}
.field input,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #3a4a7a;
  background: var(--navy);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
#contactForm .cta { width: 100%; }

.captcha-row { display: flex; align-items: center; gap: 10px; }
.captcha-question {
  background: var(--navy);
  border: 1px solid #3a4a7a;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}
.captcha-row input { width: 100px; flex: none; }

.form-status {
  margin: 12px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-status.success { color: #4ade80; }
.form-status.error { color: #f87171; }

/* Footer */
.footer {
  padding: 28px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  background: var(--card);
  border-top: 1px solid var(--border);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo { height: 36px; width: 36px; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}
