/* =========================================
   DESIGN TOKENS
========================================= */

:root {
  /* Colors */
  --navy: #071b26;
  --ivory: #f5f2ea;
  --white: #fcfcfa;
  --gold: #b89b63;
  --muted: #71818a;
  --text: #10212a;

  /* Layout */
  --container: 1280px;
  --text-width: 620px;
  --section-space: clamp(90px, 11vw, 180px);

  /* Typography */
  --font-brand: "Bodoni Moda", serif;
  --font-display: "Bona Nova", serif;
  --font-body: "Heebo", sans-serif;

  --fs-display: clamp(5rem, 8vw, 8rem);

  --fs-h2: clamp(2.8rem, 6vw, 6rem);
  --fs-h3: clamp(1.6rem, 2.6vw, 2.6rem);
  --fs-body: clamp(1rem, 1.2vw, 1.15rem);

  /* Motion */
  --transition: 300ms ease;
}

html[lang="en"] {
  --font-display: "Cormorant Garamond", serif;
}

/* =========================================
   RESET
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--ivory);
  color: var(--text);

  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================================
   GLOBAL
========================================= */

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

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  margin: 0 0 1.25rem;

  font-size: 0.72rem;
  font-weight: 600;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  max-width: 950px;
  margin: 0;

  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;

  line-height: 0.95;
  letter-spacing: -0.03em;
}

.section-copy {
  max-width: var(--text-width);

  margin: 2rem 0 0;

  font-size: var(--fs-body);
  line-height: 1.8;

  color: rgba(16, 33, 42, 0.78);
}

/* =========================================
   HEADER
========================================= */

.site-header {
  position: fixed;
  z-index: 1000;
  inset-block-start: 0;
  inset-inline: 0;
  width: 100%;

  color: var(--white);
  background: transparent;

  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background-color: rgba(7, 27, 38, 0.94);

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;

  transition: min-height 0.35s ease;
}

.site-header.is-scrolled .site-header__inner {
  min-height: 68px;
}

.brand {
  justify-self: start;

  font-family: var(--font-brand);

  font-size: 1.4rem;
  letter-spacing: 0.08em;

  direction: ltr;
}

.brand--mark {
  display: flex;
  align-items: center;
}

.brand__mark {
  display: block;
  width: auto;
  height: 32px;
}

.desktop-nav {
  display: flex;

  align-items: center;
  gap: 2rem;

  font-size: 0.78rem;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";

  position: absolute;

  inset-inline-start: 0;
  inset-block-end: -6px;

  width: 100%;
  height: 1px;

  background: currentColor;

  transform: scaleX(0);
  transition: transform var(--transition);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  justify-self: end;

  display: flex;

  align-items: center;
  gap: 1.4rem;
}

