/* ============================================================
   SHINE YACHTING — Mediterranean dusk over Baltic craft
   navy sea · sailcloth paper · sun-glint gold
   ============================================================ */

:root {
  --navy: #0A1420;
  --navy-2: #12202F;
  --paper: #F6F3EC;
  --paper-2: #EDE7DA;
  --ink: #14202C;
  --fg: #EAE6DC;
  --gold: #C8A24B;
  --gold-deep: #A8843A;
  --sea: #59728A;
  --hairline-d: rgba(234, 230, 220, 0.14);
  --hairline-l: rgba(20, 32, 44, 0.14);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(20px, 5vw, 72px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  background: var(--navy);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono { font-family: "IBM Plex Mono", monospace; }

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

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

::selection { background: var(--gold); color: var(--navy); }

/* ---------- shared ---------- */

.kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}

.h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 18px 0 20px;
}
.h2 em { font-style: italic; color: var(--gold); }

.lede {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 300;
  max-width: 56ch;
  color: rgba(20, 32, 44, 0.78);
}
.lede--ondark { color: rgba(234, 230, 220, 0.75); }

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

.section__head {
  padding: clamp(72px, 10vw, 130px) var(--pad) clamp(30px, 4vw, 56px);
}

/* buttons */
.btn {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid {
  background: var(--gold);
  color: var(--navy);
}
.btn--solid:hover { background: #D9B45C; }
.btn--ghost {
  border-color: var(--hairline-l);
  color: inherit;
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn--ondark { border-color: var(--hairline-d); }
.btn--ondark:hover { border-color: var(--gold); color: var(--gold); }

/* coordinate chip — the signature */
.chip-coord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  border: 1px solid var(--hairline-d);
  border-radius: 2px;
  color: var(--sea);
  white-space: nowrap;
}
.chip-coord::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.link-ext {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hairline-l);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.link-ext:hover { color: var(--gold-deep); border-color: var(--gold); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 20, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--hairline-d);
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 32%, var(--gold) 0 34%, transparent 35%),
    linear-gradient(to bottom, transparent 0 55%, var(--navy-2) 55%);
  border: 1px solid var(--hairline-d);
  flex: none;
}
.nav__name {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.22em;
  color: var(--fg);
}
.nav__name em {
  font-style: normal;
  font-weight: 300;
  color: var(--gold);
}

.nav__links {
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
}
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234, 230, 220, 0.82);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__tel {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.lang {
  display: flex;
  border: 1px solid var(--hairline-d);
  border-radius: 2px;
  overflow: hidden;
}
.lang__btn {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  background: transparent;
  border: none;
  color: rgba(234, 230, 220, 0.6);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.lang__btn.is-active {
  background: var(--gold);
  color: var(--navy);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px 2px;
  cursor: pointer;
}
.nav__burger span {
  width: 24px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 20, 32, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  text-align: center;
}
.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: var(--fg);
}
.mobile-menu a.mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  color: var(--gold);
  margin-top: 10px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(200, 162, 75, 0.14) 0%, transparent 55%),
    linear-gradient(200deg, #16283C 0%, var(--navy) 62%);
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 20, 32, 0.96) 4%, rgba(10, 20, 32, 0.45) 45%, rgba(10, 20, 32, 0.55) 100%);
}
/* grain */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner {
  padding: 140px var(--pad) clamp(64px, 9vh, 110px);
  max-width: 1080px;
}

.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 22px 0 26px;
}
.hero__title .line { display: block; }
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  max-width: 58ch;
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(234, 230, 220, 0.72);
  margin-bottom: 34px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__coords { display: flex; flex-wrap: wrap; gap: 12px; }

/* horizon glint line */
.hero__horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--hairline-d);
  overflow: hidden;
}
.hero__horizon::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: glint 8s linear infinite;
}
@keyframes glint {
  to { left: 120%; }
}

