/* ==========================================================================
   OSHEN — International Yacht Brokers
   Palette sampled directly from the logo: cyan #01C3FF, crest blue #01A6EA,
   gold #C2913A. Everything else is a tint or shade of those three.
   ========================================================================== */

:root {
  --cyan: #01c3ff;
  --cyan-deep: #01a6ea;
  --gold: #c2913a;
  --gold-light: #e1c08b;

  --ink: #06202f;
  --ink-soft: #0a2c40;
  --ink-line: rgba(255, 255, 255, 0.14);

  --sand: #f7f5f1;
  --sand-deep: #ece7df;
  --paper: #ffffff;
  --body: #3c4a53;
  --muted: #7b8892;
  --rule: rgba(6, 32, 47, 0.14);

  --display: "Jost", "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  --text: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --shell: 1360px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --header-h: 92px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 350;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

figure,
blockquote {
  margin: 0;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

::selection {
  background: var(--cyan);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* --------------------------------------------------------------- typography */

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 200;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.02em;
}

.display-xl {
  font-size: clamp(2.6rem, 7.4vw, 6.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.display-l {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.display-m {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  display: block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.eyebrow--light {
  color: var(--gold-light);
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.85;
  font-weight: 300;
  color: var(--body);
}

.rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 2rem 0;
}

.center {
  text-align: center;
}

.center .rule {
  margin-inline: auto;
}

/* ------------------------------------------------------------------ layout */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow {
  max-width: 880px;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 9rem);
}

.section--tight {
  padding-block: clamp(3rem, 5vw, 5rem);
}

.section--sand {
  background: var(--sand);
}

.section--ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4 {
  color: #fff;
}

.section--ink .lede {
  color: rgba(255, 255, 255, 0.76);
}

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.4rem;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.45s var(--ease), color 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.btn:hover {
  background: var(--ink);
  color: #fff;
}

.btn--gold {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold);
  color: #fff;
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn--light:hover {
  background: #fff;
  color: var(--ink);
}

.btn--solid {
  background: var(--ink);
  color: #fff;
}

.btn--solid:hover {
  background: var(--cyan-deep);
  border-color: var(--cyan-deep);
}

.btn--sm {
  padding: 0.8rem 1.7rem;
  font-size: 0.68rem;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--rule);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.link-more::after {
  content: "→";
  transition: transform 0.4s var(--ease);
}

.link-more:hover {
  color: var(--cyan-deep);
  border-color: var(--cyan);
}

.link-more:hover::after {
  transform: translateX(5px);
}

.link-more--light {
  color: #fff;
  border-color: var(--ink-line);
}

.link-more--light:hover {
  color: var(--cyan);
}

/* ------------------------------------------------------------------- header */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  height: var(--header-h);
  transition: background 0.5s var(--ease), height 0.5s var(--ease),
    box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 32, 47, 0.62), transparent);
  opacity: 1;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.header.is-solid {
  height: 74px;
  background: rgba(6, 32, 47, 0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--ink-line);
}

.header.is-solid::before {
  opacity: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.brand {
  display: block;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.brand img {
  height: 46px;
  width: auto;
  transition: height 0.5s var(--ease);
}

.header.is-solid .brand img {
  height: 38px;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.6rem);
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-family: var(--display);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  transition: color 0.35s var(--ease);
}

.nav__link:hover,
.nav__item.is-open > .nav__link {
  color: var(--cyan);
}

.nav__link .caret {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.35s var(--ease);
}

.nav__item.is-open .caret {
  transform: rotate(-135deg) translateY(-2px);
}

/* Divisions dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 1.1rem);
  left: 50%;
  translate: -50% 0;
  width: min(560px, calc(100vw - 3rem));
  padding: 2rem;
  background: rgba(6, 32, 47, 0.97);
  backdrop-filter: blur(18px);
  border: 1px solid var(--ink-line);
  border-top: 2px solid var(--cyan);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
    visibility 0.4s;
}

.nav__item.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__title {
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1.4rem;
}

.dropdown__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.15rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown__link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding-left 0.35s var(--ease);
}

.dropdown__link:hover {
  padding-left: 0.5rem;
}

.dropdown__link b {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.35s var(--ease);
}

.dropdown__link:hover b {
  color: var(--cyan);
}

.dropdown__link span {
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.6rem;
  margin-right: -0.6rem;
  position: relative;
  z-index: 2;
}

.burger span {
  display: block;
  width: 26px;
  height: 1px;
  background: #fff;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}

body.nav-open .burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .burger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero__media,
.hero__media video,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(6, 32, 47, 0.55) 0%,
      rgba(6, 32, 47, 0.28) 38%,
      rgba(6, 32, 47, 0.72) 100%
    ),
    radial-gradient(120% 80% at 50% 60%, transparent 30%, rgba(4, 22, 33, 0.6) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--header-h);
  text-align: center;
  color: #fff;
}

.hero__eyebrow {
  display: block;
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
  font-family: var(--display);
  font-size: clamp(0.6rem, 1vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 22px rgba(3, 18, 28, 0.85);
}

.hero h1 {
  color: #fff;
  text-shadow: 0 4px 40px rgba(3, 18, 28, 0.55);
}

.hero__sub {
  margin: 1.8rem auto 0;
  max-width: 46ch;
  font-family: var(--display);
  font-size: clamp(0.86rem, 1.5vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
}

/* Buttons sit over moving footage, so they carry their own scrim. */
.hero__actions .btn {
  background: rgba(6, 32, 47, 0.32);
  backdrop-filter: blur(6px);
}

.hero__actions .btn--gold {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero__actions .btn--light:hover {
  background: #fff;
  color: var(--ink);
}

.hero__actions .btn--gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  translate: -50% 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero__scroll i {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: scrollCue 2.4s var(--ease) infinite;
}

@keyframes scrollCue {
  0%,
  100% {
    transform: scaleY(0.35);
    transform-origin: top;
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
}

.hero__sound {
  position: absolute;
  right: var(--gutter);
  bottom: 2.4rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.hero__sound:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

/* -------------------------------------------------------------- statement */

.statement {
  max-width: 900px;
}

.statement__kicker {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.1vw, 1.6rem);
  font-weight: 200;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2rem;
}

.statement__close {
  margin-top: 2.2rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-style: italic;
  color: var(--cyan-deep);
}

/* ------------------------------------------------------------ pull quote */

.quote {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 78vh;
  padding-block: 6rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.quote__bg {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

/* Radial pool of shade behind the text, so the quote stays legible even where
   the photograph runs bright (white hulls, sun on water). */
.quote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      60% 55% at 50% 46%,
      rgba(4, 24, 36, 0.72),
      rgba(4, 24, 36, 0) 70%
    ),
    linear-gradient(rgba(6, 32, 47, 0.5), rgba(6, 32, 47, 0.72));
}

.quote__inner {
  position: relative;
  z-index: 2;
  max-width: min(88vw, 46rem);
}

.quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.28;
}

.quote figcaption {
  margin-top: 2.4rem;
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* --------------------------------------------------------- section header */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head p {
  max-width: 46ch;
  margin: 1rem 0 0;
}

/* ------------------------------------------------------------- divisions */

.divisions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.division {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
  padding: 2.2rem;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}

.division__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.2s var(--ease), opacity 0.6s var(--ease);
  opacity: 0.68;
}

/* Copy sits over uncontrolled photography, so the scrim carries the contrast. */
.division::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(4, 22, 33, 0.97) 0%,
    rgba(4, 22, 33, 0.93) 46%,
    rgba(4, 22, 33, 0.55) 74%,
    rgba(4, 22, 33, 0.24) 100%
  );
  transition: background 0.6s var(--ease);
}

.division:hover .division__img {
  transform: scale(1.07);
  opacity: 0.8;
}

.division:hover::after {
  background: linear-gradient(
    to top,
    rgba(4, 22, 33, 0.95) 0%,
    rgba(4, 22, 33, 0.88) 46%,
    rgba(4, 22, 33, 0.46) 74%,
    rgba(4, 22, 33, 0.18) 100%
  );
}

/* Eighth tile completes the grid and hands off to an enquiry. */
.division--cta {
  justify-content: center;
  background: var(--ink-soft);
}

.division--cta p {
  color: rgba(255, 255, 255, 0.66);
}

.division__no {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--gold-light);
}

.division h3 {
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.division h3 small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  color: var(--cyan);
  margin-bottom: 0.7rem;
  /* Tracked out this fine, cyan needs help where the photo runs white. */
  text-shadow: 0 1px 6px rgba(4, 22, 33, 0.9);
}

.division p {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
}

.division__cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1.5rem;
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.3s var(--ease);
}

