:root {
  --blue: #0077f9;
  --blue-soft: #eaf4ff;
  --blue-dark: #0057b8;
  --ink: #253135;
  --muted: #6f7a80;
  --line: #e4e4e4;
  --soft: #f6f6f6;
  --paper: #fbfcfd;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(37, 49, 53, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.78;
  background:
    linear-gradient(180deg, rgba(0, 119, 249, 0.03), rgba(255, 255, 255, 0) 420px),
    var(--white);
}

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

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

strong {
  font-weight: 600;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 50px rgba(37, 49, 53, 0.08);
  backdrop-filter: blur(14px);
}

.topbar {
  color: rgba(255, 255, 255, 0.9);
  background: #172327;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.topbar__inner,
.contact-strip,
.social-links,
.nav__inner,
.nav-menu,
.hero__actions {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 36px;
  justify-content: space-between;
  gap: 20px;
}

.contact-strip {
  flex-wrap: wrap;
  gap: 8px 20px;
  color: inherit;
}

.contact-strip a,
.footer a,
.contact-list a {
  transition: color 0.18s ease;
}

.contact-strip a:hover,
.footer a:hover,
.contact-list a:hover {
  color: var(--blue);
}

.social-links {
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 500;
}

.nav__inner {
  min-height: 78px;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 250px;
  height: auto;
}

.nav-menu {
  justify-content: flex-end;
  gap: 22px;
  min-width: 0;
  flex: 1;
}

.nav-menu > a,
.nav-dropdown > a {
  color: #455157;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 29px 0 25px;
  white-space: nowrap;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  border-top: 0;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-dropdown:hover > a {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: grid;
  min-width: 240px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(37, 49, 53, 0.12);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-menu a {
  padding: 10px 12px;
  color: var(--ink);
  font-size: 14px;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  color: var(--blue);
  background: rgba(0, 119, 249, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(720px, 88vh, 900px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.hero-slider,
.hero-slide,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  object-fit: cover;
  opacity: 0;
  filter: brightness(1.18) saturate(1.08);
  transform: scale(1.04);
  transition: opacity 1s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 19, 25, 0.78), rgba(8, 19, 25, 0.42) 58%, rgba(8, 19, 25, 0.12)),
    linear-gradient(0deg, rgba(8, 19, 25, 0.5), rgba(8, 19, 25, 0.08) 54%);
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 380px);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  padding: 126px 0 88px;
  color: var(--white);
}

.hero__copy {
  max-width: 810px;
  transform: translateY(-18px);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: var(--white);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.hero-service-label strong {
  padding: 7px 10px;
  color: var(--white);
  font-weight: 500;
  border: 1px solid rgba(140, 196, 255, 0.36);
  border-radius: 999px;
  background: rgba(0, 119, 249, 0.46);
  text-shadow: none;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(48px, 6.6vw, 92px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 400;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
}

.hero-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(12, 24, 30, 0.68);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.hero-panel__label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 13px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(140, 196, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 119, 249, 0.28);
  box-shadow: 0 12px 34px rgba(0, 119, 249, 0.12);
}

.hero-panel h2 {
  font-family: Manrope, Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
}

.hero-panel__divider {
  width: 100%;
  height: 1px;
  margin: 24px 0 8px;
  background: linear-gradient(90deg, rgba(140, 196, 255, 0.6), rgba(255, 255, 255, 0.08));
}

.hero-panel__items {
  display: grid;
  gap: 0;
}

.hero-panel__items div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel__items div:last-child {
  border-bottom: 0;
}

.hero-panel__icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  order: 1;
  place-items: center;
  color: rgba(190, 223, 255, 0.96);
  border: 1px solid rgba(140, 196, 255, 0.34);
  border-radius: 50%;
  background: rgba(0, 119, 249, 0.16);
}

.hero-panel__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-panel__items p {
  order: 2;
  align-self: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  transform: translateY(-14px);
}

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.hero-dots span {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.hero-dots span.is-active {
  background: var(--blue);
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 119, 249, 0.16);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--blue);
}

.button--primary:hover {
  background: var(--blue-dark);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(72px, 9vw, 124px) 0;
}

.services,
.yacht-standard,
.equipment,
.location-band,
.partners,
.about-section,
.skills-section,
.contact-section {
  border-top: 1px solid rgba(37, 49, 53, 0.1);
}

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

.intro__grid,
.location-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

h2,
h3,
p {
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.intro__badge {
  display: grid;
  justify-items: end;
  gap: 10px;
  max-width: 320px;
}

.intro__badge img {
  max-height: 48px;
  object-fit: contain;
}

.intro__badge p {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: right;
}

.highlights {
  padding: clamp(70px, 8vw, 112px) 0;
  border-top: 1px solid rgba(37, 49, 53, 0.08);
  border-bottom: 1px solid rgba(37, 49, 53, 0.08);
  background:
    linear-gradient(180deg, #ffffff, var(--paper));
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: clamp(28px, 4vw, 58px) clamp(24px, 4vw, 52px);
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  scrollbar-width: none;
}

.highlights__grid::-webkit-scrollbar {
  display: none;
}

.highlight-item {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-height: auto;
  padding: 0;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 0.2s ease;
}

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

.highlight-icon {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(0, 119, 249, 0.18);
  border-radius: 50%;
  background: rgba(0, 119, 249, 0.045);
}

.highlight-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-item strong {
  max-width: 150px;
  color: var(--ink);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 400;
  line-height: 1.28;
}

.section-heading {
  max-width: 1040px;
  margin-bottom: 46px;
}

.section-heading h2 {
  max-width: 100%;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card,
.equipment-card,
.mission-card,
.contact-card,
.message-form,
.footer-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(28px, 4vw, 46px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.service-card:first-child {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 119, 249, 0.95), rgba(0, 87, 184, 0.92)),
    url("../../images/homevp.jpg") center / cover;
}

.service-card .icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 28px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(0, 119, 249, 0.16);
  border-radius: 50%;
  overflow: hidden;
}

.service-card:first-child .icon {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.service-card .icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:first-child .icon svg {
  stroke: var(--white);
}

.service-card p,
.equipment-card p,
.about-copy p,
.mission-card p,
.contact-card p,
.footer p {
  margin: 0 0 14px;
  color: var(--muted);
}

.service-card p {
  text-align: justify;
}

.service-card:first-child p {
  color: rgba(255, 255, 255, 0.86);
}

.equipment {
  background:
    linear-gradient(180deg, #f7fafc, #ffffff);
}

.equipment-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 260px;
  gap: 12px;
}

.equipment-card {
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 0;
  border: 0;
  box-shadow: none;
}

.equipment-card:first-child {
  grid-row: span 2;
}

.equipment-card:last-child {
  grid-column: span 2;
}

.equipment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.equipment-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(22px, 3vw, 34px);
  color: var(--white);
  background: linear-gradient(0deg, rgba(8, 19, 25, 0.9), rgba(8, 19, 25, 0));
}

.equipment-card h3 {
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 300;
  line-height: 1.14;
}

.equipment-card p {
  font-size: 14px;
}

.equipment-card p {
  color: rgba(255, 255, 255, 0.82);
}

.equipment-card:hover img {
  transform: scale(1.05);
}

.yacht-standard {
  background:
    linear-gradient(180deg, #ffffff, var(--paper));
}

.yacht-standard__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.yacht-standard__media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius);
}

.yacht-standard__media::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.yacht-standard__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.yacht-standard__copy {
  max-width: 640px;
}

.yacht-standard__copy p:not(.section-label) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  padding-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.location-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 35, 39, 0.96), rgba(23, 35, 39, 0.62)),
    url("../../images/home3.jpg") center / cover;
}

