:root {
  --ink: #07192f;
  --ink-soft: #183454;
  --gold: #d7aa3d;
  --gold-light: #f3d77a;
  --paper: #f7f4ed;
  --white: #ffffff;
  --line: rgba(7, 25, 47, 0.13);
  --muted: #5f6c7a;
  --teal: #1f766d;
  --rose: #ad4e45;
  --shadow: 0 22px 70px rgba(7, 25, 47, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(247, 244, 237, 0.86);
  border-bottom: 1px solid rgba(7, 25, 47, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  background: var(--ink);
  border: 1px solid rgba(215, 170, 61, 0.55);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.header-action,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
}

.header-action,
.btn.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(7, 25, 47, 0.18);
}

.btn.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--line);
}

.hero {
  display: grid;
  min-height: calc(100vh - 75px);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 58px) 36px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(247, 244, 237, 0.98) 0%, rgba(247, 244, 237, 0.85) 46%, rgba(7, 25, 47, 0.1) 100%),
    radial-gradient(circle at 84% 22%, rgba(215, 170, 61, 0.34), transparent 32%);
}

.eyebrow,
.section-label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.7vw, 56px);
  line-height: 1.03;
}

h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
}

.hero-text {
  max-width: 620px;
  color: #394a5d;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

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

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 12% 10% 8%;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(7, 25, 47, 0.92), rgba(24, 52, 84, 0.76));
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: min(760px, 100%);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(215, 170, 61, 0.35);
  box-shadow: 0 26px 80px rgba(7, 25, 47, 0.23);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(7, 25, 47, 0.12);
  border-block: 1px solid rgba(7, 25, 47, 0.12);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 58px);
  background: #fffaf0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  font-family: Georgia, serif;
  font-size: 20px;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 58px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  margin-top: 18px;
}

.intro-grid p,
.section-heading + p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, 0.36fr) minmax(0, 0.94fr);
  gap: clamp(18px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 50px);
}

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

.service-grid {
  display: grid;
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  color: var(--white);
  background: var(--ink);
}

.travel-card {
  background: #263e43;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(243, 215, 122, 0.25);
}

.service-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.service-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.service-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
}

.why {
  background:
    linear-gradient(180deg, rgba(247, 244, 237, 0.92), rgba(247, 244, 237, 1)),
    linear-gradient(90deg, rgba(173, 78, 69, 0.18), rgba(31, 118, 109, 0.12));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(7, 25, 47, 0.14);
  border: 1px solid rgba(7, 25, 47, 0.14);
}

.why-grid div {
  min-height: 210px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.why-grid strong {
  display: block;
  margin-bottom: 18px;
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.08;
}

.why-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 82px);
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 25, 47, 0.98), rgba(24, 52, 84, 0.94)),
    radial-gradient(circle at 80% 10%, rgba(215, 170, 61, 0.5), transparent 30%);
}

.contact-section .section-label {
  color: var(--gold-light);
}

.contact-section h2 {
  max-width: 680px;
  margin: 16px 0 18px;
}

.contact-section p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: grid;
  gap: 5px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-link span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: clamp(18px, 2vw, 24px);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.72);
  background: #041020;
  font-size: 14px;
}

@media (max-width: 940px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 4px;
  }

  .hero,
  .intro-grid,
  .section-heading,
  .service-card,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .trust-strip,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand {
    min-width: 0;
  }

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

  .header-action {
    min-height: 40px;
    padding: 0 13px;
  }

  .nav {
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(38px, 15vw, 58px);
  }

  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .btn,
  .header-action {
    width: auto;
  }

  .trust-strip,
  .why-grid,
  .service-card ul {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 16px;
  }
}