.division__cta:hover,
.division__cta:focus-visible {
  color: #fff;
}

.division:hover .division__cta,
.division:focus-within .division__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Touch devices have no hover — keep Enquire visible so the control is usable. */
@media (hover: none), (max-width: 900px) {
  .division__cta {
    opacity: 1;
    transform: none;
  }
}

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

.feature {
  display: grid;
  /* Weighted towards the photograph so a full yacht profile survives the crop. */
  grid-template-columns: 1.4fr 1fr;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--rule);
}

.feature__media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.feature:hover .feature__media img {
  transform: scale(1.05);
}

.feature__tag {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 2;
  padding: 0.5rem 1.1rem;
  background: rgba(6, 32, 47, 0.86);
  backdrop-filter: blur(8px);
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.feature__body {
  padding: clamp(2rem, 4vw, 3.4rem);
  display: flex;
  flex-direction: column;
}

.feature__body h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature__meta {
  margin: 0.6rem 0 0;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.feature__price {
  margin: 1.6rem 0 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--cyan-deep);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.4rem 1rem;
  margin: 2.2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  list-style: none;
}

.spec-grid dt,
.spec-grid .spec__label {
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.spec-grid dd,
.spec-grid .spec__value {
  margin: 0;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: clamp(1.2rem, 2.5vw, 2rem);
}

/* Four yachts plus the brief card fill two clean rows of three once the
   enquire tile takes the spare cell. */
@media (min-width: 1080px) {
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fleet-card--enquire {
    grid-column: span 2;
  }
}

.fleet-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
}

.fleet-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.fleet-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.fleet-card:hover .fleet-card__media img {
  transform: scale(1.06);
}

.fleet-card__body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.fleet-card__body h4 {
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fleet-card__body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.fleet-card__foot {
  margin-top: auto;
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* The call to action must never break mid-phrase, however long the price is. */
.fleet-card__foot .link-more {
  white-space: nowrap;
}

.fleet-card--enquire {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2rem, 4vw, 3rem);
  gap: 1rem;
}

.fleet-card--enquire h4 {
  color: #fff;
}

.fleet-card--enquire p {
  color: rgba(255, 255, 255, 0.62);
}

/* -------------------------------------------------------------------- team */

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.8rem, 4vw, 3.2rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.team__portrait {
  position: relative;
  margin-bottom: 1.6rem;
  overflow: hidden;
}

.team__portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.team__member:hover .team__portrait img {
  transform: scale(1.04);
}

/* Hairline in house gold, echoing the frame on the founder portrait. */
.team__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(194, 145, 58, 0.55);
  pointer-events: none;
}

.team__member h3 {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team__role {
  margin: 0.5rem 0 1.1rem;
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

.team__member p:not(.team__role) {
  margin: 0 0 1.4rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ------------------------------------------------------------ reach band */

.reach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.reach__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
}

.reach__stat {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--ink);
}

.reach__stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 200;
  letter-spacing: 0.04em;
  color: var(--cyan);
}

.reach__stat span {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ----------------------------------------------------------------- portal */

.portal {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.portal h2,
.portal h3 {
  color: #fff;
}

.portal .lede {
  color: rgba(255, 255, 255, 0.78);
}

.portal__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.portal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6, 32, 47, 0.96) 0%,
    rgba(6, 32, 47, 0.82) 50%,
    rgba(6, 32, 47, 0.6) 100%
  );
}

