:root {
  --red: #d10b0b;
  --red-dark: #ab0909;
  --ink: #181818;
  --steel: #5f5f61;
  --silver: #a4a4a5;
  --blue: #4b80a7;
  --ice: #eef5f8;
  --soft: #f5f5f5;
  --line: #dce2e6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 19, 24, 0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 76px;
  padding: 0.6rem 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  width: 180px;
  height: 54px;
  padding: 0;
  overflow: hidden;
}

.navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-toggler {
  border: 0;
  padding: 0.45rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(207, 10, 18, 0.2);
}

.nav-link {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem !important;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
}

.btn {
  border-radius: 8px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
}

.btn-primary {
  --bs-btn-bg: var(--red);
  --bs-btn-border-color: var(--red);
  --bs-btn-hover-bg: var(--red-dark);
  --bs-btn-hover-border-color: var(--red-dark);
  --bs-btn-active-bg: var(--red-dark);
  --bs-btn-active-border-color: var(--red-dark);
  box-shadow: 0 14px 32px rgba(207, 10, 18, 0.24);
}

.btn-light {
  --bs-btn-bg: var(--white);
  --bs-btn-border-color: var(--white);
  --bs-btn-color: var(--ink);
  --bs-btn-hover-bg: var(--ice);
  --bs-btn-hover-border-color: var(--ice);
}

.btn-outline-dark {
  --bs-btn-color: var(--ink);
  --bs-btn-border-color: rgba(17, 19, 24, 0.24);
  --bs-btn-hover-bg: var(--ink);
  --bs-btn-hover-border-color: var(--ink);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #111318;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8, 10, 13, 0.88) 0%, rgba(8, 10, 13, 0.68) 42%, rgba(8, 10, 13, 0.22) 100%),
    url("../assets/img/hero-yachts.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.06), rgba(24, 24, 24, 0.86)),
    radial-gradient(circle at 83% 22%, rgba(75, 128, 167, 0.18), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 42px;
}

.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-section .section-kicker {
  color: #ff7378;
}

.hero-section h1 {
  max-width: 800px;
  margin: 0;
  font-size: 4.35rem;
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-contact-panel {
  display: grid;
  gap: 0.45rem;
  justify-items: start;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-contact-panel span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.hero-contact-panel a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.hero-contact-panel a:hover {
  color: #ffb4b7;
}

.hero-service-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.service-choice {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 118px;
  padding: 1.1rem;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-choice:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.16);
}

.service-choice i {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-size: 1.65rem;
}

.choice-icon-set {
  flex: 0 0 104px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0.25rem;
  min-height: 58px;
  padding: 0.38rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
}

.choice-icon-set img {
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.choice-nautika-icon {
  flex: 0 0 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.4rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  overflow: hidden;
}

.choice-nautika-icon img {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.service-choice strong,
.service-choice-copy {
  display: block;
}

.service-choice strong {
  margin-bottom: 0.2rem;
  font-size: 1.02rem;
}

.service-choice-copy {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.section-pad {
  padding: 96px 0;
}

.about-section {
  background: var(--white);
}

h2 {
  margin: 0 0 1.25rem;
  font-size: 2.55rem;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0;
}

p {
  color: #46515c;
  line-height: 1.7;
}

.brand-showcase,
.nautical-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.brand-showcase img,
.nautical-logo-wrap img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.services-section {
  background: var(--soft);
}

.service-card,
.process-step {
  height: 100%;
  min-height: 254px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(17, 19, 24, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8%;
  width: 72%;
  height: 5px;
  background: linear-gradient(90deg, var(--red), rgba(164, 164, 165, 0.92), transparent);
  transform: skewX(-28deg);
}

.service-card:hover,
.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(209, 11, 11, 0.28);
  box-shadow: var(--shadow);
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  box-shadow: inset 0 0 0 1px rgba(24, 24, 24, 0.08), 0 12px 26px rgba(24, 24, 24, 0.1);
}

.service-card-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.service-card-icon-combo {
  gap: 0.1rem;
  width: 92px;
}

.service-card-icon-combo img {
  width: 40px;
  height: 48px;
}

.service-card h3,
.process-step h3 {
  margin-bottom: 0.75rem;
}

.service-card p,
.process-step p {
  margin-bottom: 0;
}

.visual-band {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(17, 19, 24, 0.82), rgba(17, 19, 24, 0.54)),
    url("../assets/img/hero-yachts.webp");
  background-size: cover;
  background-position: center 58%;
  background-attachment: fixed;
}

.visual-band-content {
  max-width: 720px;
}

.visual-band h2 {
  color: var(--white);
}

.visual-band p {
  color: #ff7378;
}

.nautical-section {
  background: var(--white);
}

.nautical-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.nautical-points div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 54px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  font-weight: 800;
}

.nautical-points i {
  color: var(--blue);
  font-size: 1.35rem;
}

.process-section {
  background:
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 950;
}

.contact-section {
  position: relative;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(8, 10, 13, 0.96), rgba(8, 10, 13, 0.82)),
    url("../assets/img/hero-yachts.webp");
  background-size: cover;
  background-position: center bottom;
}

.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 56px;
  padding: 0.9rem 1rem;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-list a:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.11);
}

.contact-list i {
  color: #ff7378;
  font-size: 1.25rem;
}

.contact-form {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.contact-form .form-label {
  color: var(--ink);
  font-weight: 800;
}

.contact-form .form-control,
.contact-form .form-select {
  min-height: 48px;
  border-radius: 8px;
  border-color: #cfd6dc;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 0.15rem rgba(207, 10, 18, 0.16);
}

.contact-form textarea.form-control {
  min-height: 142px;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.75);
  background: #08090b;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-grid div {
  display: grid;
  gap: 0.35rem;
}

.footer-grid strong,
.footer-grid a {
  color: var(--white);
  text-decoration: none;
}

.footer-grid a:hover {
  color: #ffb4b7;
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 76px;
  }

  .navbar {
    min-height: 68px;
  }

  .navbar-brand {
    width: 148px;
    height: 46px;
  }

  .navbar-collapse {
    padding: 1rem 0;
  }

  .header-actions {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-backdrop {
    background-position: 58% center;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 32px;
  }

  .hero-section h1 {
    font-size: 3.15rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-service-strip {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .section-pad {
    padding: 76px 0;
  }

  h2 {
    font-size: 2.15rem;
  }

  .visual-band {
    background-attachment: scroll;
  }
}

@media (max-width: 575.98px) {
  .container {
    width: min(100% - 28px, 540px);
  }

  .navbar-brand {
    width: 132px;
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero-section h1 {
    font-size: 2.45rem;
    line-height: 1.04;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cta .btn,
  .contact-form .btn {
    width: 100%;
  }

  .hero-contact-panel {
    padding: 1rem;
  }

  .service-choice {
    align-items: flex-start;
    min-height: 132px;
  }

  .service-choice i {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }

  .choice-icon-set {
    flex-basis: 82px;
    min-height: 52px;
  }

  .choice-icon-set img {
    height: 36px;
  }

  .choice-nautika-icon {
    flex-basis: 82px;
    min-height: 52px;
  }

  .choice-nautika-icon img {
    height: 38px;
  }

  .brand-showcase,
  .nautical-logo-wrap {
    min-height: 260px;
    padding: 1rem;
  }

  .visual-band {
    min-height: 390px;
  }

  .contact-form {
    padding: 1rem;
  }

  .footer-grid {
    display: grid;
  }
}
