:root {
  --ink: #101820;
  --ink-2: #1d2b36;
  --steel: #5d6974;
  --line: #e4e0d8;
  --paper: #f6f3ed;
  --white: #ffffff;
  --navy: #071f35;
  --navy-2: #0d314f;
  --gold: #c99434;
  --gold-2: #e0b464;
  --green: #476b5d;
  --shadow: 0 22px 60px rgba(16, 24, 32, .13);
  --soft-shadow: 0 14px 36px rgba(16, 24, 32, .08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 31, 53, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(224, 180, 100, .9);
  border-radius: 8px;
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: .04em;
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.5vw, 22px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.nav a {
  opacity: .9;
}

.nav a:hover {
  color: var(--gold-2);
  opacity: 1;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(224, 180, 100, .75);
  border-radius: 999px;
  color: var(--gold-2);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}

.lang-switch button,
.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.lang-switch button.active,
.lang-switch button:hover,
.lang-switch a.active,
.lang-switch a:hover {
  color: #201606;
  border-color: var(--gold-2);
  background: var(--gold-2);
}

.menu-toggle {
  display: none;
  min-width: 82px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/hero-building.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 31, 53, .98) 0%, rgba(7, 31, 53, .86) 42%, rgba(7, 31, 53, .38) 72%, rgba(7, 31, 53, .14) 100%),
    linear-gradient(0deg, rgba(7, 31, 53, .4), rgba(7, 31, 53, .03));
}

.hero-inner {
  position: relative;
  width: min(860px, calc(100% - 44px));
  margin-left: clamp(22px, 7vw, 112px);
  padding-top: clamp(148px, 14vh, 176px);
  padding-bottom: 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 750px;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 690px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
}

.hero-actions,
.process-steps,
.price-grid,
.service-grid,
.language-cards,
.contact-data {
  display: grid;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 24, 32, .18);
}

.btn-primary {
  color: #201606;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .56);
  background: rgba(255, 255, 255, .08);
}

.btn-secondary.dark,
.btn-muted {
  color: var(--ink);
  border-color: rgba(16, 24, 32, .18);
  background: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin-top: 44px;
}

.hero-proof div {
  flex: 1 1 206px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(7, 31, 53, .54);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
}

.hero-proof b,
.hero-proof span {
  display: block;
}

.proof-icon {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(224, 180, 100, .72);
  border-radius: 10px;
  background: rgba(224, 180, 100, .13);
  color: var(--gold-2);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero-proof b {
  color: var(--white);
  font-size: 14px;
  line-height: 1.25;
}

.hero-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.35;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 44px));
  margin: 36px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-strip article {
  padding: 32px;
  border-right: 1px solid var(--line);
}

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.trust-strip h2 {
  font-family: Manrope, Arial, sans-serif;
  font-size: 21px;
}

.trust-strip p,
.section p,
.faq p,
.form-note {
  color: var(--steel);
}

.section {
  padding: clamp(70px, 8vw, 118px) clamp(22px, 7vw, 112px);
}

.split,
.process,
.international,
.contact-section,
.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.image-panel {
  position: relative;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  z-index: -1;
  border: 1px solid rgba(201, 148, 52, .45);
  border-radius: var(--radius);
}

.image-panel img,
.location-media img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-panel {
  max-width: 620px;
}

