:root {
  --navy: #0b1c2c;
  --navy-2: #122a3f;
  --ink: #142033;
  --ink-soft: #3a4a5c;
  --muted: #6a7685;
  --paper: #f7f8f9;
  --panel: #ffffff;
  --line: #e2e6eb;
  --line-strong: #c5ccd5;
  --accent: #1a3a52;
  --gold: #8b7355;
  --gold-soft: #c4a574;
  --font: "Montserrat", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; border-radius: 0 !important; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--panel);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open,
body.nav-open { overflow: hidden; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.wrap { width: min(1320px, calc(100% - 48px)); margin: 0 auto; }
.wrap.narrow { width: min(720px, calc(100% - 40px)); }

.preview-banner {
  background: var(--navy);
  color: rgba(255,255,255,.55);
  text-align: center;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 12px;
}
.preview-banner a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,165,116,.4);
}

/* Header — dark for gold logo */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--navy);
  border-bottom: 1px solid rgba(196, 165, 116, .18);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

/* Home: fixed transparent over hero → solid on scroll */
body.page-home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
body.page-home .site-header.is-scrolled {
  background: rgba(11, 28, 44, .94);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom-color: rgba(196, 165, 116, .18);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}
body.page-home .preview-banner {
  position: relative;
  z-index: 45;
}
body.page-home .block-hero {
  /* header overlays hero */
  padding-top: calc(var(--header-h) + 56px);
  min-height: 100vh;
}
@media (max-width: 720px) {
  body.page-home .block-hero {
    padding-top: calc(var(--header-h) + 40px);
  }
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}
.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: start;
  min-width: 0;
}
.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  max-width: 200px;
}
.logo span { color: var(--gold-soft); }
.logo:hover { text-decoration: none; color: #fff; }
.logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.site-footer .logo-img {
  height: 44px;
  max-width: 240px;
  filter: none;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0 18px;
  justify-self: center;
  min-width: 0;
}
.nav-desktop a {
  color: rgba(255,255,255,.82);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-decoration: none;
  padding: 8px 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-desktop a:hover { color: var(--gold-soft); text-decoration: none; }

.msg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.msg-btn-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
}
.msg-btn-icon img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.msg-btn:hover { text-decoration: none; background: var(--navy); color: #fff; border-color: var(--navy); }
.msg-btn-icon:hover { background: transparent; opacity: .85; }
.msg-tg:hover { background: #229ED9; border-color: #229ED9; }
.msg-vb:hover { background: #7360f2; border-color: #7360f2; }
.msg-wa:hover { background: #25D366; border-color: #25D366; }
.msg-btn-icon.msg-tg:hover,
.msg-btn-icon.msg-vb:hover,
.msg-btn-icon.msg-wa:hover { background: transparent; border: 0; }
.msg-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-msg { margin-top: 14px; }
.footer-msg .msg-btn {
  background: transparent;
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.75);
}
.footer-msg .msg-btn-icon { border: 0; }
.footer-msg .msg-btn:hover { color: #fff; border-color: #fff; background: transparent; }
.btn-block { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  flex: 0 0 auto;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 0;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.lang-switch a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  padding: 4px 7px;
  line-height: 1;
}
.lang-switch a:hover { color: #fff; text-decoration: none; }
.lang-switch a.is-active {
  background: transparent;
  color: var(--gold-soft);
  box-shadow: inset 0 -1px 0 var(--gold-soft);
}
.lang-switch-mobile {
  margin-top: 16px;
  border-color: rgba(11,28,44,.2);
  width: fit-content;
}
.lang-switch-mobile a { color: var(--ink-soft); }
.lang-switch-mobile a.is-active {
  background: var(--navy);
  color: #fff;
}

.lang-dropdown {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
}
.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.78);
  font: inherit;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  line-height: 1;
  min-height: 40px;
  height: 40px;
  box-sizing: border-box;
}
.lang-dropdown-toggle:hover { color: var(--gold-soft); }
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 72px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(11,28,44,.18);
  z-index: 80;
  display: flex;
  flex-direction: column;
}
.lang-dropdown-menu[hidden] { display: none !important; }
.lang-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  text-align: center;
}
.lang-dropdown-menu a:hover { background: var(--paper); color: var(--navy); text-decoration: none; }
.lang-dropdown-menu a.is-active { color: var(--gold); }
.header-phone {
  font-weight: 600;
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  text-decoration: none;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,.22);
  line-height: 1.2;
}
.header-phone:hover { color: var(--gold-soft); text-decoration: none; }

.btn-consult, .btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  font: inherit;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-consult {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  padding: 11px 16px;
  font-size: .68rem;
  white-space: nowrap;
  min-height: 40px;
  box-sizing: border-box;
}
.btn-consult:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--navy);
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
  border: 0;
  background: transparent;
  transition: background .25s var(--ease);
}
.nav-toggle:hover {
  background: rgba(196, 165, 116, .12);
}
.nav-toggle-lines {
  display: block;
  width: 20px;
  height: 14px;
  margin: 0 auto;
  position: relative;
}
.nav-toggle-lines span,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold-soft);
  transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease), width .3s var(--ease);
}
.nav-toggle-lines span { top: 6px; width: 100%; display: block; }
.nav-toggle-lines::before { top: 0; width: 100%; }
.nav-toggle-lines::after { top: 12px; width: 70%; }
body.nav-open .nav-toggle {
  background: rgba(196, 165, 116, .16);
}
body.nav-open .nav-toggle-lines span { opacity: 0; }
body.nav-open .nav-toggle-lines::before {
  top: 6px;
  width: 100%;
  transform: rotate(45deg);
}
body.nav-open .nav-toggle-lines::after {
  top: 6px;
  width: 100%;
  transform: rotate(-45deg);
}