.lang-switch {
  padding: 0;

  border: 0;
  background: transparent;

  color: inherit;

  cursor: pointer;

  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.header-cta {
  padding-block-end: 4px;

  border-block-end: 1px solid var(--gold);

  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* =========================================
   HERO
========================================= */

.hero {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 100svh;

  overflow: hidden;
  color: var(--white);

  text-align: center;
}

.hero__media {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      ellipse at center,
      rgba(4, 15, 22, 0.32) 0%,
      rgba(4, 15, 22, 0.12) 45%,
      transparent 70%
    ),
    linear-gradient(
      to bottom,
      rgba(4, 15, 22, 0.08) 0%,
      rgba(4, 15, 22, 0.1) 55%,
      rgba(4, 15, 22, 0.38) 100%
    ),
    rgba(4, 15, 22, 0.12);
}
.hero__content {
  position: relative;
  z-index: 2;
  transform: translateY(-2vh);

  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 900px;

  /* padding-block: 120px 80px; */
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero__title {
  margin: 0;
  font-family: var(--font-brand);
  font-size: var(--fs-display);
  font-weight: 400;

  line-height: 0.9;
  letter-spacing: 0.038em;

  direction: ltr;
  text-align: start;
}

.hero__subtitle {
  max-width: 850px;

  margin: 0.8rem 0 0;

  font-family: "Assistant", sans-serif;
  font-weight: 300;

  font-size: clamp(1.45rem, 1.8vw, 1.95rem);
  line-height: 1.35;
}

html[dir="ltr"] .hero__subtitle {
  font-weight: 300;
  font-size: clamp(1.3rem, 1.45vw, 1.55rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.hero__meta {
  display: flex;

  flex-wrap: wrap;

  gap: 0.75rem 1.5rem;

  margin-block-start: 2rem;

  color: rgba(255, 255, 255, 0.87);

  font-size: 0.9rem;

  letter-spacing: 0.08em;
}

.hero__meta span:not(:last-child)::after {
  content: "·";

  margin-inline-start: 1.5rem;

  color: var(--gold);
}

.hero__link {
  position: absolute;
  bottom: 5%;
  z-index: 2;
  display: inline-flex;

  align-items: center;
  gap: 0.5rem;

  margin-block-start: 2.5rem;

  padding-block-end: 6px;

  border-block-end: 1px solid var(--gold);

  font-size: 0.85rem;

  letter-spacing: 0.08em;
}

/* =========================================
   EXPERIENCE
========================================= */
.experience {
  background: var(--ivory);
  padding-block: clamp(90px, 10vw, 150px);
}

.experience__inner {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.experience__title {
  max-width: 820px;
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(3rem, 4.6vw, 5.2rem);
  font-weight: 400;

  line-height: 1.08;
}

.experience__text {
  max-width: 820px;

  margin: 2rem auto 0;

  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 300;

  line-height: 1.95;

  color: rgba(16, 33, 42, 0.82);
}

.experience__ornament {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0.75rem;

  width: min(260px, 55vw);

  margin-bottom: 2rem;

  color: var(--gold);

  opacity: 0.75;
}

.experience__ornament span:first-child,
.experience__ornament span:last-child {
  flex: 1;
  height: 1px;

  background: currentColor;
}

.experience__ornament-mark {
  font-size: 0.9rem;
  line-height: 1;
}

.experience__ornament--bottom {
  margin-top: 2.3rem;
  margin-bottom: 0;
}

/* =========================================
   THE YACHT
========================================= */

.yacht {
  display: grid;
  grid-template-columns: 55% 45%;

  min-height: 720px;
  direction: ltr;
}

/* Direction
----------------------------------------- */

/* Hebrew:
   image left / content right */

html[dir="rtl"] .yacht__eyebrow {
  letter-spacing: 0;
}

html[dir="rtl"] .yacht {
  grid-template-areas: "media content";
}

html[dir="rtl"] .yacht__content {
  direction: rtl;
  text-align: right;
}

/* English:
   content left / image right */

html[dir="ltr"] .yacht {
  grid-template-areas: "content media";
}

html[dir="ltr"] .yacht__content {
  direction: ltr;
  text-align: left;
}

.yacht__media {
  grid-area: media;

  min-height: 720px;
  overflow: hidden;
}

.yacht__media img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* Content
----------------------------------------- */

.yacht__content {
  grid-area: content;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: clamp(60px, 6vw, 110px);

  background: var(--navy);
  color: var(--white);
}

.yacht__eyebrow {
  margin: 0 0 1.5rem;

  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 400;

  color: var(--gold);

  letter-spacing: 0.16em;
}

.yacht__title {
  max-width: 520px;

  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 5.2rem);
  font-weight: 400;

  line-height: 1.05;
}

.yacht__text {
  max-width: 540px;

  margin: 2rem 0 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: clamp(1rem, 1.05vw, 1.1rem);
  font-weight: 300;

  line-height: 1.9;
}

/* Stats
----------------------------------------- */

.yacht__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: clamp(1rem, 2vw, 2rem);

  margin-top: clamp(3rem, 5vw, 5rem);
  padding-top: 1.5rem;

  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.yacht__stat {
  display: flex;
  flex-direction: column;

  gap: 0.3rem;
}

.yacht__stat strong {
  font-family: var(--font-brand);

  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;

  line-height: 1;
}

.yacht__stat span {
  color: rgba(255, 255, 255, 0.6);

  font-size: 0.72rem;
  font-weight: 300;
}

/* =========================================
   THE YACHT — MOBILE
========================================= */

@media (max-width: 768px) {
  .yacht,
  html[dir="rtl"] .yacht,
  html[dir="ltr"] .yacht {
    grid-template-columns: 1fr;

    grid-template-areas:
      "media"
      "content";

    min-height: auto;
  }

  .yacht__media {
    min-height: 0;
    aspect-ratio: 1000 / 1280;
  }

  .yacht__content {
    padding: clamp(60px, 15vw, 90px) 24px;
  }

  .yacht__title {
    font-size: clamp(2rem, 10vw, 4.2rem);
  }

  .yacht__stats {
    grid-template-columns: repeat(2, 1fr);

    gap: 2rem;

    margin-top: 3rem;
  }
}

/* =========================
   YACHT SPECS — DESKTOP
========================= */
.yacht-specs {
  width: 100%;
  margin-top: 2.4rem;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(184, 155, 99, 0.45);
}

.yacht-spec {
  position: relative;
  min-width: 0;
  padding: 1rem 0.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
}

/* horizontal divider between the two rows */
.yacht-spec:nth-child(-n + 4) {
  border-bottom: 1px solid rgba(184, 155, 99, 0.14);
}

/* vertical dividers — not after the 4th item in each row */
.yacht-spec:not(:nth-child(4n))::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(184, 155, 99, 0.18);
}

.yacht-spec strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.35vw, 1.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: lining-nums;
}

.yacht-spec span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.55);
}