.content-panel > p {
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature-list div {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.feature-list b,
.feature-list span {
  display: block;
}

.feature-list span {
  margin-top: 3px;
  color: var(--steel);
}

.services,
.faq {
  background: var(--white);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #faf8f3);
}

.service-grid h3 {
  margin-bottom: 12px;
}

.process {
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #f3efe6);
}

.process p {
  color: var(--steel);
}

.process-copy {
  max-width: 610px;
}

.process-steps {
  grid-template-columns: 1fr;
  gap: 16px;
}

.process-steps article {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.process-steps b {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-2);
  font-size: 22px;
}

.pricing {
  background: var(--paper);
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border-color: rgba(224, 180, 100, .7);
  box-shadow: var(--shadow);
}

.price-card h3 {
  font-size: 28px;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 24px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 800;
}

.price span {
  display: block;
  margin-top: 4px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}

.featured .price,
.featured .price span {
  color: var(--gold-2);
}

.price-card ul {
  flex: 1;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  margin: 13px 0;
  padding-left: 28px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #201606;
  background: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.location {
  padding-top: 20px;
}

.location-card {
  max-width: 560px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-card .btn {
  margin-top: 14px;
}

.international {
  background: #eef1ed;
}

.language-cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.language-cards article {
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgba(16, 24, 32, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
}

.language-cards b,
.language-cards span {
  display: block;
}

.language-cards b {
  font-size: 20px;
}

.language-cards span {
  margin-top: 8px;
  color: var(--steel);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

details {
  padding: 22px 24px;
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

.contact-section {
  padding: clamp(70px, 8vw, 110px) clamp(22px, 7vw, 112px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 31, 53, .97), rgba(7, 31, 53, .78)),
    url("assets/building-entry.jpg") center / cover no-repeat;
}

.contact-copy {
  max-width: 620px;
}

.contact-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.contact-data {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.contact-data p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.contact-data span {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form {
  padding: 30px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 900;
}

.contact-form label.is-hidden {
  display: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-line {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 8px 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid #e6e8ec;
  border-radius: 6px;
  background: #fafafa;
  color: var(--steel);
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.45;
}

.consent-line input {
  width: 18px !important;
  height: 18px;
  margin: 2px 0 0 !important;
}

.consent-line a {
  grid-column: 2;
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid #d7d9dc;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(201, 148, 52, .22);
  border-color: var(--gold);
}

.contact-form button {
  width: 100%;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  color: #164b31;
  background: #e8f6ee;
  border: 1px solid #b9e5cb;
}

.form-status.is-error {
  color: #7a1f1f;
  background: #fff0f0;
  border: 1px solid #f0b8b8;
}

.form-note {
  margin: 14px 0 0;
  font-size: 13px;
  text-align: center;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 7vw, 112px);
  color: var(--white);
  background: #061723;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
}

.simple-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(7, 31, 53, .94), rgba(7, 31, 53, .72)),
    url("assets/hero-building.jpg") center / cover no-repeat;
}

.thanks-page,
.legal-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.thanks-card,
.legal-content {
  width: min(820px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.thanks-card h1,
.legal-content h1 {
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
}

.thanks-card p,
.legal-content p {
  color: var(--steel);
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.legal-page {
  place-items: start center;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 28px;
  font-family: Manrope, Arial, sans-serif;
  font-size: 22px;
}

.legal-content a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
}

@media (max-width: 1200px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .lang-switch {
    width: 100%;
    flex-wrap: wrap;
    margin-left: 0;
    padding-top: 10px;
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .nav-cta {
    width: max-content;
    margin-top: 10px;
    padding: 11px 16px !important;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    padding-top: 136px;
  }

  .trust-strip,
  .service-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .split,
  .process,
  .international,
  .contact-section,
  .location {
    grid-template-columns: 1fr;
  }

  .content-panel,
  .location-card,
  .contact-copy {
    max-width: none;
  }
}

@media (max-width: 980px) {
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 74px;
    padding: 12px 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 118px;
    padding-bottom: 64px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .hero-proof,
  .language-cards {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    flex-basis: 100%;
  }

  .btn {
    width: 100%;
  }

  .trust-strip {
    width: calc(100% - 28px);
  }

  .section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .image-panel::before {
    display: none;
  }

  .image-panel img,
  .location-media img {
    min-height: 320px;
  }

  .price-card,
  .contact-form,
  .location-card {
    padding: 24px;
  }

  .badge {
    position: static;
    display: inline-flex;
    width: max-content;
    margin-bottom: 16px;
  }

  .footer {
    display: grid;
  }
}