/* Fixed mobile consultation CTA */
.mobile-fab {
  display: none;
}

/* Hero — authoritative, calm */
.block-hero {
  position: relative;
  min-height: min(86vh, 720px);
  display: grid;
  align-items: end;
  padding: 100px 0 72px;
  color: #f2f4f6;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
}
.block-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(11,28,44,.98) 0%, rgba(11,28,44,.88) 48%, rgba(26,58,82,.75) 100%);
  z-index: 0;
}
.block-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  z-index: 1;
  opacity: .45;
}
.block-hero.has-bg {
  background: var(--navy) var(--hero-bg) center/cover no-repeat;
}
.block-hero.compact {
  min-height: 0;
  padding: 80px 0 56px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-eyebrow {
  margin: 0 0 18px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.brand-mark {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: #fff;
  line-height: 1;
}
.brand-mark::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 18px;
  background: var(--gold);
}
.hero-content h1,
.hero-content h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: rgba(242, 244, 246, .95);
}
.hero-lead {
  margin: 18px 0 0;
  max-width: 40ch;
  color: rgba(242, 244, 246, .68);
  font-size: .98rem;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* Trust strip */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.trust-item span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}

.section { padding: 88px 0; background: #fff; }
.section.alt { background: var(--paper); }
.section + .section { border-top: 1px solid var(--line); }
.section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--navy);
}
.section h2::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
}
.section-note {
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 48ch;
  font-size: .95rem;
}
.prose {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}
.prose p { margin: 0 0 1.1em; }

.feature-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.feature-list li {
  padding: 18px 0 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
  color: var(--ink-soft);
  padding-left: 18px;
  border-left: 2px solid transparent;
  transition: border-color .25s, color .25s;
}
.feature-list li:hover {
  border-left-color: var(--gold);
  color: var(--navy);
}

.services-grid, .packages-grid, .list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 28px;
}
.service-item, .package-item, .list-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 28px 24px;
  color: inherit;
  text-decoration: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
  min-height: 168px;
}
.services-grid > :nth-child(3n),
.packages-grid > :nth-child(3n),
.list-grid > :nth-child(3n) { border-right: 0; }

