:root {
  color-scheme: light;
  --ink: #111413;
  --ink-2: #242b28;
  --paper: #f6f3ec;
  --paper-2: #ebe6db;
  --white: #ffffff;
  --gold: #c89b4f;
  --gold-2: #f1d58d;
  --teal: #0d7771;
  --green: #17362f;
  --line: rgba(17, 20, 19, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(17, 20, 19, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 920px;
}

h2 {
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.topbar {
  align-items: center;
  background: rgba(17, 20, 19, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  gap: 26px;
  justify-content: space-between;
  left: 0;
  min-height: 78px;
  padding: 14px 42px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.topbar.is-scrolled {
  background: rgba(17, 20, 19, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
}

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

.brand__mark {
  align-items: center;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 58px;
}

.brand__ship {
  filter: drop-shadow(0 8px 18px rgba(200, 155, 79, 0.28));
  height: 42px;
  width: 58px;
}

.brand__ship-glow {
  fill: rgba(255, 232, 166, 0.18);
}

.brand__ship-hull,
.brand__ship-deck,
.brand__ship-cabin,
.brand__ship-funnel {
  fill: url("#brandShipGold");
}

.brand__ship-line,
.brand__ship-window,
.brand__ship-wave {
  fill: none;
  stroke: #fff1bb;
  stroke-linecap: round;
  stroke-width: 3;
}

.brand__ship-window {
  stroke-width: 4;
}

.brand__ship-wave {
  opacity: 0.9;
  stroke-width: 2.8;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  margin-top: 4px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.topbar__actions,
.hero__actions,
.contact__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #191510;
}

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

.button--glass,
.button--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.hero {
  align-items: end;
  display: grid;
  min-height: 96svh;
  overflow: hidden;
  padding: 132px 42px 46px;
  position: relative;
}

.hero__image,
.hero__shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 12, 11, 0.88) 0%, rgba(8, 12, 11, 0.62) 43%, rgba(8, 12, 11, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 12, 11, 0.82) 0%, rgba(8, 12, 11, 0.05) 48%, rgba(8, 12, 11, 0.42) 100%);
}

.hero__inner {
  color: var(--white);
  max-width: 1180px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #916827;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 690px;
}

.hero__facts {
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 92px;
  max-width: 860px;
}

.hero__facts div {
  background: rgba(13, 16, 15, 0.46);
  min-height: 112px;
  padding: 24px;
}

.hero__facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__facts strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero__facts span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.section {
  padding: 94px 42px;
}

.section__inner {
  margin: 0 auto;
  max-width: 1180px;
}

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

.intro__grid,
.formats__grid,
.trust__grid,
.contact__grid {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: 1fr 1fr;
}

.intro__text {
  border-left: 3px solid var(--gold);
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.75;
  padding-left: 28px;
}

.intro__text p {
  margin-bottom: 0;
}

.section-head {
  margin-bottom: 36px;
  max-width: 780px;
}

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

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

.direction {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(17, 20, 19, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 28px;
}

.direction__num {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  margin-bottom: 22px;
}

.direction p {
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 24px;
}

.direction a {
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  margin-top: auto;
  min-height: 44px;
  padding: 0 16px;
  width: fit-content;
}

.formats {
  background:
    linear-gradient(135deg, rgba(17, 20, 19, 0.96), rgba(23, 54, 47, 0.96));
  color: var(--white);
}

.formats__visual {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.formats__visual img,
.trust__visual img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.formats__content h2 {
  margin-bottom: 28px;
}

.format-list {
  display: grid;
  gap: 14px;
}

.format-list p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0;
  padding-bottom: 14px;
}

.format-list strong {
  color: var(--white);
}

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

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

.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 260px;
  padding: 28px;
}

.step span {
  color: var(--gold);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin-bottom: 22px;
}

.step p {
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 0;
}

.trust {
  background: var(--paper-2);
}

.trust__content p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 26px;
}

.trust__visual {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact {
  background: linear-gradient(135deg, #101413 0%, #17362f 100%);
  color: var(--white);
}

.contact__copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 26px;
  max-width: 680px;
}

.contact__card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  padding: 34px;
}

.contact__card span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact__card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}

.contact__card a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer {
  align-items: center;
  background: #0b0d0c;
  color: rgba(255, 255, 255, 0.74);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 30px 42px 96px;
}

.footer strong {
  color: var(--white);
}

.footer p {
  margin-bottom: 0;
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible,
.hero .reveal,
.js .hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .topbar {
    padding: 14px 22px;
  }

  .nav {
    display: none;
  }

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

@media (max-width: 760px) {
  .topbar {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand__mark {
    height: 38px;
    width: 50px;
  }

  .brand__ship {
    height: 36px;
    width: 50px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small,
  .topbar__actions {
    display: none;
  }

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

  .hero__image {
    object-position: center top;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(8, 12, 11, 0.94) 0%, rgba(8, 12, 11, 0.58) 56%, rgba(8, 12, 11, 0.22) 100%),
      linear-gradient(90deg, rgba(8, 12, 11, 0.76), rgba(8, 12, 11, 0.18));
  }

  .hero__inner {
    max-width: 340px;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero__actions,
  .contact__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .hero__facts div {
    min-height: auto;
    padding: 18px;
  }

  .hero__facts div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section {
    padding: 68px 18px;
  }

  .intro__grid,
  .formats__grid,
  .trust__grid,
  .contact__grid,
  .directions__grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .intro__grid,
  .formats__grid,
  .trust__grid,
  .contact__grid {
    gap: 34px;
  }

  .intro__text {
    padding-left: 18px;
  }

  .direction,
  .step,
  .contact__card {
    padding: 24px;
  }

  .footer {
    align-items: start;
    display: block;
    padding: 28px 18px 98px;
  }

  .footer > p {
    margin-top: 14px;
  }

  .mobile-cta {
    background: rgba(17, 20, 19, 0.93);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    bottom: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 10px 12px 12px;
    position: fixed;
    right: 0;
    z-index: 25;
  }

  .mobile-cta a {
    align-items: center;
    background: var(--white);
    border-radius: 8px;
    color: var(--ink);
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    min-height: 46px;
  }

  .mobile-cta a:first-child {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 1.9rem;
  }
}

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