:root {
  --navy: #001f3f;
  --navy-2: #06345f;
  --gold: #d98b0b;
  --gold-2: #f3a11f;
  --white: #ffffff;
  --paper: #f7f7f5;
  --ink: #052141;
  --muted: #41536b;
  --line: #d8dce2;
  --shadow: 0 8px 24px rgba(0, 20, 42, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.topbar {
  height: 70px;
  display: grid;
  grid-template-columns: 230px 1fr 110px;
  align-items: center;
  padding: 0 50px;
  color: var(--white);
  background: linear-gradient(90deg, #001a34, #002b50);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo-house {
  width: 43px;
  height: 43px;
  color: var(--gold-2);
}

.logo-house svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linejoin: round;
}

.logo-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: .86;
  letter-spacing: 3px;
}

.logo-copy small {
  display: block;
  margin-top: 5px;
  font-size: .64rem;
  letter-spacing: 3px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 48px;
  font-size: .78rem;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 28px 0 24px;
}

.nav a.active,
.nav a:hover,
.language-switcher button.active,
.language-switcher button:hover {
  color: var(--gold-2);
}

.nav a.active::after,
.nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-2);
}

.language-switcher {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  font-size: .78rem;
  font-weight: 900;
}

.language-switcher button {
  border: 0;
  padding: 0;
  color: var(--white);
  background: none;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 400px;
  display: grid;
  align-items: center;
  padding-left: 56px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,31,63,.98) 0%, rgba(0,31,63,.86) 39%, rgba(0,31,63,.22) 64%, rgba(0,31,63,0) 100%),
    url("https://images.unsplash.com/photo-1600880292089-90a7e086ee0c?auto=format&fit=crop&w=1500&q=85") center right / cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(550px, 92vw);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 3.55rem;
  line-height: .98;
  letter-spacing: -.5px;
}

.hero h1 span {
  display: block;
  color: var(--gold-2);
}

.hero-locations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 15px 0 17px;
  font-size: 1rem;
}

.hero-locations b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-2);
}

.hero-locations::after {
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 8px;
  content: "";
  background: var(--gold-2);
  flex-basis: 100%;
}