.service-item:hover, .list-item:hover {
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}
.service-item:hover p, .list-item:hover p { color: rgba(255,255,255,.65); }
.service-item h3, .package-item h3, .list-item h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
}
.service-item p, .list-item p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
  flex: 1;
}
.package-item .price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  font-variant-numeric: tabular-nums;
}
.package-item ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: .88rem;
  flex: 1;
}
.package-item ul li {
  padding: 7px 0 7px 14px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.package-item ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 6px; height: 1px;
  background: var(--gold);
}
.package-item .btn-primary { align-self: flex-start; margin-top: auto; }

.block-cta {
  background: var(--navy);
  color: #fff;
  padding: 72px 0;
  border-top: 0;
}
.block-cta h2 { margin: 0 0 10px; color: #fff; }
.block-cta h2::before { background: var(--gold); }
.block-cta p { margin: 0; color: rgba(255,255,255,.65); max-width: 42ch; }
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.block-cta .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.block-cta .btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}

.form-cta-wrap {
  max-width: 520px;
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.form-cta-wrap h2 { margin-bottom: 8px; }
.form-cta-wrap h2::before { display: none; }
.form-cta-wrap .section-note { margin-bottom: 24px; }

.lead-form { display: grid; gap: 16px; }
.lead-form label {
  display: grid;
  gap: 8px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  background: transparent;
}
.lead-form input:focus, .lead-form textarea:focus {
  outline: none;
  border-bottom-color: var(--navy);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-status { margin: 4px 0 0; font-size: .88rem; letter-spacing: 0; text-transform: none; font-weight: 500; }
.form-status.ok { color: #1a6b45; }
.form-status.err { color: #a61b12; }

body.modal-open { overflow: hidden; }
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}
.form-modal[hidden] { display: none !important; }
.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 44, .78);
  animation: fadeIn .28s var(--ease);
}
.form-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  max-height: min(92vh, 740px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 28px 28px;
  animation: riseIn .38s var(--ease);
}
.form-modal-dialog h2 {
  margin: 0 0 22px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}
.form-modal-dialog .lead-form { border: 0; padding: 0; background: transparent; }
.form-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.form-modal-close:hover { color: var(--navy); border-color: var(--navy); }

.contact-list { list-style: none; margin: 28px 0 0; padding: 0; border-top: 1px solid var(--line); }
.contact-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 6px;
}
.contact-list li span {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.contact-list a, .contact-list p {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
}

.faq-answer { margin: 12px 0 0; color: var(--ink-soft); line-height: 1.6; }
.faq-answer a { color: var(--gold); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.team-card {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.team-card:nth-child(3n) { border-right: 0; }
.team-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  margin-bottom: 14px;
  display: block;
}
.team-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.team-role { margin: 0 0 10px; color: var(--muted); font-size: .88rem; }
.faq-item { border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: 0; margin: 0; }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--navy);
}
.faq-item .faq-q {
  margin: 0;
  font: inherit;
  font-weight: 600;
  color: inherit;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-weight: 400; color: var(--gold); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0 0 18px; color: var(--ink-soft); padding-right: 32px; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.block-image figure { margin: 0; border: 1px solid var(--line); }
.block-image figcaption {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 10px;
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.62);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.site-footer .logo { color: #fff; margin-bottom: 14px; display: inline-block; }
.site-footer h4,
.site-footer .footer-heading {
  margin: 0 0 16px;
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,.62);
  margin-bottom: 10px;
  font-size: .9rem;
  text-decoration: none;
}
.site-footer a:hover { color: var(--gold-soft); text-decoration: none; }
.footer-muted { color: rgba(255,255,255,.42); font-size: .85rem; margin: 0 0 8px; line-height: 1.5; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .26s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Mobile drawer — hidden on desktop */
.mobile-nav { display: none; }
.mobile-lang { display: none; }

@media (max-width: 980px) {
  .wrap { width: min(1100px, calc(100% - 32px)); }
  .services-grid, .packages-grid, .list-grid { grid-template-columns: 1fr 1fr; }
  .services-grid > :nth-child(3n),
  .packages-grid > :nth-child(3n),
  .list-grid > :nth-child(3n) { border-right: 1px solid var(--line); }
  .services-grid > :nth-child(2n),
  .packages-grid > :nth-child(2n),
  .list-grid > :nth-child(2n) { border-right: 0; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .header-inner {
    display: flex;
    gap: 12px;
  }
  .header-left { flex: 1; min-width: 0; }
  .nav-desktop { display: none; }
  .header-phone { display: none; }
  .header-actions .btn-consult { display: none; }
  .lang-dropdown-desktop { display: none !important; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .logo { max-width: 170px; }
  .logo-img { height: 36px; max-width: 170px; }

  .mobile-fab {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, transparent, rgba(11, 28, 44, .55) 35%, rgba(11, 28, 44, .92));
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .mobile-fab-btn {
    pointer-events: auto;
    width: 100%;
    padding: 15px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  }
  body.nav-open .mobile-fab,
  body.modal-open .mobile-fab {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
  }
  body.has-mobile-fab {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
  body.has-mobile-fab .site-footer {
    padding-bottom: 28px;
  }

  .header-inner {
    gap: 12px;
    min-height: 60px;
  }
  .logo-img { height: 40px; max-width: 200px; }
  .site-header {
    background: var(--navy);
  }
  .header-actions { gap: 8px; }

  .mobile-nav {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
  }
  .mobile-nav[hidden] { display: none !important; }
  .mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 28, 44, .55);
    animation: fadeIn .25s var(--ease);
  }
  .mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100%, 360px);
    background: #fff;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: stretch;
    box-shadow: -12px 0 40px rgba(11, 28, 44, .18);
    animation: slideInRight .35s var(--ease);
    overflow: auto;
  }
  .mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(196,165,116,.2);
    position: sticky;
    top: 0;
    background: var(--navy);
    z-index: 2;
  }
  .mobile-nav-top .logo-img { height: 36px; max-width: 180px; }
  .nav-close {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
  }
  .nav-close span,
  .nav-close span::before {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 1.5px;
    background: #fff;
    display: block;
  }
  .nav-close span { transform: translate(-50%, -50%) rotate(45deg); }
  .nav-close span::before {
    content: "";
    left: 0; top: 0;
    transform: rotate(90deg);
  }
  .nav-close:hover span,
  .nav-close:hover span::before { background: var(--gold-soft); }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
    text-align: left;
  }
  .mobile-nav-links a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 22px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav-links a:hover {
    background: var(--paper);
    color: var(--gold);
    text-decoration: none;
  }

  .mobile-nav-bottom {
    margin-top: auto;
    padding: 20px 22px 28px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    text-align: left;
  }
  .mobile-nav-phone {
    display: block;
    margin: 14px 0 18px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    text-decoration: none;
    font-variant-numeric: tabular-nums;
  }
  .mobile-nav-messengers > span {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .mobile-nav-messengers .msg-btn {
    flex: 1;
    min-width: 0;
    height: 42px;
    font-size: .72rem;
  }

  .mobile-lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .mobile-lang-label {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .mobile-lang-switch {
    display: inline-flex;
    gap: 0;
  }
  .mobile-lang-switch a {
    padding: 5px 10px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid transparent;
  }
  .mobile-lang-switch a.is-active {
    color: var(--navy);
    border-bottom-color: var(--gold);
  }
  .mobile-lang-switch a:hover { color: var(--navy); text-decoration: none; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: none; }
}

@media (max-width: 720px) {
  :root { --header-h: 60px; }
  .services-grid, .packages-grid, .list-grid, .footer-grid, .form-row, .trust-bar-inner { grid-template-columns: 1fr; }
  .services-grid > *, .packages-grid > *, .list-grid > * { border-right: 0 !important; }
  .trust-item { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 64px 0; }
  .block-hero { min-height: min(82vh, 640px); padding: 72px 0 56px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { width: 100%; }
  .form-cta-wrap { padding: 28px 20px; }
  .cta-inner { flex-direction: column; align-items: stretch; }
  .block-cta .btn-primary { width: 100%; }
  .form-modal { padding: 12px; align-items: end; }
  .form-modal-dialog { width: 100%; max-height: 90vh; padding: 28px 20px 24px; }
  .mobile-nav-panel { width: 100%; }
  .header-inner { width: min(1320px, calc(100% - 24px)); }
}