.yacht-spec--type strong {
  white-space: normal;
  line-height: 0.95;
}
/* =========================
   TABLET / NARROW DESKTOP
   4 columns → 2 columns
========================= */

@media (max-width: 960px) {
  .yacht-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
    padding-top: 1.75rem;
  }

  .yacht-spec {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid rgba(184, 155, 99, 0.18);
  }

  /* reset desktop row border */
  .yacht-spec:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(184, 155, 99, 0.18);
  }

  /* last row has no bottom border */
  .yacht-spec:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  /* remove desktop vertical dividers */
  .yacht-spec:not(:nth-child(4n))::after {
    display: none;
  }

  /* divider only between the two columns */
  .yacht-spec:nth-child(odd)::after {
    content: "";
    display: block;

    position: absolute;
    inset-inline-end: 0;
    top: 20%;
    bottom: 20%;

    width: 1px;

    background: rgba(184, 155, 99, 0.18);
  }

  .yacht-spec strong {
    font-size: 1.35rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 960px) {
  .yacht-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
    padding-top: 1.75rem;
  }

  .yacht-spec {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid rgba(184, 155, 99, 0.18);
  }

  /* Last row — no bottom border */
  .yacht-spec:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  /* Remove desktop 3-column dividers */
  .yacht-spec::after {
    display: none;
  }

  /* Divider between the two columns */
  .yacht-spec:nth-child(odd)::after {
    content: "";
    display: block;
    position: absolute;
    inset-inline-end: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(184, 155, 99, 0.18);
  }

  .yacht-spec strong {
    font-size: 1.35rem;
  }
}

/* =========================================
   EXPERIENCES
========================================= */

.experiences {
  background: var(--ivory);
  color: var(--text);

  padding: clamp(80px, 9vw, 150px) clamp(24px, 6vw, 100px);
}

.experiences__inner {
  width: min(1400px, 100%);
  margin-inline: auto;
}

/* Header
----------------------------------------- */

.experiences__header {
  width: min(700px, 100%);
  margin-inline: auto;
  margin-bottom: clamp(55px, 6vw, 90px);

  text-align: center;
}

.experiences__eyebrow {
  margin: 0 0 1rem;

  font-family: var(--font-brand);
  font-size: 0.8rem;
  letter-spacing: 0.16em;

  color: var(--gold);
}

.experiences__title {
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.experiences__intro {
  max-width: 560px;

  margin: 1.5rem auto 0;

  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.8;

  opacity: 0.7;
}

/* Grid
----------------------------------------- */

.experiences__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: clamp(24px, 3vw, 50px);
}

/* Images
----------------------------------------- */

.experience-card__media {
  width: 100%;
  aspect-ratio: 4 / 5;

  overflow: hidden;
}

.experience-card__media img,
.experience-card__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.experience-card__media video {
  transform: scale(1.01);
}

/* Individual crop control */

.experience-card--play img {
  object-position: center center;
}

.experience-card--dine img {
  object-position: center center;
}