.location-band .section-label {
  color: #8cc4ff;
}

.location-band h2 {
  max-width: 780px;
  color: var(--white);
}

.location-band__text {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 300;
}

.location-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-width: 260px;
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.location-card:hover {
  transform: translateY(-2px);
  border-color: rgba(140, 196, 255, 0.42);
  background: rgba(255, 255, 255, 0.13);
}

.location-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #8cc4ff;
  border: 1px solid rgba(140, 196, 255, 0.28);
  border-radius: 50%;
}

.location-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-card strong,
.location-card small {
  display: block;
}

.location-card strong {
  font-size: 18px;
  font-weight: 400;
}

.location-card small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 1px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.partner-list img {
  width: 100%;
  height: 126px;
  padding: 24px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.page-hero {
  padding: 112px 0 96px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(37, 49, 53, 0.92), rgba(37, 49, 53, 0.55)),
    url("../../images/home2.jpg") center / cover;
}

.page-hero .eyebrow {
  color: #8cc4ff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.about-logo {
  width: min(360px, 100%);
  margin: 24px 0;
}

.mission-card {
  padding: clamp(30px, 4vw, 48px);
  background: var(--paper);
}

.mission-card h2,
.contact-card h2,
.message-form h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 300;
  line-height: 1.12;
}

.skills-section {
  background: var(--paper);
}

