:root {
  --navy: #092d45;
  --navy-deep: #061f31;
  --gold: #ac9363;
  --ink: #152632;
  --muted: #687681;
  --line: #dbe3e8;
  --soft: #f4f7f8;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(6, 31, 49, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219,227,232,.9);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 250px; height: auto; }
.nav { display: flex; align-items: center; gap: 28px; color: #314755; font-size: 14px; font-weight: 700; }
.nav a:hover { color: var(--navy); }
.nav-cta { padding: 11px 18px; border-radius: 999px; background: var(--navy); color: var(--white) !important; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 28px; color: var(--navy); cursor: pointer; }

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 78% 15%, rgba(172,147,99,.15), transparent 26%),
    linear-gradient(135deg, #f7fafb 0%, #ffffff 46%, #eef3f5 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(9,45,69,.08);
  border-radius: 50%;
  right: -260px;
  top: -200px;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; padding: 90px 0; }
.eyebrow, .section-kicker { display: inline-block; color: var(--gold); letter-spacing: .16em; text-transform: uppercase; font-size: 12px; font-weight: 800; }
h1, h2, h3 { margin-top: 0; color: var(--navy-deep); line-height: 1.1; }
h1 { font-size: clamp(48px, 6vw, 78px); letter-spacing: -.045em; margin: 18px 0 24px; max-width: 780px; }
h2 { font-size: clamp(34px, 4vw, 52px); letter-spacing: -.035em; margin: 12px 0 20px; }
h3 { font-size: 22px; margin-bottom: 12px; }
.hero-copy > p { max-width: 650px; font-size: 19px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; margin: 32px 0 30px; flex-wrap: wrap; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 23px; border-radius: 7px; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 10px 25px rgba(9,45,69,.18); }
.btn-ghost { border-color: var(--line); background: var(--white); color: var(--navy); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 28px; color: #657681; font-size: 13px; }
.hero-meta strong { color: var(--navy); }

.hero-art { position: relative; min-height: 470px; display: grid; place-items: center; }
.ship-card {
  width: min(390px, 88%);
  aspect-ratio: 4/5;
  border-radius: 30px;
  background: linear-gradient(155deg, var(--navy-deep), var(--navy));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.ship-card::after { content: ""; position: absolute; inset: auto -70px -95px; height: 250px; border-radius: 50%; background: rgba(255,255,255,.07); }
.ship-card img { width: 118px; margin-bottom: 28px; filter: brightness(0) invert(1); }
.ship-card span { font-size: 66px; letter-spacing: .08em; font-weight: 900; line-height: 1; }
.ship-card small { margin-top: 12px; letter-spacing: .24em; font-weight: 700; opacity: .8; }
.wave { position: absolute; border-radius: 50%; border: 1px solid rgba(172,147,99,.45); z-index: 1; }
.wave-one { width: 470px; height: 140px; transform: rotate(-14deg); }
.wave-two { width: 560px; height: 180px; transform: rotate(10deg); }

.section { padding: 105px 0; }
.section-muted { background: var(--soft); }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.lead-copy > p { color: var(--muted); font-size: 18px; margin-top: 10px; }
.info-strip { margin-top: 35px; border-top: 1px solid var(--line); }
.info-strip > div { display: grid; grid-template-columns: 170px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-strip span { color: var(--muted); font-size: 13px; }
.info-strip strong { color: var(--navy); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 42px; }
.section-heading > p { max-width: 450px; color: var(--muted); margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { background: var(--white); padding: 34px; border: 1px solid #e1e8ec; border-radius: 15px; min-height: 280px; transition: .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-number { color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .12em; margin-bottom: 45px; }
.service-card p { color: var(--muted); }

.contact-section { background: var(--navy-deep); color: var(--white); }
.contact-section h2 { color: var(--white); }
.contact-section p { color: #b8c7d0; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.contact-details { margin-top: 32px; display: grid; gap: 14px; }
.contact-details div { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); display: grid; grid-template-columns: 95px 1fr; gap: 18px; }
.contact-details span { color: #97aab6; font-size: 13px; }
.contact-form { background: var(--white); color: var(--ink); padding: 30px; border-radius: 18px; box-shadow: 0 25px 70px rgba(0,0,0,.22); }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; font-size: 13px; font-weight: 800; color: var(--navy); }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); background: #fbfcfd; border-radius: 8px; padding: 13px 14px; outline: 0; color: var(--ink); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(172,147,99,.12); }
.contact-form .btn { width: 100%; border: 0; }
.form-note { font-size: 12px; margin: 12px 0 0; color: #7c8991 !important; }

.site-footer { border-top: 1px solid #eef2f4; background: #fff; }
.footer-wrap { min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 28px; font-size: 13px; color: #71808a; }
.footer-wrap img { width: 190px; }
.footer-wrap a { color: var(--navy); font-weight: 800; }

@media (max-width: 1050px) and (min-width: 701px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav { position: absolute; top: 84px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 12px; overflow: hidden; }
  .nav.open { display: flex; }
  .nav a { padding: 15px 18px; border-bottom: 1px solid #eef2f4; }
  .nav-cta { border-radius: 0; }
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 70px 0; }
  .hero-art { min-height: 400px; }
  .service-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand img { width: 210px; }
  .nav-wrap { min-height: 76px; }
  .nav { top: 76px; }
  .hero-grid { padding: 55px 0; }
  h1 { font-size: 44px; }
  .hero-copy > p { font-size: 17px; }
  .hero-art { min-height: 350px; }
  .ship-card { width: 84%; border-radius: 23px; }
  .ship-card span { font-size: 50px; }
  .ship-card small { font-size: 9px; }
  .section { padding: 78px 0; }
  .info-strip > div, .contact-details div { grid-template-columns: 1fr; gap: 4px; }
  .contact-form { padding: 22px; }
  .footer-wrap { padding: 28px 0; align-items: flex-start; flex-direction: column; }
}

/* Contact form delivery status */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 1.35em;
  margin: 12px 0 0;
  font-weight: 700;
}

.form-status.success { color: #1f6b45; }
.form-status.error { color: #a62b2b; }
