:root {
  --bg: #f6f1ea;
  --surface: #ffffff;
  --surface-2: #f2ebe1;
  --primary: #16324f;
  --primary-2: #284b63;
  --secondary: #b58a50;
  --accent: #6c8b74;
  --text: #263238;
  --muted: #5f6b72;
  --line: #d8cdbf;
  --soft: #eef3f1;
  --shadow: 0 16px 40px rgba(22, 50, 79, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: linear-gradient(180deg, #fbf8f4 0%, var(--bg) 100%);
  color: var(--text);
  font:
    16px/1.65 "Inter",
    "Segoe UI",
    Arial,
    sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}
.header-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.topbar {
  background: var(--primary);
  color: #eaf0f4;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}
header.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 205, 191, 0.7);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow);
}
.brand-title {
  font:
    700 26px/1.1 "Cormorant Garamond",
    Georgia,
    serif;
  color: var(--primary);
}
.brand-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  font-weight: 500;
}
.nav a:hover,
.nav a.active {
  color: var(--primary);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #c69b62);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border-color: var(--line);
}
.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.mobile-toggle {
  display: none;
}
.hero {
  padding: 84px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(181, 138, 80, 0.16),
      transparent 32%
    ),
    radial-gradient(
      circle at left 30%,
      rgba(108, 139, 116, 0.12),
      transparent 25%
    );
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  padding: 10px 14px;
  border: 1px solid rgba(181, 138, 80, 0.25);
  border-radius: 999px;
  background: #fffaf4;
}
.hero h1,
.page-hero h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  margin: 18px 0 18px;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.point {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 205, 191, 0.8);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.point strong {
  display: block;
  color: var(--primary);
  font-size: 20px;
}
.hero-card,
.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 205, 191, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 26px;
}
.hero-card .eyebrow {
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
}
.hero-card ul {
  padding-left: 18px;
  color: var(--muted);
}
.hero-card li + li {
  margin-top: 8px;
}
.section {
  padding: 32px 0 84px;
}
.section.alt {
  background: rgba(255, 255, 255, 0.5);
  border-block: 1px solid rgba(216, 205, 191, 0.45);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head p {
  max-width: 680px;
  color: var(--muted);
  margin: 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card,
.info-card {
  background: var(--surface);
  border: 1px solid rgba(216, 205, 191, 0.9);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.service-card h3,
.info-card h3 {
  font-size: 34px;
  margin: 8px 0 12px;
}
.meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
}
.service-card ul,
.check-list {
  padding-left: 18px;
  color: var(--muted);
  margin: 16px 0 0;
}
.service-card li + li,
.check-list li + li {
  margin-top: 8px;
}
.band {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-radius: calc(var(--radius) + 6px);
  padding: 34px;
  box-shadow: var(--shadow);
}
.band h2,
.band h3 {
  color: #fff;
  margin-top: 0;
}
.faq {
  display: grid;
  gap: 14px;
}
.faq details {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(216, 205, 191, 0.9);
  padding: 18px 20px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--primary);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.page-hero {
  padding: 56px 0 28px;
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  margin: 14px 0;
}
.breadcrumbs {
  color: var(--muted);
  font-size: 14px;
}
.map-shell {
  border-radius: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(242, 235, 225, 0.96)
    ),
    radial-gradient(
      circle at top right,
      rgba(181, 138, 80, 0.12),
      transparent 30%
    );
  border: 1px solid rgba(216, 205, 191, 0.95);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(216, 205, 191, 0.9);
  background: rgba(255, 255, 255, 0.85);
}
.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(22, 50, 79, 0.04), rgba(108, 139, 116, 0.06)),
    repeating-linear-gradient(
      45deg,
      rgba(181, 138, 80, 0.05) 0 12px,
      rgba(255, 255, 255, 0) 12px 24px
    );
}
.map-frame {
  width: min(720px, 100%);
  aspect-ratio: 16/9;
  border-radius: 24px;
  border: 1px dashed rgba(22, 50, 79, 0.28);
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(216, 205, 191, 0.9);
  padding: 24px;
  box-shadow: var(--shadow);
}
label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
}
input,
textarea {
  width: 100%;
  border: 1px solid rgba(216, 205, 191, 0.95);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text);
}
textarea {
  min-height: 140px;
  resize: vertical;
}
.form-note,
.muted {
  color: var(--muted);
  font-size: 14px;
}
.footer {
  background: var(--primary);
  color: #dbe5ec;
  padding: 42px 0 22px;
  margin-top: 42px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 24px;
  margin-bottom: 24px;
}
.footer h4 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.footer a {
  color: #dbe5ec;
}
.footer a:hover {
  color: #fff;
}
.small {
  font-size: 13px;
}
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 205, 191, 0.95);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 18px;
}
.cookie-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-hidden {
  display: none;
}
.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.badge {
  background: #fff;
  border: 1px solid rgba(216, 205, 191, 0.9);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}