.experience-card--rest img {
  object-position: center center;
}

/* Content
----------------------------------------- */

.experience-card__content {
  padding-top: 28px;
}

.experience-card__eyebrow {
  display: block;

  margin-bottom: 12px;

  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;

  color: var(--gold);
}

.experience-card h3 {
  margin: 0 0 14px;

  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  font-weight: 400;
  line-height: 1.2;
}

.experience-card p {
  margin: 0;

  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;

  opacity: 0.7;
}

/* Direction
----------------------------------------- */

html[dir="rtl"] .experience-card__content {
  direction: rtl;
  text-align: right;
}

html[dir="ltr"] .experience-card__content {
  direction: ltr;
  text-align: left;
}

/* Mobile
----------------------------------------- */

@media (max-width: 768px) {
  .experiences {
    padding: 70px 0 80px;
  }

  .experiences__header {
    width: min(calc(100% - 40px), 600px);
    margin-bottom: 42px;
  }

  .experiences__grid {
    display: flex;

    gap: 18px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;

    padding-inline: 20px;
    padding-bottom: 10px;

    scrollbar-width: none;
    -ms-overflow-style: none;

    -webkit-overflow-scrolling: touch;
  }

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

  .experience-card {
    flex: 0 0 85%;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    min-width: 0;
  }

  .experience-card__media {
    aspect-ratio: 4 / 5;
  }

  .experience-card__content {
    padding-top: 22px;
  }
}

/* =========================================
   CULINARY
========================================= */

.depth-transition svg {
  display: block;
  width: 100%;
  height: clamp(70px, 8vw, 130px);
  transform: translateY(2px);
}

.depth-transition {
  position: relative;
  background: var(--ivory);
  color: var(--navy);
  line-height: 0;
}

.horizon-birds {
  position: absolute;
  left: 28%;
  top: 25%;
  z-index: 2;

  width: clamp(70px, 8vw, 120px);
  height: clamp(28px, 3vw, 45px);

  color: var(--navy);
  opacity: 0.6;

  direction: ltr;
}

.bird {
  position: absolute;

  left: 0;
  top: 0;

  width: clamp(24px, 2.6vw, 36px);
  height: clamp(10px, 1.3vw, 18px);

  rotate: -4deg;
}

.bird::before,
.bird::after {
  content: "";

  position: absolute;
  top: 38%;

  width: 52%;
  height: 60%;

  border-top: 2px solid currentColor;
  animation: bird-wing 1.5s ease-in-out infinite;
}

.bird--2::before,
.bird--2::after {
  animation-delay: -0.7s;
}

@keyframes bird-wing {
  0%,
  100% {
    height: 55%;
  }

  50% {
    height: 80%;
  }
}

.bird::before {
  right: 50%;

  border-radius: 100% 0 0 0;

  transform: rotate(26deg);
}

.bird::after {
  left: 50%;

  border-radius: 0 100% 0 0;

  transform: rotate(-25deg);
}

.bird--1 {
  left: 0;
  top: 20%;
}

.bird--2 {
  left: 55%;
  top: 0;

  transform: scale(0.68);
  opacity: 0.8;

  rotate: -7deg;
}

.culinary {
  background: var(--navy);
  color: var(--white);

  padding: clamp(90px, 11vw, 180px) clamp(24px, 7vw, 120px);
}

.culinary__inner {
  width: min(1280px, 100%);
  margin-inline: auto;

  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);

  align-items: center;

  gap: clamp(50px, 6vw, 95px);
}

/* Content
----------------------------------------- */

.culinary__content {
  max-width: 620px;
}

.culinary__eyebrow {
  margin: 0 0 1.4rem;

  font-family: var(--font-brand);
  font-size: 0.8rem;
  font-weight: 400;

  letter-spacing: 0.16em;

  color: var(--gold);

  direction: ltr;
}

.culinary__title {
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 5.2rem);
  font-weight: 400;

  line-height: 1.08;
}

.culinary__text {
  margin: 2rem 0 0;

  max-width: 520px;

  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;

  line-height: 1.9;

  opacity: 0.75;
}

/* Chef signature
----------------------------------------- */