.portal .shell {
  position: relative;
  z-index: 2;
}

.portal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.portal__list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  counter-reset: portal;
}

.portal__list li {
  counter-increment: portal;
  display: flex;
  gap: 1.4rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--ink-line);
  font-family: var(--display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.portal__list li::before {
  content: "0" counter(portal);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  padding-top: 0.45rem;
}

.card-glass {
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ink-line);
  backdrop-filter: blur(10px);
}

/* ------------------------------------------------------------------ forms */

.form {
  display: grid;
  gap: 1.1rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0;
  font-family: var(--text);
  font-size: 0.95rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  transition: border-color 0.4s var(--ease);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--cyan);
}

.form--light .field label {
  color: rgba(255, 255, 255, 0.55);
}

.form--light .field input,
.form--light .field select,
.form--light .field textarea {
  color: #fff;
  border-bottom-color: var(--ink-line);
}

.form--light .field input::placeholder,
.form--light .field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form--light .field select option {
  color: var(--ink);
}

.form__note {
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--muted);
}

.form--light .form__note {
  color: rgba(255, 255, 255, 0.45);
}

.form__status {
  margin: 0;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  min-height: 1.2em;
}

/* ---------------------------------------------------------------- gallery */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  cursor: zoom-in;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 1.1s var(--ease), opacity 0.5s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.6rem 1.2rem 1.1rem;
  background: linear-gradient(transparent, rgba(4, 22, 33, 0.85));
  font-family: var(--display);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.gallery__item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item--wide {
  grid-column: span 2;
}