.skills-list {
  display: grid;
  gap: 16px;
}

.skill {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 20px 0 24px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.skill i {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: var(--blue);
  border-radius: 999px;
}

.partners--light {
  background: var(--white);
}

.partners {
  background:
    linear-gradient(180deg, #ffffff, var(--paper));
}

.map-section iframe {
  width: 100%;
  height: min(54vh, 480px);
  border: 0;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 22px;
  align-items: start;
}

.contact-card,
.message-form {
  padding: clamp(26px, 3vw, 38px);
}

.contact-list,
.footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list li,
.footer-list li {
  margin-bottom: 12px;
}

.message-form,
.footer-form {
  display: grid;
  gap: 14px;
}

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

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 0;
  color: var(--ink);
  font: inherit;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

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

input:focus,
textarea:focus {
  outline: 0;
  border-color: var(--blue);
}

.footer {
  color: rgba(255, 255, 255, 0.86);
  background: #172327;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 62px);
  padding: 70px 0;
}

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

.footer__grid > div:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.footer__grid > div:first-child p:not(:first-of-type) {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  gap: 12px;
  margin: 3px 0 0;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.92);
}

.footer__grid > div:first-child strong {
  color: #8cc4ff;
  font-weight: 600;
}

.footer-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-form input,
.footer-form textarea {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.footer-line {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-line p {
  margin: 0;
  font-size: 14px;
}

.footer--compact .footer-line {
  border-top: 0;
}

@media (max-width: 1120px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav__inner {
    min-height: 76px;
  }

  .nav-menu {
    position: absolute;
    right: 20px;
    left: 20px;
    top: calc(100% + 8px);
    display: none;
    max-height: calc(100vh - 120px);
    overflow: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu > a,
  .nav-dropdown > a {
    display: block;
    padding: 13px 12px;
    border-top: 0;
    border-radius: 6px;
  }

  .nav-menu a.active,
  .nav-menu a:hover,
  .nav-dropdown:hover > a {
    background: rgba(0, 119, 249, 0.08);
  }

  .dropdown-menu {
    position: static;
    display: grid;
    margin: 0 0 8px;
    padding: 0 0 0 12px;
    min-width: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

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

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

  .service-layout,
  .yacht-standard__grid,
  .about-grid,
  .contact-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading {
    max-width: 900px;
  }

  .hero-panel {
    max-width: 560px;
  }

  .equipment-card:first-child,
  .equipment-card:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .equipment-grid {
    grid-auto-rows: 340px;
  }

  .yacht-standard__media {
    min-height: 460px;
  }
}

@media (max-width: 700px) {
  .container {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand img {
    width: 210px;
  }

  .hero {
    min-height: 790px;
  }

  .hero__content {
    padding: 74px 0 70px;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(13, 25, 31, 0.28), rgba(13, 25, 31, 0.82));
  }

  .hero .eyebrow {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: center;
  }

  .hero__copy {
    text-align: center;
    transform: none;
  }

  .hero h1,
  .hero p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .intro__grid,
  .location-band__grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .intro__badge {
    justify-items: start;
  }

  .intro__badge p {
    text-align: left;
  }

  .equipment-grid,
  .partner-list {
    grid-template-columns: 1fr;
  }

  .highlights__grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .highlight-item {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .highlight-icon {
    width: 64px;
    height: 64px;
  }

  .highlight-item strong {
    max-width: 220px;
  }

  .topbar {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading,
  .section-label,
  .section-heading h2,
  .location-band__grid,
  .yacht-standard__copy,
  .partners .section-heading {
    text-align: center;
  }

  .section-heading {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .location-band__text,
  .yacht-standard__copy p:not(.section-label) {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .location-card {
    width: 100%;
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .page-hero {
    padding: 62px 0;
  }

  .hero-panel {
    width: 100%;
    max-width: none;
    padding: 20px;
    text-align: center;
  }

  .hero-panel h2 {
    font-size: 24px;
  }

  .hero-panel__label {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-panel__items div {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
  }

  .hero-panel__items span,
  .hero-panel__items p {
    text-align: center;
  }

  .hero-panel__items p {
    transform: none;
  }

  .hero-dots {
    right: 0;
    left: 0;
    justify-content: center;
  }

  .footer,
  .footer__grid,
  .footer-list,
  .footer-form {
    text-align: center;
  }

  .footer-list {
    display: grid;
    justify-items: center;
  }

  .footer-form .button {
    justify-self: center;
  }

  .equipment-card {
    height: 320px;
  }

  .yacht-standard__media {
    min-height: 360px;
  }
}