.culinary__chef {
  margin-top: clamp(28px, 3vw, 40px);
  padding-top: 22px;

  border-top: 1px solid rgba(184, 155, 99, 0.45);

  display: flex;
  flex-direction: column;

  gap: 5px;
}

.culinary__chef-name {
  font-family: var(--font-brand);
  font-size: 0.95rem;

  letter-spacing: 0.12em;

  direction: ltr;
}

.culinary__chef-role {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;

  color: var(--muted);
}

/* Image
----------------------------------------- */

.culinary__media {
  width: 100%;

  aspect-ratio: 4 / 5;

  overflow: hidden;
}

.culinary__media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* Direction
----------------------------------------- */

html[dir="rtl"] .culinary__content {
  direction: rtl;
  text-align: right;
}

html[dir="ltr"] .culinary__content {
  direction: ltr;
  text-align: left;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .culinary {
    padding: 80px 20px;
  }

  .culinary__inner {
    display: flex;
    flex-direction: column;

    gap: 45px;
  }

  .culinary__media {
    order: 1;

    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .culinary__content {
    order: 2;

    width: 100%;
    max-width: none;
  }

  .culinary__title {
    font-size: clamp(2.5rem, 8vw, 3.8rem);
  }

  .culinary__text {
    margin-top: 1.5rem;
  }

  .culinary__chef {
    margin-top: 32px;
  }
}

.kosher-certificate-link {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 0.65rem;

  margin-top: 1.5rem;
  padding: 0;

  border: 0;
  background: transparent;

  color: inherit;
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.02em;

  cursor: pointer;
}

.kosher-certificate-link::after {
  content: "";

  position: absolute;
  inset-inline-start: 0;
  inset-block-end: -6px;

  width: 100%;
  height: 1px;

  background: currentColor;

  transform: scaleX(0);
  transition: transform var(--transition);
}

.kosher-certificate-link:hover::after {
  transform: scaleX(1);
}

.kosher-certificate-link__arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.kosher-certificate-link:hover .kosher-certificate-link__arrow {
  transform: translateX(4px);
}

/* Hebrew */
html[dir="rtl"] .kosher-certificate-link__arrow {
  transform: scaleX(-1);
}

html[dir="rtl"] .kosher-certificate-link:hover .kosher-certificate-link__arrow {
  transform: scaleX(-1) translateX(4px);
}

/* Modal */

.certificate-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  padding: 2rem;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.certificate-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.certificate-modal__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(3, 13, 19, 0.88);
  backdrop-filter: blur(5px);
}

.certificate-modal__content {
  position: relative;
  z-index: 1;

  width: min(88vw, 560px);
  max-height: 88vh;
}

.certificate-modal__content img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;

  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.certificate-modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;

  padding: 0;

  border: 0;
  background: transparent;

  color: #fff;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;

  cursor: pointer;
}

/* =========================================
   YACHT DIVIDER
========================================= */

.yacht-divider {
  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--navy);

  padding: clamp(30px, 4vw, 55px) 0 clamp(45px, 5vw, 70px);
}

.yacht-ripple {
  animation: yacht-ripple 4.5s ease-in-out infinite;
}

.yacht-ripple--1 {
  animation-delay: 0s;
}

.yacht-ripple--2 {
  animation-delay: 1.2s;
}

.yacht-ripple--3 {
  animation-delay: 2.4s;
}

.yacht-divider__boat {
  transform-box: fill-box;
  transform-origin: center center;

  animation: yacht-float 4.5s ease-in-out infinite;
}

@keyframes yacht-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.015);
  }
}

@keyframes yacht-ripple {
  0%,
  100% {
    opacity: 0.12;
  }

  45% {
    opacity: 0.65;
  }

  70% {
    opacity: 0.3;
  }
}

@keyframes yacht-ripple {
  0% {
    opacity: 0;
    transform: translateY(3px);
  }

  35% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-5px);
  }
}

.yacht-divider svg {
  display: block;

  width: clamp(150px, 14vw, 230px);
  height: auto;
}

@media (max-width: 768px) {
  .yacht-divider svg {
    width: clamp(120px, 38vw, 170px);
  }
}

/* =========================================
   SPACES
========================================= */

