:root {
  --ink: #102331;
  --muted: #5e7280;
  --paper: #fbf7ee;
  --paper-strong: #fffdf7;
  --navy: #051826;
  --navy-soft: #0e2d41;
  --sea: #0c6b78;
  --sea-bright: #17a7a8;
  --brass: #c59b55;
  --sand: #e7d4ae;
  --white: #ffffff;
  --danger: #b83b48;
  --success: #207f5f;
  --shadow: 0 24px 80px rgba(5, 24, 38, .18);
  --radius-xl: 34px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(197, 155, 85, .24), transparent 26rem),
    radial-gradient(circle at 88% 0%, rgba(23, 167, 168, .18), transparent 28rem),
    linear-gradient(180deg, #fff9ed 0%, #f6efe0 46%, #eaf2f2 100%);
  font-family: "Open Sans", "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background-image:
    linear-gradient(rgba(5, 24, 38, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 24, 38, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto -12vw -22vw auto;
  z-index: -1;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: rgba(12, 107, 120, .12);
  filter: blur(2px);
}

body.is-locked {
  overflow: hidden;
}

body[dir="rtl"] {
  text-align: right;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(20px);
  background: rgba(251, 247, 238, .78);
  border-bottom: 1px solid rgba(16, 35, 49, .08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: .9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(5, 24, 38, .16));
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand small {
  color: var(--sea);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  padding: .7rem .95rem;
  font: inherit;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem;
}

.nav-links a,
.lang-switch a {
  text-decoration: none;
  border-radius: 999px;
  padding: .62rem .9rem;
  color: rgba(16, 35, 49, .82);
  font-weight: 700;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a:focus,
.lang-switch a:hover,
.lang-switch a:focus {
  color: var(--navy);
  background: rgba(197, 155, 85, .18);
  transform: translateY(-1px);
}

.lang-switch {
  display: flex;
  gap: .25rem;
  padding: .25rem;
  border: 1px solid rgba(16, 35, 49, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
}

.lang-switch .active {
  color: var(--white);
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 24, 38, .88), rgba(5, 24, 38, .42), rgba(5, 24, 38, .2)),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 7vw 7vh auto;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .14), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(2rem, 5vw, 5rem);
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  margin: 0 0 1rem;
  padding: .45rem .8rem;
  color: #ffe5ad;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title h2,
.card h3,
.legal h1,
.legal h2 {
  margin: 0;
  font-family: Gabriela, Georgia, serif;
  line-height: 1.05;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.1rem, 8vw, 6.6rem);
  letter-spacing: -.055em;
  max-width: 880px;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(5, 24, 38, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(5, 24, 38, .28);
}

.button.alt {
  color: var(--navy);
  background: rgba(255, 255, 255, .88);
  border-color: rgba(255, 255, 255, .38);
}

.button.light {
  color: var(--navy);
  background: var(--paper-strong);
}

.hero-panel,
.glass-card {
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-panel {
  align-self: end;
  color: var(--white);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  margin-top: 1.4rem;
}

.metric {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .13);
}

.metric strong {
  display: block;
  color: #ffe5ad;
  font-size: 1.65rem;
  line-height: 1;
}

.section {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section.wide {
  width: min(100% - 24px, 1380px);
}

.section-title {
  display: grid;
  gap: .8rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  letter-spacing: -.04em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 49, .09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 16px 50px rgba(16, 35, 49, .08);
}

.card-body {
  padding: 1.25rem;
}

.card h3 {
  color: var(--navy);
  font-size: 1.45rem;
}

.card p {
  color: var(--muted);
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .5s ease;
}

.media-card:hover img {
  transform: scale(1.045);
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .75rem;
  padding: .28rem .62rem;
  color: var(--sea);
  background: rgba(23, 167, 168, .12);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 24, 38, .95), rgba(12, 107, 120, .82)),
    url("/images/1920,1232x599+47+0/21568121/BLOG-2099x600-APD-Shipping-delectus-iStock-by-Getty-Images-iStock-171572754-KdUKDFpm5J0o_5u_l86lEQ.jpg") center / cover;
  box-shadow: var(--shadow);
}

.feature-strip > div {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.feature-list {
  display: grid;
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}

.feature-list li::before {
  content: "";
  flex: 0 0 .65rem;
  width: .65rem;
  height: .65rem;
  margin-top: .55rem;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 5px rgba(197, 155, 85, .18);
}

.route-map {
  min-height: 360px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 25% 34%, rgba(255, 255, 255, .95) 0 4px, transparent 5px),
    radial-gradient(circle at 64% 54%, rgba(255, 255, 255, .95) 0 4px, transparent 5px),
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, .95) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .18);
}

.page-hero {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0 2rem;
}

.page-hero h1 {
  max-width: 850px;
  color: var(--navy);
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  letter-spacing: -.05em;
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(320px, .42fr);
  gap: 1rem;
  align-items: start;
}

.request-card,
.summary-card,
.legal {
  border: 1px solid rgba(16, 35, 49, .09);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
}

.request-card,
.summary-card {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: .35rem;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 35, 49, .14);
  border-radius: 15px;
  padding: .8rem .9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  font: inherit;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 5px rgba(23, 167, 168, .13);
  background: var(--white);
}

.form-tools {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.summary-output {
  min-height: 260px;
  white-space: pre-wrap;
  word-break: break-word;
  border-radius: 20px;
  padding: 1rem;
  color: #193142;
  background: #f7f0df;
  border: 1px dashed rgba(16, 35, 49, .18);
}

.notice {
  color: var(--muted);
  font-size: .92rem;
}

.legal {
  padding: clamp(1.25rem, 4vw, 3rem);
}

.legal h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.site-footer {
  margin-top: 4rem;
  color: rgba(255, 255, 255, .78);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, .55fr));
  gap: 1.5rem;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 3rem 0;
}

.site-footer a {
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--sand);
}

.footer-title {
  color: var(--white);
  font-weight: 900;
  margin-bottom: .75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 1rem 0 1.25rem;
  color: rgba(255, 255, 255, .58);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: grid;
    justify-content: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(251, 247, 238, .97);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .lang-switch {
    justify-content: center;
  }

  .hero-grid,
  .request-layout,
  .feature-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    align-self: start;
  }
}

@media (max-width: 720px) {
  .grid.three,
  .grid.two,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .brand span {
    display: none;
  }

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

  .hero h1 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }
}