/* hero load stagger */
.anim {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
body.is-loaded .anim {
  opacity: 1;
  transform: none;
}
body.is-loaded .anim:nth-of-type(1) { transition-delay: 0.05s; }
.hero .anim { transition-delay: 0s; }
body.is-loaded .hero__kicker { transition-delay: 0.05s; }
body.is-loaded .hero__title .line:nth-child(1) { transition-delay: 0.16s; }
body.is-loaded .hero__title .line:nth-child(2) { transition-delay: 0.27s; }
body.is-loaded .hero__title .line:nth-child(3) { transition-delay: 0.38s; }
body.is-loaded .hero__sub { transition-delay: 0.5s; }
body.is-loaded .hero__cta { transition-delay: 0.61s; }
body.is-loaded .hero__coords { transition-delay: 0.72s; }

/* ---------- ticker ---------- */

.ticker {
  background: var(--navy);
  border-bottom: 1px solid var(--hairline-d);
  overflow: hidden;
  padding: 13px 0;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: ticker 46s linear infinite;
}
.ticker__track span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234, 230, 220, 0.6);
  white-space: nowrap;
}
.ticker__track i {
  font-style: normal;
  color: var(--gold);
  font-size: 10px;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ---------- fleet ---------- */

.frow {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
  padding: clamp(36px, 5vw, 72px) var(--pad);
  border-top: 1px solid var(--hairline-l);
  margin: 0;
}
.frow--flip { grid-template-columns: 1fr 1.15fr; }
.frow--flip .frow__media { order: 2; }
.frow--flip .frow__body { order: 1; }

.frow__media {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
  position: relative;
}
.frow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.frow:hover .frow__media img { transform: scale(1.04); }
.frow__media.is-noimg::after {
  content: "PHOTO — SHINE YACHTING";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(20, 32, 44, 0.4);
  background: linear-gradient(160deg, var(--paper-2), #E2DACA);
}

.frow__num {
  font-size: 13px;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
}
.frow__cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 32, 44, 0.55);
  margin: 14px 0 6px;
}
.frow__name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1;
  margin-bottom: 16px;
}
.frow__name span { font-style: italic; color: var(--gold-deep); }
.frow__copy {
  color: rgba(20, 32, 44, 0.75);
  max-width: 46ch;
  margin-bottom: 22px;
}

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.spec-chips span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 12px;
  background: var(--paper-2);
  border: 1px solid var(--hairline-l);
  border-radius: 2px;
  color: rgba(20, 32, 44, 0.7);
  white-space: nowrap;
}

.frow__price {
  font-size: 17px;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}
.frow__price small {
  font-size: 11px;
  color: rgba(20, 32, 44, 0.5);
  margin-left: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

/* ---------- mallorca band ---------- */

.mallorca {
  position: relative;
  isolation: isolate;
  padding: clamp(90px, 13vw, 170px) var(--pad);
  overflow: hidden;
}
.mallorca__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, #16283C, var(--navy));
}
.mallorca__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.mallorca__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 20, 32, 0.95) 22%, rgba(10, 20, 32, 0.55) 70%, rgba(10, 20, 32, 0.35) 100%);
}
.mallorca__inner { max-width: 640px; }
.mallorca__row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ---------- process ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline-l);
  border-top: 1px solid var(--hairline-l);
  border-bottom: 1px solid var(--hairline-l);
  margin-bottom: clamp(72px, 9vw, 120px);
}
.step {
  background: var(--paper);
  padding: clamp(28px, 3vw, 44px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.step__num {
  font-size: 13px;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
  margin-bottom: auto;
}
.step h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 27px;
  margin: 26px 0 10px;
}
.step p {
  font-size: 14.5px;
  color: rgba(20, 32, 44, 0.72);
}

/* ---------- stock ---------- */

.stock {
  background: var(--navy);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--hairline-d);
}
.stock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 var(--pad);
}
.scard {
  background: var(--navy-2);
  border: 1px solid var(--hairline-d);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.scard:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 162, 75, 0.45);
}
.scard figure {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0E1926;
  position: relative;
}
.scard figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.scard:hover figure img { transform: scale(1.05); }
.scard figure.is-noimg::after {
  content: "PHOTO";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--sea);
}
.scard__body { padding: 22px 24px 26px; }
.badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.badge--gold { background: var(--gold); color: var(--navy); }
.badge--steel { background: rgba(89, 114, 138, 0.25); color: #9FB4C7; }
.badge--line { border: 1px solid var(--hairline-d); color: rgba(234, 230, 220, 0.7); }
.scard h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 27px;
  line-height: 1.05;
  margin-bottom: 8px;
}
.scard h3 .mono { font-size: 13px; color: var(--sea); font-style: normal; }
.scard__meta {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 14px;
}
.scard__price {
  font-size: 19px;
  color: var(--gold);
  margin-bottom: 18px;
}
.scard__link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234, 230, 220, 0.65);
  border-bottom: 1px solid var(--hairline-d);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.scard__link:hover { color: var(--gold); border-color: var(--gold); }