.spaces {
  background: var(--navy);
  color: var(--white);

  padding: clamp(70px, 8vw, 120px) clamp(24px, 6vw, 100px)
    clamp(90px, 10vw, 150px);
}

.spaces__inner {
  width: min(1280px, 100%);
  margin-inline: auto;
}

/* Header
----------------------------------------- */

.spaces__header {
  width: min(700px, 100%);

  margin-inline: auto;
  margin-bottom: clamp(35px, 4vw, 55px);

  text-align: center;
}

.spaces__eyebrow {
  margin: 0 0 0.9rem;

  font-family: var(--font-brand);
  font-size: 0.8rem;
  letter-spacing: 0.16em;

  color: var(--gold);
}

.spaces__title {
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 5.2rem);
  font-weight: 400;

  line-height: 1.08;
}

.spaces__intro {
  width: min(560px, 100%);

  margin: 1rem auto 0;

  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 300;

  line-height: 1.7;

  opacity: 0.65;
}

/* Viewer
----------------------------------------- */

.spaces__viewer {
  position: relative;

  width: min(780px, 100%);
  margin-inline: auto;

  overflow: hidden;
}

/* Category navigation overlay
----------------------------------------- */

.spaces__tabs {
  position: absolute;

  top: 26px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 10;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: clamp(28px, 4vw, 55px);

  padding: 14px 24px 12px;

  width: max-content;
  max-width: calc(100% - 32px);

  background: rgba(7, 27, 38, 0.65);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-radius: 100px;
}

.spaces__tab {
  position: relative;

  padding: 0 0 10px;

  border: 0;

  background: transparent;
  color: rgba(252, 252, 250, 0.5);

  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 400;

  letter-spacing: 0.16em;

  cursor: pointer;

  transition: color var(--transition);
}

.spaces__tab:hover,
.spaces__tab.is-active {
  color: var(--white);
}

.spaces__tab::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  width: 0;
  height: 1px;

  background: var(--gold);

  transform: translateX(-50%);

  transition: width var(--transition);
}

.spaces__tab.is-active::after {
  width: 100%;
}

/* Panels
----------------------------------------- */

.spaces__panel {
  text-align: center;
}

/* Image
----------------------------------------- */

.spaces__media {
  position: relative;

  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;

  touch-action: pan-y;

  overflow: hidden;
}

.spaces__image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 600ms ease,
    visibility 600ms ease;
}

.spaces__image.is-active {
  opacity: 1;
  visibility: visible;
}

/* Dots
----------------------------------------- */

.spaces__dots {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 2px;

  margin-top: 8px;
}

.spaces__dots button {
  position: relative;

  width: 32px;
  height: 32px;

  padding: 0;
  border: 0;

  background: transparent;

  cursor: pointer;
}

.spaces__dots button::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 7px;
  height: 7px;

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;

  background: transparent;

  transform: translate(-50%, -50%);

  transition:
    background var(--transition),
    transform var(--transition);
}

.spaces__dots button:hover::after {
  transform: translate(-50%, -50%) scale(1.25);
}

.spaces__dots button.is-active::after {
  background: var(--white);
}

/* Category content
----------------------------------------- */

.spaces__content {
  width: min(650px, 100%);

  margin: 22px auto 0;

  text-align: center;
}

.spaces__content h3 {
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  font-weight: 400;

  line-height: 1.15;
}

.spaces__content p {
  margin: 0.8rem auto 0;

  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;

  line-height: 1.75;

  opacity: 0.65;
}

.spaces__media {
  position: relative;
}

.spaces__image-label {
  position: absolute;
  left: clamp(1rem, 2vw, 1.75rem);
  bottom: clamp(1rem, 2vw, 1.75rem);
  z-index: 3;

  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);

  pointer-events: none;
}

