:root {
  --ink: #07182f;
  --ink-2: #0d2648;
  --blue: #125db4;
  --blue-soft: #dbe8f7;
  --gold: #d79a23;
  --gold-light: #f1c865;
  --paper: #f7f7f3;
  --white: #ffffff;
  --text: #1d2d43;
  --muted: #687485;
  --line: #dce1e7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

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

main {
  min-height: 100vh;
  overflow: hidden;
}

.utility-bar {
  align-items: center;
  background: var(--ink);
  color: #cbd5e1;
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.06em;
  min-height: 34px;
  padding: 0 clamp(24px, 5.8vw, 92px);
  text-transform: uppercase;
}

.utility-bar > span,
.utility-bar > div {
  align-items: center;
  display: flex;
  gap: 8px;
}

.utility-bar a:hover {
  color: white;
}

.utility-divider {
  background: rgba(255, 255, 255, 0.22);
  height: 12px;
  margin: 0 8px;
  width: 1px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 24, 47, 0.08);
  display: flex;
  height: 88px;
  justify-content: space-between;
  padding: 0 clamp(24px, 5.8vw, 92px);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  align-items: center;
  display: flex;
}

.brand {
  gap: 14px;
}

.brand-logo {
  display: block;
  height: 68px;
  object-fit: contain;
  width: 68px;
}

.brand-copy strong {
  color: var(--ink);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-copy small {
  color: #7a8594;
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  margin-top: 7px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 38px;
}

.desktop-nav a {
  color: #34445a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
}

.desktop-nav a::after {
  background: var(--gold);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  align-items: center;
  background: var(--ink);
  color: white;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 11px;
  min-height: 44px;
  padding: 0 20px;
  transition: background 180ms ease;
}

.header-cta:hover {
  background: var(--blue);
}

.hero {
  color: white;
  min-height: min(820px, calc(100vh - 122px));
  overflow: hidden;
  position: relative;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 16, 37, 0.95) 0%, rgba(3, 16, 37, 0.79) 42%, rgba(3, 16, 37, 0.18) 72%, rgba(3, 16, 37, 0.06) 100%),
    linear-gradient(0deg, rgba(3, 16, 37, 0.72) 0%, transparent 45%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
  padding: clamp(100px, 11vw, 168px) clamp(24px, 7vw, 110px) 170px;
  position: relative;
  z-index: 2;
}

.kicker {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 11px;
  letter-spacing: 0.21em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.kicker > span {
  background: var(--gold);
  display: inline-block;
  height: 2px;
  width: 34px;
}

.kicker.light {
  color: #cad8e9;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.038em;
  margin: 0;
}

h1 {
  font-size: clamp(56px, 6.4vw, 98px);
  line-height: 0.96;
  text-wrap: balance;
}

h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

.hero-intro {
  color: #d5deea;
  font-size: 17px;
  line-height: 1.75;
  margin: 32px 0;
  max-width: 610px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.button-gold:hover {
  background: var(--gold-light);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: white;
}

.button-outline:hover {
  background: white;
  color: var(--ink);
}

.hero-link {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
}

.hero-link:hover {
  color: var(--gold-light);
}

.hero-index {
  background: rgba(4, 20, 43, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  left: 0;
  padding: 0 clamp(24px, 7vw, 110px);
  position: absolute;
  right: 0;
  z-index: 2;
  backdrop-filter: blur(14px);
}

.hero-index > div {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 108px;
  padding: 27px 28px;
}

.hero-index > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-index small {
  color: var(--gold-light);
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-index strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 500;
}

.intro-section,
.section-heading {
  display: grid;
  gap: clamp(40px, 6vw, 90px);
  grid-template-columns: 150px minmax(0, 1.2fr) minmax(280px, 0.65fr);
}

.intro-section {
  align-items: start;
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 110px);
}

.section-label {
  align-items: center;
  color: #788597;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.intro-heading h2,
.section-heading h2,
.feature-copy h2,
.contact-main h2 {
  color: var(--ink);
  font-size: clamp(40px, 4.7vw, 70px);
  line-height: 1.08;
}

.intro-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  padding-top: 40px;
}

.intro-copy p {
  margin: 0 0 18px;
}

.inline-link {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  margin-top: 16px;
  padding-bottom: 7px;
}

.services-section {
  background: var(--ink);
  color: white;
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 110px);
}

.section-heading {
  grid-template-columns: 150px minmax(0, 1fr);
  margin-bottom: 68px;
}

.section-heading h2 {
  color: white;
  max-width: 930px;
}

.light-label {
  color: #8fa0b4;
}

.services-grid {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 360px;
  padding: 32px;
  position: relative;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: #102c51;
  transform: translateY(-4px);
}

.service-card-head {
  align-items: center;
  color: var(--gold-light);
  display: flex;
  justify-content: space-between;
}

.service-card-head > span {
  color: #8fa0b4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.service-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.18;
  margin: 85px 0 20px;
}

.service-card p {
  color: #afbdcd;
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
}

.feature-media {
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.feature-media img {
  object-fit: cover;
  transition: transform 700ms ease;
}

.feature-section:hover .feature-media img {
  transform: scale(1.015);
}

.photo-caption {
  background: rgba(7, 24, 47, 0.88);
  bottom: 24px;
  color: white;
  font-size: 9px;
  left: 24px;
  letter-spacing: 0.13em;
  padding: 12px 15px;
  position: absolute;
  text-transform: uppercase;
}

.feature-copy {
  align-self: center;
  padding: clamp(60px, 8vw, 130px);
}

.feature-copy .section-label {
  margin-bottom: 65px;
}

.feature-copy h2 {
  max-width: 650px;
}

.feature-copy > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 28px 0 0;
  max-width: 590px;
}

.feature-points {
  border-top: 1px solid var(--line);
  margin-top: 38px;
}

.feature-points > div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 15px;
  padding: 18px 0;
}

