/* ══════════════════════════════════════════════════════════
   MAVI COMPASS GROUP — Shared Stylesheet
   ══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0a0a0a;
  --black2:   #111111;
  --white:    #ffffff;
  --gray:     #888888;
  --gray-lt:  #c0c0c0;
  --border:   rgba(255,255,255,.08);
  --accent:   #c8a96e;
  --font:     'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif: 'Cormorant Garant', Georgia, serif;
  --ease:     cubic-bezier(.25,.46,.45,.94);
  --nav-h:    72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10,10,10,.96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 38px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .25s;
}

.nav__links a:hover,
.nav__links a.active { color: var(--white); }

.nav__cta {
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,.3);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white) !important;
  transition: background .25s, border-color .25s !important;
}

.nav__cta:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--black) !important;
}

/* ── HERO VIDEO ──────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__video.loaded {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.3) 60%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 72px;
  max-width: 800px;
}

.hero__eyebrow {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 8px;
}

.hero__title strong { font-weight: 700; }

.hero__tagline {
  font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
  margin-bottom: 40px;
  font-style: italic;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  padding: 14px 32px;
  background: var(--accent);
  color: var(--black);
  font-weight: 700;
}

.btn--primary:hover { opacity: .85; }

.btn--outline {
  padding: 13px 30px;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll span {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── SECTION WRAPPERS ────────────────────────────────────── */
.section {
  padding: 100px 72px;
}

.section--dark { background: var(--black2); }
.section--border { border-top: 1px solid var(--border); }

.section__eyebrow {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1.1;
}

.section__title strong { font-weight: 700; }

.section__sub {
  margin-top: 16px;
  font-size: 15px;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.7;
}

/* ── PHILOSOPHY ──────────────────────────────────────────── */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy__quote {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 200;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--white);
}

.philosophy__quote em {
  font-style: italic;
  color: var(--accent);
}

.philosophy__body {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
}

.philosophy__body p + p { margin-top: 20px; }

/* ── FLEET CARDS ─────────────────────────────────────────── */
.fleet-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.boat-card {
  position: relative;
  width: 100%;
  height: clamp(460px, 58vh, 760px);
  overflow: hidden;
  cursor: pointer;
}

.boat-card + .boat-card { border-top: 1px solid rgba(255,255,255,.05); }

.boat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  transition: transform 1.1s var(--ease), filter .8s var(--ease);
  filter: brightness(.85) saturate(.9);
  will-change: transform;
}

.boat-card:hover .boat-card__img {
  transform: scale(1);
  filter: brightness(.72) saturate(1.05);
}

.boat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.1) 55%, transparent 80%),
    linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 45%);
  z-index: 1;
}

.boat-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 52px 64px;
}

.boat-card__model {
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1;
}

.boat-card__num {
  font-family: var(--font-serif);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  transition: color .4s var(--ease);
}

.boat-card:hover .boat-card__num { color: var(--accent); }

.boat-card__var {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.8vw, 48px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
}

.boat-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.boat-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  max-width: 400px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease) .1s, transform .5s var(--ease) .1s;
}

.boat-card:hover .boat-card__desc { opacity: 1; transform: translateY(0); }

.boat-card__specs {
  display: flex;
  gap: 28px;
  opacity: 0;
  transition: opacity .5s var(--ease) .15s;
}

.boat-card:hover .boat-card__specs { opacity: 1; }

.spec-item { text-align: center; }
.spec-item__val {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--accent);
  display: block;
}
.spec-item__lbl {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: block;
  margin-top: 2px;
}

.boat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: transparent;
  border-radius: 0;
  transition: all .3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.boat-card:hover .boat-card__cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.boat-card__idx {
  position: absolute;
  top: 52px;
  right: 64px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.3);
}

.boat-card__line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 3;
  transition: width .7s var(--ease);
}

.boat-card:hover .boat-card__line { width: 100%; }

/* ── MODEL GRID (models page) ────────────────────────────── */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,.04);
}

.model-card {
  position: relative;
  background: var(--black);
  padding: 48px 40px;
  overflow: hidden;
  transition: background .3s;
}

.model-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .6s var(--ease);
}

.model-card:hover { background: #131313; }
.model-card:hover::after { width: 100%; }

.model-card__badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200,169,110,.3);
  padding: 4px 10px;
  margin-bottom: 24px;
}

.model-card__name {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: 6px;
}

.model-card__variant {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: .05em;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
}

.model-card__specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.model-spec {
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.model-spec__val {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--white);
  display: block;
}

.model-spec__lbl {
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-top: 2px;
}

.model-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap .3s;
}

.model-card:hover .model-card__link { gap: 14px; }

/* ── SERVICES ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 64px;
}

.service-item {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transition: background .3s;
}

.service-item:nth-child(-n+3) { border-top: none; }

.service-item:hover { background: rgba(200,169,110,.04); }

.service-item__icon {
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 24px;
}

.service-item__title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}

.service-item__body {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

/* ── PARTNERS ────────────────────────────────────────────── */
.partners {
  border-top: 1px solid var(--border);
  padding: 64px 72px;
}

.partners__label {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 36px;
}