.spaces__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(to top, rgba(7, 27, 38, 0.9), transparent);
  pointer-events: none;
  z-index: 2;
}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 768px) {
  .spaces {
    padding: 70px 16px 90px;
  }

  /* Header
  ----------------------------------------- */

  .spaces__header {
    margin-bottom: 32px;
  }

  /* Viewer
  ----------------------------------------- */

  .spaces__viewer {
    width: 100%;
    overflow: visible;
  }

  /* Gallery category navigation
     Outside the image on mobile
  ----------------------------------------- */

  .spaces__tabs {
    position: relative;

    top: auto;
    left: auto;
    right: auto;

    transform: none;

    z-index: 20;

    width: 100%;
    max-width: none;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: clamp(28px, 10vw, 48px);

    margin-bottom: 22px;
    padding: 0;

    background: transparent;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    border-radius: 0;

    overflow: visible;
  }

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

  .spaces__tab {
    position: relative;
    z-index: 21;

    flex: 0 0 auto;

    padding: 0 0 9px;

    font-size: 0.72rem;
    letter-spacing: 0.15em;

    white-space: nowrap;

    color: rgba(252, 252, 250, 0.45);

    pointer-events: auto;
  }

  .spaces__tab.is-active {
    color: var(--white);
  }

  /* Image
  ----------------------------------------- */

  .spaces__media {
    position: relative;
    z-index: 1;

    width: 100%;
    aspect-ratio: 4 / 3;

    overflow: hidden;
  }

  /* Content
  ----------------------------------------- */

  .spaces__content {
    margin-top: 20px;
  }
}

/* =========================================
   JOURNEY
========================================= */

.journey {
  background: var(--ivory);
  color: var(--text);

  padding: clamp(90px, 10vw, 160px) clamp(24px, 6vw, 100px)
    clamp(100px, 11vw, 180px);
}

.journey__inner {
  width: min(1400px, 100%);
  margin-inline: auto;
}

/* Header
----------------------------------------- */

.journey__header {
  width: min(720px, 100%);

  margin-inline: auto;
  margin-bottom: clamp(50px, 6vw, 85px);

  text-align: center;
}

.journey__eyebrow {
  margin: 0 0 1rem;

  font-family: var(--font-brand);
  font-size: 0.8rem;
  letter-spacing: 0.16em;

  color: var(--gold);
}

.journey__title {
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  font-weight: 400;

  line-height: 1.08;
}

.journey__intro {
  width: min(590px, 100%);

  margin: 1.4rem auto 0;

  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;

  line-height: 1.8;

  opacity: 0.7;
}

/* Destinations
----------------------------------------- */

.journey__destinations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  column-gap: clamp(20px, 2.5vw, 40px);
  row-gap: clamp(60px, 6vw, 90px);
}

/* Card
----------------------------------------- */

.destination-card {
  min-width: 0;
}

.destination-card__media {
  position: relative;

  aspect-ratio: 4 / 5;

  overflow: hidden;
}

.destination-card__media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 900ms ease;
}

.destination-card__overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(7, 27, 38, 0.72) 0%,
    rgba(7, 27, 38, 0.12) 50%,
    transparent 75%
  );

  pointer-events: none;
}

/* Destination name
----------------------------------------- */

.destination-card__name {
  position: absolute;

  left: clamp(20px, 2.5vw, 34px);
  right: clamp(20px, 2.5vw, 34px);
  bottom: clamp(22px, 2.5vw, 34px);

  color: var(--white);

  z-index: 2;
}

.destination-card__name span {
  display: block;

  margin-bottom: 8px;

  font-family: var(--font-brand);
  font-size: 0.7rem;

  letter-spacing: 0.16em;

  color: var(--gold);
}

.destination-card__name h3 {
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 400;

  line-height: 0.95;
}

/* Description
----------------------------------------- */

.destination-card__text {
  margin: 20px 0 0;

  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;

  line-height: 1.75;

  opacity: 0.7;
}

/* Desktop hover
----------------------------------------- */