/* Single-column items set the row height; spanning items stretch to match it. */
.gallery--brand .gallery__item {
  aspect-ratio: 3 / 4;
}

/* Taking the image out of flow keeps a spanning item from measuring taller than
   the portraits beside it, which would leave gaps under them. */
.gallery--brand .gallery__item--wide {
  aspect-ratio: auto;
}

.gallery--brand .gallery__item--wide img {
  position: absolute;
  inset: 0;
}

/* ------------------------------------------------------------------- bio */

.bio {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.bio__portrait {
  position: relative;
}

.bio__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 22%;
}

/* Gold frame offset behind the portrait. */
.bio__portrait::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--gold);
}

.bio__name {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bio__role {
  margin: 0.8rem 0 0;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.bio__body p {
  margin: 1.5rem 0 0;
}

.bio__body p:first-of-type {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink);
}

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

.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.contact__meta {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact__meta h4 {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.contact__meta a:hover {
  color: var(--cyan);
}

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

.footer {
  background: #041621;
  color: rgba(255, 255, 255, 0.6);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--ink-line);
}

.footer__mark {
  width: 210px;
  margin-bottom: 1.6rem;
}

.footer h5 {
  margin: 0 0 1.3rem;
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.footer a:hover {
  color: var(--cyan);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

/* -------------------------------------------------------------- lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(3, 16, 25, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox__caption {
  margin-top: 1.4rem;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  font-size: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.lightbox__close {
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
}

.lightbox__nav--prev {
  left: clamp(0.75rem, 3vw, 2rem);
  top: 50%;
  translate: 0 -50%;
}

.lightbox__nav--next {
  right: clamp(0.75rem, 3vw, 2rem);
  top: 50%;
  translate: 0 -50%;
}

/* -------------------------------------------------------------- chat bot */

.chat-launch {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.4rem 0.85rem 0.9rem;
  background: var(--ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(4, 22, 33, 0.35);
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.chat-launch:hover {
  transform: translateY(-3px);
}

.chat-launch img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.chat-launch__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(1, 195, 255, 0.7);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(1, 195, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(1, 195, 255, 0);
  }
}

body.chat-open .chat-launch,
body.nav-open .chat-launch {
  opacity: 0;
  pointer-events: none;
}

.chat {
  position: fixed;
  right: clamp(0.75rem, 3vw, 2rem);
  bottom: clamp(0.75rem, 3vw, 2rem);
  z-index: 110;
  display: flex;
  flex-direction: column;
  width: min(390px, calc(100vw - 1.5rem));
  height: min(620px, calc(100vh - 2rem));
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 80px rgba(4, 22, 33, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease),
    visibility 0.45s;
}

.chat.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  background: var(--ink);
  color: #fff;
}

.chat__head img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.chat__title {
  flex: 1;
  min-width: 0;
}

.chat__title b {
  display: block;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.chat__title span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.chat__title span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

.chat__close {
  font-size: 1.3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0.4rem;
}

.chat__close:hover {
  color: #fff;
}

.chat__log {
  flex: 1;
  overflow-y: auto;
  padding: 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--sand);
  scrollbar-width: thin;
}

.msg {
  max-width: 84%;
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  animation: msgIn 0.45s var(--ease) both;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 2px solid var(--cyan);
  color: var(--body);
}

.msg--user {
  align-self: flex-end;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.92);
}

.msg strong {
  color: var(--ink);
  font-weight: 500;
}

.msg--bot a {
  color: var(--cyan-deep);
  border-bottom: 1px solid currentColor;
}

.msg--typing {
  display: flex;
  gap: 5px;
  align-items: center;
}

.msg--typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: blink 1.3s infinite;
}

.msg--typing i:nth-child(2) {
  animation-delay: 0.2s;
}

.msg--typing i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%,
  60%,
  100% {
    opacity: 0.25;
  }
  30% {
    opacity: 1;
  }
}

.chat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1.2rem 1rem;
  background: var(--sand);
}