.scard--all {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(90% 90% at 70% 20%, rgba(200, 162, 75, 0.12) 0%, transparent 60%),
    var(--navy-2);
  text-align: center;
}
.scard--all .scard__body { display: flex; flex-direction: column; gap: 22px; align-items: center; padding: 40px 28px; }
.scard__alltext { color: rgba(234, 230, 220, 0.7); font-size: 15px; max-width: 30ch; }

.stock__note {
  padding: 26px var(--pad) 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sea);
}

/* ---------- contact ---------- */

.contact {
  border-top: 1px solid var(--hairline-d);
  background:
    radial-gradient(100% 80% at 85% 0%, rgba(200, 162, 75, 0.08) 0%, transparent 55%),
    var(--navy);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(80px, 10vw, 140px) var(--pad);
}

.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 30px 0 22px;
}
.contact__line {
  font-size: clamp(17px, 2vw, 24px);
  color: var(--fg);
  letter-spacing: 0.02em;
  width: fit-content;
  border-bottom: 1px solid var(--hairline-d);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.contact__line:hover { color: var(--gold); border-color: var(--gold); }

.contact__social { display: flex; gap: 22px; margin-bottom: 40px; }
.contact__social .link-ext { border-color: var(--hairline-d); color: rgba(234, 230, 220, 0.7); }
.contact__social .link-ext:hover { color: var(--gold); border-color: var(--gold); }

.contact__places {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 520px;
}
.place {
  border: 1px solid var(--hairline-d);
  border-radius: 2px;
  padding: 20px;
  background: rgba(18, 32, 47, 0.5);
}
.place__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}
.place p { font-size: 14.5px; color: rgba(234, 230, 220, 0.8); }
.place .chip-coord { margin-top: 14px; font-size: 10px; padding: 6px 10px; }

/* form */
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--navy-2);
  border: 1px solid var(--hairline-d);
  border-radius: 2px;
  padding: clamp(26px, 3vw, 40px);
  height: fit-content;
}
.form label { display: flex; flex-direction: column; gap: 8px; }
.form label span {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sea);
}
.form input,
.form textarea {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--fg);
  background: rgba(10, 20, 32, 0.6);
  border: 1px solid var(--hairline-d);
  border-radius: 2px;
  padding: 13px 14px;
  transition: border-color 0.3s;
  resize: vertical;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form .btn { margin-top: 6px; }
.form__note {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sea);
  text-align: center;
}

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--hairline-d);
  background: #081018;
}
.footer__inner {
  padding: 40px var(--pad) 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 40px;
  justify-content: space-between;
}
.footer__brand {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
}
.footer__brand em { font-style: normal; font-weight: 300; color: var(--gold); }
.footer__meta {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--sea);
}
.footer__demo { opacity: 0.7; }

/* ---------- scroll reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .anim, .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ticker__track { animation: none; }
  .hero__horizon::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 1060px) {
  .stock__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 860px) {
  .frow, .frow--flip { grid-template-columns: 1fr; gap: 26px; }
  .frow--flip .frow__media { order: 0; }
  .frow--flip .frow__body { order: 1; }
  .contact__grid { grid-template-columns: 1fr; }
  .nav__tel { display: none; }
}

@media (max-width: 620px) {
  .stock__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; }
  .hero__title { font-size: clamp(40px, 11.5vw, 64px); }
  .contact__places { grid-template-columns: 1fr; }
}