@media (hover: hover) {
  .destination-card:hover .destination-card__media img {
    transform: scale(1.035);
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .journey {
    padding: 75px 0 90px;
  }

  .journey__header {
    width: auto;

    margin-inline: 20px;
    margin-bottom: 42px;
  }

  /* Horizontal destination gallery */

  .journey__destinations {
    display: flex;

    gap: 16px;

    overflow-x: auto;

    padding-inline: 20px;
    padding-bottom: 12px;

    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;

    scrollbar-width: none;
  }

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

  .destination-card {
    flex: 0 0 min(82vw, 340px);

    scroll-snap-align: start;
  }

  .destination-card__media {
    aspect-ratio: 4 / 5;
  }

  .destination-card__name {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .destination-card__name h3 {
    font-size: 2.2rem;
  }

  .destination-card__text {
    margin-top: 16px;
  }
}

/* =========================================
   CONTACT CTA
========================================= */

.contact-cta {
  position: relative;

  background: var(--navy);
  color: var(--white);

  padding: clamp(100px, 12vw, 180px) clamp(24px, 6vw, 100px);

  overflow: hidden;
}

.contact-cta__inner {
  width: min(850px, 100%);
  margin-inline: auto;

  text-align: center;
}

/* Eyebrow
----------------------------------------- */

.contact-cta__eyebrow {
  margin: 0 0 1.2rem;

  font-family: var(--font-brand);
  font-size: 0.78rem;

  letter-spacing: 0.18em;

  color: var(--gold);
}

/* Title
----------------------------------------- */

.contact-cta__title {
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 400;

  line-height: 1.05;
}

/* Text
----------------------------------------- */

.contact-cta__text {
  width: min(590px, 100%);

  margin: clamp(22px, 2.5vw, 32px) auto clamp(34px, 4vw, 50px);

  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;

  line-height: 1.8;

  color: rgba(252, 252, 250, 0.68);
}

/* WhatsApp button
----------------------------------------- */

.contact-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 210px;

  padding: 16px 32px;

  border: 1px solid var(--gold);

  color: var(--white);
  background: transparent;

  font-family: var(--font-body);
  font-size: 0.95rem;

  text-decoration: none;

  transition:
    background 250ms ease,
    color 250ms ease,
    transform 250ms ease;
}

@media (hover: hover) {
  .contact-cta__button:hover {
    background: var(--gold);
    color: var(--navy);

    transform: translateY(-2px);
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .contact-cta {
    padding: 90px 20px 100px;
  }

  .contact-cta__title {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .contact-cta__text {
    margin-top: 22px;
    margin-bottom: 34px;
  }

  .contact-cta__button {
    width: 100%;
    max-width: 320px;

    padding: 16px 24px;
  }
}

/* =========================================
   FOOTER
========================================= */

.footer {
  background: var(--navy);
  color: var(--white);

  padding: 0 clamp(24px, 6vw, 100px) clamp(34px, 4vw, 55px);
}

.footer__inner {
  width: min(1400px, 100%);
  margin-inline: auto;

  padding-top: clamp(30px, 3vw, 42px);

  border-top: 1px solid rgba(252, 252, 250, 0.14);

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;
}

.footer__copyright {
  grid-column: 2;
  margin: 0;
  text-align: center;
}

/* Brand
----------------------------------------- */

.footer__brand {
  justify-self: start;

  font-family: var(--font-brand);
  font-size: 1rem;

  letter-spacing: 0.16em;

  color: var(--white);
  text-decoration: none;
}

/* Navigation
----------------------------------------- */

.footer__nav {
  display: flex;
  align-items: center;

  gap: clamp(24px, 3vw, 44px);
}

.footer__nav a {
  position: relative;

  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;

  color: rgba(252, 252, 250, 0.55);

  text-decoration: none;

  transition: color 200ms ease;
}

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

/* Copyright
----------------------------------------- */

.footer__copyright {
  justify-self: end;

  margin: 0;

  font-family: var(--font-brand);
  font-size: 0.68rem;

  letter-spacing: 0.12em;

  color: rgba(252, 252, 250, 0.35);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .footer {
    padding: 0 20px 32px;
  }

  .footer__inner {
    padding-top: 32px;

    grid-template-columns: 1fr;

    justify-items: center;

    gap: 28px;

    text-align: center;
  }

  .footer__brand,
  .footer__copyright {
    justify-self: center;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;

    gap: 14px 28px;
  }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  /* .hero__content {
    padding-block-start: 140px;
  } */

  /* .hero__meta {
    flex-direction: column;
    gap: 0.4rem;
  } */

  /* .hero__meta span::after {
    display: none;
  } */

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand {
    font-size: 1.15rem;
  }

  .header-cta {
    display: none;
  }

  .hero__title {
    font-size: clamp(3.9rem, 11vw, 5.5rem);
  }

  .hero__subtitle {
    max-width: 95%;
  }
  /* 
  .hero__content {
    padding-block-end: 48px;
  } */
}