.badge strong {
  display: block;
  font-size: 28px;
  color: var(--primary);
}
.notice {
  padding: 18px 20px;
  border-radius: 18px;
  background: #fffaf4;
  border: 1px solid rgba(181, 138, 80, 0.25);
  color: var(--muted);
}
.table-like {
  display: grid;
  gap: 12px;
}
.table-like .row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(216, 205, 191, 0.9);
  border-radius: 16px;
  padding: 16px;
}
.legal-content h2 {
  font-size: 38px;
  margin: 28px 0 12px;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
}
.legal-content ul {
  padding-left: 18px;
}

/* premium visuals */
.hero.hero-premium {
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      110deg,
      rgba(9, 19, 31, 0.84) 0%,
      rgba(14, 33, 51, 0.72) 38%,
      rgba(15, 39, 64, 0.38) 64%,
      rgba(15, 39, 64, 0.18) 100%
    ),
    url("hero-legal.png") center/cover no-repeat;
}
.hero.hero-premium::after {
  content: "";
  position: absolute;
  inset: auto auto -90px -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(200, 160, 106, 0.22),
    rgba(200, 160, 106, 0)
  );
  filter: blur(8px);
  pointer-events: none;
}
.hero.hero-premium .kicker,
.hero.hero-premium .lead,
.hero.hero-premium .point span,
.hero.hero-premium .hero-card ul,
.hero.hero-premium .notice {
  color: rgba(245, 242, 236, 0.88);
}
.hero.hero-premium h1,
.hero.hero-premium .point strong,
.hero.hero-premium .hero-card h2 {
  color: #fff;
}
.hero.hero-premium .kicker {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}
.hero.hero-premium .point,
.hero.hero-premium .hero-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(7, 15, 25, 0.28);
}
.hero.hero-premium .hero-card .eyebrow {
  color: #d9b07b;
}
.hero-visual-stack {
  position: relative;
  min-height: 580px;
}
.visual-card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(7, 15, 25, 0.34);
  background: #fff;
}
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.visual-card.main {
  top: 20px;
  right: 0;
  width: min(500px, 100%);
  height: 520px;
}
.visual-card.small-a {
  top: 0;
  left: 10px;
  width: 230px;
  height: 180px;
}
.visual-card.small-b {
  bottom: 26px;
  left: 30px;
  width: 260px;
  height: 210px;
}
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(8, 14, 20, 0.08)
  );
}
.float-soft {
  animation: floatSoft 8s ease-in-out infinite;
}
.float-soft-delayed {
  animation: floatSoft 10s ease-in-out infinite 1.5s;
}
.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.image-card {
  background: #fff;
  border: 1px solid rgba(216, 205, 191, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-card.tall {
  min-height: 440px;
}
.split-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.image-strip .image-card {
  min-height: 240px;
}
.page-hero.page-hero-premium {
  position: relative;
  overflow: hidden;
  padding: 66px 0 46px;
}
.page-hero.page-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(200, 160, 106, 0.15),
      transparent 24%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.page-hero-premium .container {
  position: relative;
}
.page-hero-premium .lead {
  max-width: 860px;
}
.page-banner {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}

.hover-lift {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 31, 46, 0.14);
  border-color: rgba(200, 160, 106, 0.45);
}
@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .float-soft,
  .float-soft-delayed,
  .reveal-up,
  .hover-lift {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .footer-grid,
  .grid-3,
  .grid-2,
  .badge-grid {
    grid-template-columns: 1fr;
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid rgba(216, 205, 191, 0.95);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open {
    display: flex;
  }
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(216, 205, 191, 0.95);
    background: #fff;
    color: var(--primary);
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .table-like .row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero.hero-premium {
    min-height: auto;
  }
  .hero-visual-stack,
  .split-showcase,
  .page-banner,
  .image-strip {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .visual-card {
    position: relative;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-top: 16px;
  }
  .visual-card img {
    aspect-ratio: 4/3;
  }
}