.hero-lead {
  max-width: 370px;
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.hero-note {
  margin: 0;
  color: var(--gold-2);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  border: 2px solid var(--gold);
  border-radius: 5px;
  padding: 0 23px;
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
  font-size: .85rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: .18s ease;
}

.btn-gold {
  color: var(--white);
  background: linear-gradient(180deg, #eca12d, var(--gold));
}

.btn-outline {
  color: var(--white);
  background: rgba(0,31,63,.5);
}

.btn:hover,
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 94px;
  padding: 17px 58px;
  background: var(--white);
}

.features article {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.features article:last-child { border-right: 0; }

.features h2 {
  margin: 0;
  font-size: .92rem;
  line-height: 1.35;
}

.line-icon,
.package-icon,
.big-shield {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold);
}

.line-icon {
  width: 52px;
  height: 52px;
}

.line-icon::before,
.line-icon::after,
.package-icon::before,
.package-icon::after,
.big-shield::before,
.big-shield::after {
  position: absolute;
  content: "";
}

.shield::before {
  inset: 5px 9px;
  border: 3px solid currentColor;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.shield::after,
.calendar::after,
.big-shield::after {
  width: 18px;
  height: 10px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(-45deg);
}

.calendar::before {
  inset: 9px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.camera::before {
  inset: 13px 7px 9px;
  border: 3px solid currentColor;
  border-radius: 7px;
}

.camera::after {
  width: 13px;
  height: 13px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.tools::before,
.tools::after {
  width: 42px;
  height: 3px;
  background: currentColor;
}

.tools::before { transform: rotate(45deg); }
.tools::after { transform: rotate(-45deg); }

.chat::before {
  inset: 10px 8px 14px;
  border: 3px solid currentColor;
  border-radius: 8px;
}

.chat::after {
  right: 13px;
  bottom: 8px;
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
}

.packages-section {
  padding: 17px 54px 13px;
  background: linear-gradient(180deg, #f6f6f4, var(--white));
}

.packages-section > h2 {
  margin: 0 0 22px;
  text-align: center;
  font-family: var(--serif);
  font-size: 2.75rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  position: relative;
  min-height: 350px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 24px 28px 17px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  cursor: pointer;
  transition: .18s ease;
}

.package-card.recommended {
  border: 2px solid var(--gold);
}

.ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 190px;
  border-radius: 5px;
  padding: 5px 10px;
  color: var(--white);
  background: linear-gradient(180deg, #e4a13a, var(--gold));
  font-weight: 900;
  text-align: center;
  transform: translateX(-50%);
}

.package-icon {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background: radial-gradient(circle, #062f5a, var(--navy));
}

.package-card h3 {
  margin: -48px 0 18px 72px;
  font-family: var(--serif);
  font-size: 1.75rem;
}

.package-icon.home::before {
  width: 27px;
  height: 22px;
  border: 3px solid currentColor;
  border-top: 0;
}

.package-icon.home::after {
  width: 24px;
  height: 24px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateY(-6px) rotate(45deg);
}

.package-icon.star::before {
  width: 31px;
  height: 31px;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.package-icon.diamond::before {
  width: 32px;
  height: 27px;
  border: 3px solid currentColor;
  clip-path: polygon(15% 0, 85% 0, 100% 36%, 50% 100%, 0 36%);
}

.prices,
.details {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prices {
  display: grid;
  gap: 5px;
  margin-bottom: 21px;
  font-size: .86rem;
}

.prices li {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 8px;
}

.prices li::before {
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.details {
  display: grid;
  gap: 8px;
  min-height: 92px;
  margin-bottom: 15px;
  font-size: .78rem;
}

.details li {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 10px;
}

.details li::before {
  width: 5px;
  height: 5px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--navy);
  content: "";
}

.card-btn {
  width: 155px;
  min-height: 37px;
  margin: 0 auto;
  font-size: .82rem;
}

.why {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 28px;
  align-items: center;
  min-height: 151px;
  padding: 13px 54px;
  color: var(--white);
  background: linear-gradient(90deg, #001b36, #00345f);
}

.why-text {
  display: flex;
  gap: 22px;
  align-items: center;
}

.big-shield {
  width: 92px;
  height: 105px;
}

.big-shield::before {
  inset: 5px 10px;
  border: 6px solid currentColor;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.big-shield::after {
  width: 36px;
  height: 20px;
  border-width: 0 0 6px 6px;
}

.why h2 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 2.1rem;
}

.why p {
  margin: 4px 0;
  font-size: .9rem;
}

.why strong { color: var(--gold-2); }

.why-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.why-images img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border: 2px solid var(--gold);
  border-radius: 8px;
}

.about-area {
  display: grid;
  grid-template-columns: 1fr 1.2fr .95fr;
  gap: 31px;
  align-items: center;
  padding: 19px 51px;
  background: var(--white);
}

.about-photo {
  width: 100%;
  height: 151px;
  object-fit: cover;
  border-radius: 6px;
}

.about-copy {
  min-height: 150px;
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.about-copy h2,
.area-card h2,
.contact-info h2,
.contact-form h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
}

.about-copy p {
  margin: 5px 0;
  font-size: .9rem;
}

.english-pill {
  display: inline-flex;
  margin-top: 7px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  padding: 5px 9px;
  font-weight: 800;
  font-size: .86rem;
}

.area-card { text-align: center; }

.area-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 18px;
}

.area-tags span {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .86rem;
}

.area-card p {
  margin: 9px 0 0;
  font-size: .86rem;
}

.contact-area {
  display: grid;
  grid-template-columns: .82fr 1.72fr;
  gap: 36px;
  padding: 12px 57px 14px;
  background: linear-gradient(180deg, #fbfbfb, #f0f1f3);
}

.contact-info {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.55rem;
}

.contact-info p {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  margin: 6px 0;
  font-size: .78rem;
}

.contact-info span {
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bfc5cc;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: .78rem;
}

.contact-form textarea {
  min-height: 43px;
  resize: vertical;
}

.send-btn {
  justify-self: end;
  min-width: 205px;
  border: 0;
  border-radius: 5px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  font-size: .78rem;
  cursor: pointer;
}

.send-btn b {
  margin-left: 16px;
  color: var(--gold-2);
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 34px;
  min-height: 93px;
  padding: 18px 52px 8px;
  color: var(--white);
  background: linear-gradient(90deg, #001b36, #002f58);
}

.footer-logo .logo-copy strong { font-size: 1.85rem; }
.footer p { margin: 7px 0 0; font-size: .68rem; }

.footer-nav,
.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 4px 42px;
  border-left: 1px solid rgba(255,255,255,.28);
  padding-left: 36px;
  font-size: .7rem;
}

.footer-nav strong,
.footer-contact strong {
  grid-column: 1 / -1;
}

.footer-contact {
  grid-template-columns: 1fr;
  gap: 2px;
}

.legal {
  grid-column: 1 / -1;
  justify-self: end;
  display: flex;
  gap: 14px;
  margin-top: -12px;
  font-size: .66rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  max-width: 340px;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .18s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .topbar {
    height: auto;
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 15px 20px;
  }

  .nav {
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
  }

  .language-switcher { justify-content: flex-start; }

  .hero {
    height: auto;
    min-height: 560px;
    padding: 45px 22px;
    background:
      linear-gradient(180deg, rgba(0,31,63,.98), rgba(0,31,63,.72)),
      url("https://images.unsplash.com/photo-1600880292089-90a7e086ee0c?auto=format&fit=crop&w=1000&q=85") center / cover;
  }

  .features,
  .package-grid,
  .why,
  .about-area,
  .contact-area,
  .footer {
    grid-template-columns: 1fr;
  }

  .features article,
  .about-copy,
  .contact-info,
  .footer-nav,
  .footer-contact {
    justify-content: flex-start;
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 2.75rem; }
  .hero-actions,
  .form-row,
  .why-images,
  .area-tags {
    grid-template-columns: 1fr;
    display: grid;
  }

  .btn { width: 100%; }
  .packages-section,
  .why,
  .about-area,
  .contact-area,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}
