:root {
  --bg: #f3f5f7;
  --surface: #ffffff;
  --ink: #1b2734;
  --muted: #5d6a77;
  --line: #d9e0e6;
  --brand: #0e3a5e;
  --brand-soft: #1c537f;
  --accent: #b48a48;
  --shadow: 0 14px 40px rgba(15, 28, 43, 0.12);
  --radius: 18px;
  --container: min(1200px, 92vw);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, #e2e9f0 0%, var(--bg) 35%), var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; position: relative; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}
.h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  margin: 12px 0 16px;
}
.lead { color: var(--muted); max-width: 720px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(243, 245, 247, 0.86);
  border-bottom: 1px solid rgba(27, 39, 52, 0.08);
}
.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 220px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-text { font-size: 0.95rem; font-weight: 800; letter-spacing: 0.06em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  color: #2f3e4d;
  padding: 8px 10px;
  border-radius: 10px;
  transition: 0.24s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brand); background: rgba(14, 58, 94, 0.08); }

.nav-controls { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  border: 0;
  background: transparent;
  padding: 7px 12px;
  font-size: 0.78rem;
  cursor: pointer;
  color: var(--muted);
}
.lang-switch button.active { background: var(--brand); color: #fff; }
.btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(14,58,94,0.18); }
.btn-primary { background: linear-gradient(145deg, var(--brand), var(--brand-soft)); color: #fff; }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,.62); color: #fff; }
.btn-dark { background: #101d2a; color: #fff; }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.hero {
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: 58px 0;
  background: linear-gradient(110deg, rgba(11, 26, 38, 0.86), rgba(20, 48, 72, 0.58)), url('../images/hero.jpg') center/cover no-repeat;
  color: #fff;
}
.hero-card {
  max-width: 760px;
  background: rgba(8, 21, 34, 0.34);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.hero h1 {
  margin: 12px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.02;
}
.hero p { color: rgba(255,255,255,.86); max-width: 640px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.metric-strip {
  margin-top: -38px;
  position: relative;
  z-index: 2;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.metric {
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.metric strong { display: block; font-size: 1.5rem; color: var(--brand); }
.metric span { color: var(--muted); font-size: 0.9rem; }

.card {
  background: var(--surface);
  border: 1px solid #e6ebf0;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(13, 31, 49, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card h3 { margin-top: 0; font-size: 1.2rem; }
.card p { color: var(--muted); }

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-block img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

.process-step {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}
.process-step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.cta-banner {
  background: linear-gradient(135deg, #0f2e49, #244e73);
  color: #fff;
  border-radius: 24px;
  padding: 42px;
}

.faq-item {
  border-bottom: 1px solid #d9e0e8;
  padding: 18px 0;
}
.faq-q { display: flex; justify-content: space-between; gap: 10px; cursor: pointer; font-weight: 700; }
.faq-a { color: var(--muted); max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 280px; margin-top: 10px; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.form-panel, .info-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
label { display: block; font-size: 0.86rem; margin-bottom: 6px; color: #384757; font-weight: 600; }
input, select, textarea {
  width: 100%;
  border: 1px solid #ccd7e2;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.map-block {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 260px;
}
.map-block iframe { width: 100%; height: 260px; border: 0; }

.site-footer {
  margin-top: 90px;
  background: #0f1e2d;
  color: rgba(255,255,255,.8);
  padding: 62px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 26px; }
.footer-links a { display: block; margin-bottom: 8px; color: rgba(255,255,255,.85); }
.footer-bottom { margin-top: 26px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 16px; font-size: 0.85rem; }

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(820px, 94vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 80;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(4, 12, 20, 0.45);
  z-index: 90;
}
.cookie-modal.show { display: grid; }
.cookie-dialog {
  width: min(540px, 90vw);
  background: #fff;
  border-radius: 18px;
  padding: 22px;
}
.cookie-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }

.reveal { opacity: 0; transform: translateY(20px); transition: .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.page-hero {
  padding: 120px 0 80px;
  color: #fff;
  background: linear-gradient(120deg, rgba(8,22,35,.88), rgba(21,55,85,.56)), var(--hero-image) center/cover no-repeat;
}
.page-hero h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2.2rem, 4.3vw, 3.8rem); margin: 8px 0; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.88); }

@media (max-width: 1020px) {
  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: #f7f9fb;
    border-bottom: 1px solid var(--line);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: grid; place-items: center; }
  .metric-grid, .grid-3, .grid-2, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .section { padding: 70px 0; }
  .hero-card, .cta-banner, .form-panel, .info-panel { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
}
