:root {
  --bg: #f5efe8;
  --surface: #fffaf5;
  --surface-2: #f0e4d6;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #dbc8b4;
  --brand: #0f3b57;
  --brand-2: #b68a35;
  --accent: #8c4b2f;
  --ok: #355f4a;
  --shadow: 0 18px 48px rgba(15, 59, 87, 0.1);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8f3ec 0%, #f4ede4 100%);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: auto;
}
.topbar {
  background: #102b3a;
  color: #f7f2ea;
  font-size: 0.92rem;
}
.topbar .container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(250, 245, 238, 0.88);
  border-bottom: 1px solid rgba(219, 200, 180, 0.7);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #1e5679);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  font-size: 1.2rem;
}
.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav a {
  color: #334155;
  font-weight: 600;
}
.nav a:hover,
.nav a.active {
  color: var(--brand);
}
.menu-btn {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(140, 75, 47, 0.22);
}
.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-outline {
  border-color: var(--line);
  background: #fff;
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(rgba(12, 33, 48, 0.66), rgba(12, 33, 48, 0.68)),
    radial-gradient(
      circle at top right,
      rgba(182, 138, 53, 0.18),
      transparent 28%
    ),
    url("../assets/img/hero.png")
      center/cover;
}
.hero .container {
  padding: 92px 0 88px;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-card {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 26px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  margin: 0 0 14px;
}
h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  letter-spacing: 0.01em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #122536;
}
h3 {
  font-size: 1.7rem;
  color: #18364d;
}
.lead {
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.fact {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px;
  border-radius: 18px;
}
.section {
  padding: 84px 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card.soft {
  background: linear-gradient(180deg, #fffdf9 0%, #faf4ec 100%);
}
.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #194d6c);
  margin-bottom: 16px;
  box-shadow: 0 10px 24px rgba(15, 59, 87, 0.18);
}
.muted {
  color: var(--muted);
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}
.list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.list li {
  padding-left: 24px;
  position: relative;
  margin: 10px 0;
}
.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand-2);
  position: absolute;
  left: 0;
  top: 0.55em;
}
.band {
  background: linear-gradient(135deg, #112f44 0%, #1d4760 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.band h2,
.band h3 {
  color: #fff;
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 28px 28px 88px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 28px;
  top: 26px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-2), #c8a55c);
  color: #1a2430;
  font-weight: 800;
}
.badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ede4d7;
  color: #4b5563;
  font-size: 0.85rem;
  font-weight: 700;
}
.notice {
  border-left: 4px solid var(--brand-2);
  padding: 16px 18px;
  background: #f7f1e8;
  border-radius: 14px;
}
.contact-box {
  display: grid;
  gap: 18px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-item strong {
  display: block;
}
.map-frame {
  min-height: 360px;
  border-radius: 26px;
  border: 1px dashed #c4ac8f;
  background:
    linear-gradient(180deg, rgba(182, 138, 53, 0.08), rgba(15, 59, 87, 0.05)),
    radial-gradient(
      circle at top left,
      rgba(182, 138, 53, 0.14),
      transparent 35%
    ),
    #f9f3ea;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-placeholder {
  width: min(92%, 640px);
  aspect-ratio: 16/10;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #f3e7d9);
  border: 1px solid #d9c4ad;
  display: grid;
  place-items: center;
  padding: 26px;
  text-align: center;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.faq details + details {
  margin-top: 16px;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: #163246;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.cta {
  background:
    linear-gradient(135deg, rgba(17, 47, 68, 0.95), rgba(29, 71, 96, 0.95)),
    url("../assets/img/case.png")
      center/cover;
  color: #fff;
  border-radius: 32px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid #d9c6b0;
  background: #fff;
  font: inherit;
  color: var(--text);
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--brand);
}
.form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #243546;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.footer {
  padding: 56px 0 28px;
  background: #102b3a;
  color: #e8e3db;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 28px;
}
.footer a {
  color: #d8d2c8;
}
.footer a:hover {
  color: #fff;
}
.legal p,
.legal li {
  color: #4b5563;
}
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  background: rgba(255, 250, 245, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 18px 20px;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.small {
  font-size: 0.94rem;
}
.breadcrumbs {
  padding-top: 24px;
  color: #64748b;
  font-size: 0.95rem;
}
.page-hero {
  padding: 46px 0 18px;
}
.page-hero p {
  max-width: 70ch;
}
.schema-note {
  display: none;
}
@media (max-width: 980px) {
  .hero .container,
  .grid-3,
  .grid-2,
  .footer-grid,
  .form-grid,
  .quick-facts {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
  }
  .nav.open {
    display: grid;
    gap: 14px;
  }
  .menu-btn {
    display: inline-flex;
  }
  .section-head {
    flex-direction: column;
    align-items: start;
  }
  .cookie-row {
    flex-direction: column;
    align-items: start;
  }
}