.partners__list {
  display: flex;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
}

.partners__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: color .3s;
}

.partners__name:hover { color: rgba(255,255,255,.7); }

/* ── CONTACT BAR ─────────────────────────────────────────── */
.contact-bar {
  padding: 80px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--border);
  background: var(--black2);
}

.contact-bar__left h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 200;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.contact-bar__left h2 strong { font-weight: 900; }

.contact-bar__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}

.contact-bar__link {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .25s;
}

.contact-bar__link:hover { color: var(--accent); }

.contact-bar__link svg { flex-shrink: 0; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .25s;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
}

.form-field select option,
.form-field select optgroup {
  background: #1a1a1a;
  color: var(--white);
}

.form-field textarea { resize: vertical; min-height: 140px; }

.form-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #060606;
  padding: 60px 72px 40px;
  border-top: 1px solid var(--border);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 260px;
}

.footer__brand-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer__brand-sub {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
}

.footer__links-col h4 {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer__links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links-col a {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  transition: color .25s;
  letter-spacing: .02em;
}

.footer__links-col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,.2);
  letter-spacing: .05em;
}

.footer__socials {
  display: flex;
  gap: 20px;
}

.footer__socials a {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: color .25s;
}

.footer__socials a:hover { color: var(--white); }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 60px;
  padding-left: 72px;
  padding-right: 72px;
  border-bottom: 1px solid var(--border);
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-item__num {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 2px;
}

.value-item__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.value-item__body {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

/* ── ARROW SVG ───────────────────────────────────────────── */
.arrow-svg { display: inline-block; vertical-align: middle; }

/* ── LANGUAGE SWITCHER ───────────────────────────────────── */
.lang-switcher {
  position: relative;
  z-index: 110;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.65);
  font-family: var(--font);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 13px;
  cursor: pointer;
  transition: border-color .25s, color .25s;
  white-space: nowrap;
}

.lang-switcher__btn:hover,
.lang-switcher.open .lang-switcher__btn {
  border-color: rgba(255,255,255,.45);
  color: var(--white);
}

.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #111111;
  border: 1px solid rgba(255,255,255,.1);
  min-width: 172px;
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
}

.lang-switcher.open .lang-switcher__dropdown { display: block; }

.lang-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s, color .2s;
  cursor: pointer;
}

.lang-opt:last-child { border-bottom: none; }
.lang-opt:hover { background: rgba(255,255,255,.05); color: var(--white); }
.lang-opt.active { color: var(--accent); cursor: default; }
.lang-opt.unavail { opacity: .4; cursor: default; pointer-events: none; }

.lang-code {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}

.lang-opt.active .lang-code { color: var(--accent); opacity: .7; }
.lang-code.soon { color: rgba(255,255,255,.2); font-size: 8px; letter-spacing: .1em; }

/* ── HAMBURGER MENU ──────────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s var(--ease);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.98);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  backdrop-filter: blur(8px);
}

.mobile-menu.open { display: flex; }

.mobile-menu__links {
  list-style: none;
  text-align: center;
  width: 100%;
  padding: 0 32px;
}

.mobile-menu__links li {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.mobile-menu__links li:first-child {
  border-top: 1px solid rgba(255,255,255,.07);
}

.mobile-menu__links a {
  display: block;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 9vw, 48px);
  font-weight: 300;
  letter-spacing: -.01em;
  color: var(--white);
  text-decoration: none;
  transition: color .25s;
}

.mobile-menu__links a:hover,
.mobile-menu__links a.active { color: var(--accent); }

.mobile-menu__footer {
  margin-top: 40px;
  text-align: center;
}

.mobile-menu__footer p {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.mobile-menu__footer a {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --nav-h: 60px; }

  .nav { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content { padding: 0 24px; }
  .hero__title { font-size: clamp(44px, 12vw, 72px); }

  .section { padding: 56px 24px; }
  .partners { padding: 40px 24px; }
  .contact-bar { padding: 52px 24px; flex-direction: column; align-items: flex-start; }
  footer { padding: 48px 24px 32px; }
  .footer__top { flex-direction: column; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .page-hero { padding: calc(var(--nav-h) + 40px) 24px 40px; }

  .philosophy { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-section-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .founder-section-grid .founder-photo { max-width: 320px; }
  .form-grid { grid-template-columns: 1fr; }

  .boat-card { height: clamp(360px, 62vw, 500px); }
  .boat-card__content { padding: 24px 24px 28px; }
  .boat-card__idx { top: 24px; right: 24px; }
  .boat-card__num { font-size: clamp(48px, 13vw, 78px); }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-item:nth-child(-n+3) { border-top: 1px solid var(--border); }
  .service-item:nth-child(-n+2) { border-top: none; }

  .btn { min-height: 44px; }
  .nav__cta { min-height: 36px; }
}

@media (max-width: 540px) {
  .section { padding: 48px 20px; }
  .model-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .boat-card { height: clamp(340px, 72vw, 460px); }
  .boat-card__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .boat-card__specs { flex-wrap: wrap; gap: 16px; }
  .hero__scroll { display: none; }
  .partners__list { gap: 28px; }
  .footer__links-col { min-width: 0; }
}