.chip {
  padding: 0.5rem 0.95rem;
  background: #fff;
  border: 1px solid var(--rule);
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.chip:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.chat__form {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  border-top: 1px solid var(--rule);
  background: #fff;
}

.chat__form input {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0;
  font-family: var(--text);
  font-size: 0.92rem;
  border: 0;
  background: transparent;
}

.chat__form input:focus {
  outline: none;
}

.chat__send {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: background 0.35s var(--ease);
}

.chat__send:hover {
  background: var(--cyan-deep);
}

/* --------------------------------------------------------- listing page */

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 78svh;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 22, 33, 0.9) 0%,
    rgba(4, 22, 33, 0.25) 55%,
    rgba(4, 22, 33, 0.55) 100%
  );
}

.page-hero .shell {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #fff;
}

.page-hero__meta {
  margin: 1.4rem 0 0;
  font-family: var(--display);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.crumbs {
  margin-bottom: 1.6rem;
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.crumbs a:hover {
  color: var(--cyan);
}

.spec-sheet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 0;
  background: var(--paper);
  /* Cells draw their own right and bottom hairlines, so a part-filled last row
     leaves plain paper rather than a grey block. */
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.spec-sheet > div {
  padding: 1.6rem 1.4rem;
  background: var(--paper);
  box-shadow: 1px 0 0 var(--rule), 0 1px 0 var(--rule);
}

.spec-sheet dt {
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.spec-sheet dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.gallery--listing {
  grid-template-columns: repeat(3, 1fr);
}

.gallery--listing .gallery__item {
  aspect-ratio: 16 / 10;
}

.gallery--listing .gallery__item--wide {
  aspect-ratio: 21 / 9;
}

/* ------------------------------------------------------------- utilities */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 1rem 1.5rem;
  background: var(--ink);
  color: #fff;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

@media (max-width: 1080px) {
  .feature,
  .reach,
  .portal__grid,
  .bio,
  .contact {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .gallery--brand {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery--listing {
    grid-template-columns: repeat(2, 1fr);
  }

  .bio__portrait {
    max-width: 420px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 74px;
  }

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
    background: rgba(5, 27, 40, 0.99);
    backdrop-filter: blur(16px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease),
      visibility 0.45s;
  }

  body.nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__item {
    border-bottom: 1px solid var(--ink-line);
  }

  .nav__link {
    justify-content: space-between;
    width: 100%;
    padding: 1.15rem 0;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }

  .dropdown {
    position: static;
    translate: none;
    width: 100%;
    padding: 0 0 1rem;
    background: none;
    border: 0;
    backdrop-filter: none;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__item.is-open .dropdown {
    display: block;
  }

  .dropdown__title {
    display: none;
  }

  .dropdown__grid {
    grid-template-columns: 1fr;
  }

  .dropdown__link span {
    display: none;
  }

  .quote__inner {
    max-width: min(88vw, 30rem);
  }
}

@media (max-width: 720px) {
  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .reach__stats {
    grid-template-columns: 1fr;
  }

  .gallery--brand,
  .gallery--listing {
    grid-template-columns: 1fr;
  }

  .gallery--brand .gallery__item--wide,
  .gallery--brand .gallery__item--tall,
  .gallery--listing .gallery__item--wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .hero__sound {
    bottom: auto;
    top: calc(var(--header-h) + 1rem);
  }

  .chat {
    height: min(560px, calc(100vh - 1.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