.feature-points svg {
  color: var(--gold);
  flex: 0 0 auto;
}

.feature-points span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.feature-points strong {
  color: var(--ink);
  display: block;
  font-size: 13px;
}

.logistics-section {
  background: #eef1f4;
}

.process-list {
  border-top: 1px solid #cdd4dd;
  margin-top: 40px;
}

.process-list article {
  align-items: start;
  border-bottom: 1px solid #cdd4dd;
  display: grid;
  gap: 22px;
  grid-template-columns: 42px 1fr;
  padding: 21px 0;
}

.process-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.process-list h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 5px;
}

.process-list p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(18, 93, 180, 0.35), transparent 38%),
    var(--ink);
  color: white;
  display: grid;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: 1.2fr 0.8fr;
  padding: clamp(90px, 10vw, 145px) clamp(24px, 7vw, 110px);
}

.contact-main h2 {
  color: white;
  max-width: 800px;
}

.contact-main > p {
  color: #bac7d7;
  font-size: 14px;
  line-height: 1.8;
  margin: 28px 0;
  max-width: 600px;
}

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

.quote-card {
  background: white;
  color: var(--text);
  padding: clamp(28px, 4vw, 48px);
}

.quote-card-head {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  gap: 13px;
}

.quote-card-head svg {
  color: var(--gold);
}

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

.quote-card li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 12px;
  gap: 10px;
  padding: 14px 0;
}

.quote-card li svg {
  color: var(--blue);
}

.direct-contact {
  background: #f0f3f7;
  display: grid;
  gap: 1px;
  padding: 4px 18px;
}

.direct-contact a {
  border-bottom: 1px solid #d7dde5;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 13px 0;
}

.direct-contact a:last-child {
  border-bottom: 0;
}

.direct-contact span {
  color: var(--muted);
  display: block;
  font-size: 8px;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

footer {
  align-items: center;
  background: #030f22;
  color: white;
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr auto auto;
  padding: 32px clamp(24px, 7vw, 110px);
}

.footer-brand {
  gap: 13px;
}

.footer-brand img {
  background: white;
  height: 64px;
  object-fit: contain;
  width: 64px;
}

.footer-brand strong {
  display: block;
  font-size: 12px;
}

.footer-brand small {
  color: #8998aa;
  display: block;
  font-size: 11px;
  margin-top: 6px;
}

.footer-note,
footer > p {
  align-items: center;
  color: #8998aa;
  display: flex;
  font-size: 10px;
  gap: 8px;
  margin: 0;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .intro-section {
    grid-template-columns: 100px 1fr;
  }

  .intro-copy {
    grid-column: 2;
  }

  .feature-copy {
    padding: 65px;
  }
}

@media (max-width: 800px) {
  .utility-bar > div {
    display: none;
  }

  .site-header {
    height: 80px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 810px;
  }

  .hero-content {
    padding-bottom: 260px;
  }

  .hero-index {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-index > div {
    min-height: 86px;
    padding: 19px;
  }

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

  .intro-copy {
    grid-column: auto;
    padding-top: 0;
  }

  .section-heading {
    gap: 35px;
  }

  .feature-media {
    min-height: 560px;
  }

  .quality-section .feature-copy {
    grid-row: 1;
  }

  .feature-copy {
    padding: 80px 35px;
  }

  .feature-copy .section-label {
    margin-bottom: 45px;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .utility-bar {
    padding: 0 18px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    height: 58px;
    width: 58px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .hero {
    min-height: 840px;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-content {
    padding: 90px 20px 270px;
  }

  h1 {
    font-size: 47px;
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-link {
    justify-content: center;
  }

  .hero-index {
    padding: 0 12px;
  }

  .hero-index strong {
    font-size: 14px;
  }

  .intro-section,
  .services-section,
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

  .service-card h3 {
    margin-top: 55px;
  }

  .feature-media {
    min-height: 430px;
  }

  .feature-copy {
    padding: 70px 20px;
  }

  .contact-buttons {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-brand {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
