:root {
  --ink: #07152f;
  --muted: #53637c;
  --paper: #f7f9ff;
  --surface: #ffffff;
  --blue: #004ee8;
  --blue-2: #0032b3;
  --blue-3: #06175f;
  --blue-soft: #eaf0ff;
  --mist: #eef3ff;
  --line: #d9e1f5;
  --gold: #c8972d;
  --shadow: 0 28px 80px rgba(0, 50, 179, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 249, 255, 0.84);
  border-bottom: 1px solid rgba(217, 225, 245, 0.78);
  backdrop-filter: blur(20px);
}

.brand,
.nav,
.hero-actions,
.hero-proof,
.intro-band,
.intro-band div,
.footer,
.contact-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
  font-weight: 900;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 50, 179, 0.12);
}

.brand span {
  max-width: 180px;
  line-height: 1.05;
}

.nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(7, 21, 47, 0.72);
  font-size: 0.95rem;
  font-weight: 750;
}

.nav a,
.footer a,
.contact-links a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav a:hover,
.footer a:hover,
.contact-links a:hover {
  color: var(--blue);
}

.header-cta {
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--blue-3);
  color: #ffffff;
  font-weight: 850;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  padding: clamp(118px, 14vw, 176px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 62px);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: url("images/vmf004.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 249, 255, 0.97) 0%, rgba(247, 249, 255, 0.88) 42%, rgba(247, 249, 255, 0.2) 74%),
    linear-gradient(180deg, rgba(0, 50, 179, 0.1), rgba(7, 21, 47, 0.18));
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
dl {
  margin-top: 0;
}

h1,
h2 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 8.6vw, 8.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 5.15rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 50, 179, 0.28);
}

.button.secondary {
  border-color: rgba(7, 21, 47, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.hero-proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(40px, 7vw, 90px);
}

.hero-proof span {
  padding: 10px 14px;
  border: 1px solid rgba(0, 50, 179, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-3);
  font-size: 0.92rem;
  font-weight: 850;
}

.intro-band {
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(6, 23, 95, 0.94), rgba(0, 50, 179, 0.78)),
    url("images/color.jpg") center / cover;
  color: #ffffff;
}

.intro-band p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 850;
}

.intro-band div {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.intro-band span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(70px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-heading p {
  max-width: 700px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 330px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--surface);
}

.feature-service {
  background: linear-gradient(180deg, #ffffff, #eef3ff);
}

.service-number {
  display: inline-flex;
  margin-bottom: 76px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.gallery {
  display: grid;
  grid-template-columns: 0.72fr 0.58fr 1.2fr;
  min-height: 560px;
  background: var(--blue-3);
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.gallery img:first-child {
  object-position: center 22%;
}

.gallery img:nth-child(2) {
  object-position: center;
}

.gallery img:last-child {
  object-position: center 35%;
}

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

.pricing-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.price-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-panel {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(0, 50, 179, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(7, 21, 47, 0.04);
}

.price-panel.featured {
  background: #ffffff;
  box-shadow: var(--shadow);
}

.price-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.price-title h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.price-title strong {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  white-space: nowrap;
}

.price-panel dl {
  margin-bottom: 0;
}

.price-panel div:not(.price-title) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.price-panel dt {
  color: var(--ink);
  font-weight: 760;
}

.price-panel dd {
  margin: 0;
  color: var(--muted);
  font-weight: 880;
  text-align: right;
}

.travel-note {
  max-width: 950px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: rgba(255, 255, 255, 0.74);
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background: #ffffff;
}

.about-copy p {
  max-width: 780px;
}

.about-signature {
  display: grid;
  justify-items: center;
  gap: 26px;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 243, 255, 0.94)),
    url("images/color.jpg") center / cover;
  box-shadow: var(--shadow);
}

.about-signature img {
  width: min(100%, 420px);
  border-radius: 50%;
  box-shadow: 0 22px 60px rgba(0, 50, 179, 0.18);
}

.about-signature p {
  margin: 0;
  color: var(--blue-3);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  background: var(--ink);
  color: #ffffff;
}

.contact p,
.contact address {
  color: rgba(255, 255, 255, 0.76);
}

.contact .eyebrow {
  color: #86aaff;
}

address {
  margin: 0 0 22px;
  font-style: normal;
}

.contact-links {
  flex-wrap: wrap;
  gap: 12px;
}

.contact-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 850;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
  font-size: 0.94rem;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .service-grid,
  .price-layout,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery img:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand span,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: 104px 18px 34px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(247, 249, 255, 0.95) 0%, rgba(247, 249, 255, 0.86) 54%, rgba(247, 249, 255, 0.74) 100%),
      linear-gradient(180deg, rgba(0, 50, 179, 0.05), rgba(7, 21, 47, 0.22));
  }

  h1 {
    font-size: 3.1rem;
  }

  .button {
    width: 100%;
  }

  .intro-band {
    display: grid;
  }

  .intro-band div {
    justify-content: flex-start;
  }

  .service-card {
    min-height: 260px;
  }

  .service-number {
    margin-bottom: 42px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img,
  .gallery img:last-child {
    min-height: 360px;
    grid-column: auto;
  }

  .price-title,
  .price-panel div:not(.price-title) {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .price-panel dd {
    text-align: left;
  }

  .footer {
    display: grid;
  }
}
